We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2ffed2a commit 8e33d4aCopy full SHA for 8e33d4a
src/Timeline/RecordingBehaviour.cs
@@ -9,8 +9,8 @@ namespace RecordAndPlay
9
public class RecordingBehaviour : PlayableBehaviour
10
{
11
public Recording recording;
12
-
13
- private Recording watchReference = null;
+ [HideInInspector]
+ public Recording watchReference = null;
14
public bool RecordingChanged()
15
16
if (watchReference == recording)
@@ -24,6 +24,11 @@ public bool RecordingChanged()
24
}
25
26
27
+ public void CleanClone(RecordingBehaviour other)
28
+ {
29
+ watchReference = other.watchReference;
30
+ }
31
+
32
// public override void OnGraphStart(Playable playable)
33
// {
34
// Debug.LogWarning("RecordingBehaviour::OnGraphStart");
0 commit comments