13 lines
330 B
C#
13 lines
330 B
C#
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;
|
|
}
|
|
}
|
|
|