We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b9b1068 commit 15f5180Copy full SHA for 15f5180
1 file changed
Runtime/Scripts/StreamingImageSequenceRenderer.cs
@@ -3,6 +3,10 @@
3
using UnityEngine.Assertions;
4
using UnityEngine.UI;
5
6
+#if UNITY_EDITOR
7
+using UnityEditor.Timeline;
8
+#endif
9
+
10
namespace Unity.StreamingImageSequence {
11
12
/// <summary>
@@ -42,6 +46,10 @@ public sealed class StreamingImageSequenceRenderer : MonoBehaviour {
42
46
43
47
void OnEnable() {
44
48
InitImageComponent();
49
50
51
+ TimelineEditor.Refresh(RefreshReason.SceneNeedsUpdate);
52
45
53
}
54
55
internal void Init() {
0 commit comments