Skip to content

Commit 6c7532c

Browse files
committed
fix: Fix compile errors
1 parent 67d0c0e commit 6c7532c

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

Editor/Scripts/Node/AnimationClipPlayableNode.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ protected override void OnUpdate(PlayableGraphViewUpdateContext updateContext, b
9696
#if UNITY_2021_1_OR_NEWER
9797
// Expensive operations
9898
_progressBar.title = updateContext.ShowClipProgressBarTitle
99-
? (rawProgress01 * 100).ToString("F2");
99+
? (rawProgress01 * 100).ToString("F2")
100100
: null;
101101
#endif
102102
}

Editor/Scripts/Node/AudioClipPlayableNode.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ protected override void OnUpdate(PlayableGraphViewUpdateContext updateContext, b
9595
#if UNITY_2021_1_OR_NEWER
9696
// Expensive operations
9797
_progressBar.title = updateContext.ShowClipProgressBarTitle
98-
? (rawProgress01 * 100).ToString("F2");
98+
? (rawProgress01 * 100).ToString("F2")
9999
: null;
100100
#endif
101101
}

0 commit comments

Comments
 (0)