Skip to content

Commit aacded4

Browse files
committed
fix: Fix Compile Error on Unity 2019
1 parent cd36712 commit aacded4

1 file changed

Lines changed: 2 additions & 4 deletions

File tree

Editor/Scripts/Node/AnimationClipPlayableNode.cs

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,9 @@
11
using System.Text;
22
using UnityEngine.Animations;
33
using UnityEngine.Playables;
4-
#if UNITY_2021_1_OR_NEWER
54
using UnityEngine.UIElements;
6-
7-
#else
8-
using UnityEditor.UIElements;
5+
#if !UNITY_2021_1_OR_NEWER
6+
using UnityEditor.UIElements; // ProgressBar
97
#endif
108

119
namespace GBG.PlayableGraphMonitor.Editor.Node

0 commit comments

Comments
 (0)