blob: 9d64210d147a93951ee6c70b809519dbeb2400bf (
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.UnityString
{
[TaskCategory("Basic/String")]
[TaskDescription("Randomly selects a string from the array of strings.")]
public class GetRandomString : Action
{
[Tooltip("The array of strings")]
public SharedString[] source;
[Tooltip("The stored result")]
[RequiredField]
public SharedString storeResult;
public override TaskStatus OnUpdate()
{
storeResult.Value = source[Random.Range(0, source.Length)].Value;
return TaskStatus.Success;
}
public override void OnReset()
{
source = null;
storeResult = null;
}
}
}
|