-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathgetTimelineUpdateMode.cs
More file actions
66 lines (52 loc) · 2.88 KB
/
getTimelineUpdateMode.cs
File metadata and controls
66 lines (52 loc) · 2.88 KB
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
using UnityEngine;
using UnityEngine.Playables;
namespace HutongGames.PlayMaker.Actions
{
[ActionCategory("Timeline")]
[Tooltip("Get the current timelines time update mode (method). This controls how time is incremented when playing back. This action requires Unity 2017.1 or above.")]
public class getTimelineUpdateMode : FsmStateAction
{
[RequiredField]
[CheckForComponent(typeof(PlayableDirector))]
[Tooltip("The game object to hold the unity timeline components.")]
public FsmOwnerDefault gameObject;
[Tooltip("Set the time update mode.")]
[ObjectType(typeof(DirectorUpdateMode))]
[UIHint(UIHint.Variable)]
public FsmEnum updateMode;
[Tooltip("Check this box to preform this action every frame.")]
public FsmBool everyFrame;
private PlayableDirector timeline;
public override void Reset()
{
gameObject = null;
everyFrame = false;
}
public override void OnEnter()
{
var go = Fsm.GetOwnerDefaultTarget(gameObject);
timeline = go.GetComponent<PlayableDirector>();
if (!everyFrame.Value)
{
timelineAction();
Finish();
}
}
public override void OnUpdate()
{
if (everyFrame.Value)
{
timelineAction();
}
}
void timelineAction()
{
var go = Fsm.GetOwnerDefaultTarget(gameObject);
if (go == null)
{
return;
}
updateMode.Value = (DirectorUpdateMode)timeline.timeUpdateMode;
}
}
}