mirror of
https://github.com/bdunderscore/modular-avatar.git
synced 2025-04-06 04:28:59 +08:00
12 lines
275 B
C#
12 lines
275 B
C#
|
using UnityEditor;
|
|||
|
|
|||
|
namespace nadena.dev.modular_avatar.core.editor
|
|||
|
{
|
|||
|
[CustomEditor(typeof(ModularAvatarWorldScaleObject))]
|
|||
|
internal class WorldScaleObjectEditor : MAEditorBase
|
|||
|
{
|
|||
|
protected override void OnInnerInspectorGUI()
|
|||
|
{
|
|||
|
}
|
|||
|
}
|
|||
|
}
|