blob: 067adeedb362421ed63f7b4e271c553573cae7d5 (
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
|
using UnityEngine;
namespace BehaviorDesigner.Runtime.Tasks.Basic.UnityGameObject
{
[TaskCategory("Basic/GameObject")]
[TaskDescription("Finds a GameObject by name. Returns Success.")]
public class Find : Action
{
[Tooltip("The GameObject name to find")]
public SharedString gameObjectName;
[Tooltip("The object found by name")]
[RequiredField]
public SharedGameObject storeValue;
public override TaskStatus OnUpdate()
{
storeValue.Value = GameObject.Find(gameObjectName.Value);
return TaskStatus.Success;
}
public override void OnReset()
{
gameObjectName = null;
storeValue = null;
}
}
}
|