diff --git a/Assets/Scripts/GfxReplayPlayer.cs b/Assets/Scripts/GfxReplayPlayer.cs index 4d435fb..42d9e64 100644 --- a/Assets/Scripts/GfxReplayPlayer.cs +++ b/Assets/Scripts/GfxReplayPlayer.cs @@ -97,10 +97,13 @@ public void ProcessKeyframe(KeyframeData keyframe) GameObject instance = Instantiate(prefab); + // HACK: Gfx-replay scale is currently invalid. We're ignoring it until the issue is resolved. + /* if (creationItem.creation.scale != null) { instance.transform.localScale = new Vector3(creationItem.creation.scale[0], creationItem.creation.scale[1], creationItem.creation.scale[2]); } + */ instance = HandleFrame(instance, load.frame);