This commit is contained in:
Lillith Rose 2026-02-04 21:35:29 -05:00
parent 6031db6620
commit 4809e7cfa0
17 changed files with 276 additions and 159 deletions

View file

@ -0,0 +1,13 @@
using UnityEditor.Animations;
using UnityEngine;
namespace gay.lilyy.platformspecificfx
{
[AddComponentMenu("LillithRosePup/Platform Specific FX")]
public class PlatformSpecificFX : MonoBehaviour, VRC.SDKBase.IEditorOnly
{
public AnimatorController desktop;
public AnimatorController mobile;
}
}