blob: a4035d0f3e8f755182e6fc2a60136c9eda334009 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
using UnityEngine;
namespace BehaviorDesigner.Runtime.Tasks.Basic.UnityVector2
{
[TaskCategory("Basic/Vector2")]
[TaskDescription("Sets the X and Y values of the Vector2.")]
public class SetXY : Action
{
[Tooltip("The Vector2 to set the values of")]
public SharedVector2 vector2Variable;
[Tooltip("The X value. Set to None to have the value ignored")]
public SharedFloat xValue;
[Tooltip("The Y value. Set to None to have the value ignored")]
public SharedFloat yValue;
public override TaskStatus OnUpdate()
{
var vector2Value = vector2Variable.Value;
if (!xValue.IsNone) {
vector2Value.x = xValue.Value;
}
if (!yValue.IsNone) {
vector2Value.y = yValue.Value;
}
vector2Variable.Value = vector2Value;
return TaskStatus.Success;
}
public override void OnReset()
{
vector2Variable = Vector2.zero;
xValue = yValue = 0;
}
}
}
|