From 452faae79acae109f33d10310655808c67eb4692 Mon Sep 17 00:00:00 2001 From: Lillith Rose Date: Wed, 4 Feb 2026 23:41:25 -0500 Subject: [PATCH] fix build compile errors --- PlatformSpecificFX/Runtime/PlatformSpecificFX.cs | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/PlatformSpecificFX/Runtime/PlatformSpecificFX.cs b/PlatformSpecificFX/Runtime/PlatformSpecificFX.cs index 2922d20..e90df26 100644 --- a/PlatformSpecificFX/Runtime/PlatformSpecificFX.cs +++ b/PlatformSpecificFX/Runtime/PlatformSpecificFX.cs @@ -1,4 +1,3 @@ -using UnityEditor.Animations; using UnityEngine; namespace gay.lilyy.platformspecificfx @@ -6,8 +5,8 @@ namespace gay.lilyy.platformspecificfx [AddComponentMenu("LillithRosePup/Platform Specific FX")] public class PlatformSpecificFX : MonoBehaviour, VRC.SDKBase.IEditorOnly { - public AnimatorController desktop; - public AnimatorController mobile; + public RuntimeAnimatorController desktop; + public RuntimeAnimatorController mobile; } }