From e769b848da259819be94d5595530d0e15a09cd75 Mon Sep 17 00:00:00 2001 From: Harald Csaszar Date: Thu, 3 Oct 2019 16:03:44 +0200 Subject: [PATCH] [unity] Fixed SkeletonGraphic displaying setup pose instead of first frame on freeze. Closes #1511. --- .../Spine/Runtime/spine-unity/Components/SkeletonGraphic.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/spine-unity/Assets/Spine/Runtime/spine-unity/Components/SkeletonGraphic.cs b/spine-unity/Assets/Spine/Runtime/spine-unity/Components/SkeletonGraphic.cs index dde7a7a5e..a6e05b8f5 100644 --- a/spine-unity/Assets/Spine/Runtime/spine-unity/Components/SkeletonGraphic.cs +++ b/spine-unity/Assets/Spine/Runtime/spine-unity/Components/SkeletonGraphic.cs @@ -288,6 +288,8 @@ namespace Spine.Unity { if (!Application.isPlaying) Update(0f); #endif + if (freeze) + Update(0f); } } }