modular-avatar/Runtime/ModularAvatarMMDLayerControl.cs
bd_ cdc64838bb feat: ensure that correct layers are toggled off in MMD worlds, even after messing with layer order
We make the assumption that the MMD world will _specifically_
be disabling layers 1 and 2.
2025-03-14 20:38:55 -07:00

23 lines
771 B
C#

using System.Diagnostics.CodeAnalysis;
using JetBrains.Annotations;
using UnityEngine;
namespace nadena.dev.modular_avatar.core
{
[AddComponentMenu("Modular Avatar/MA MMD Layer Control")]
[DisallowMultipleComponent]
[HelpURL("https://modular-avatar.nadena.dev/docs/reference/mmd-layer-control?lang=auto")]
[SuppressMessage("ReSharper", "InconsistentNaming")]
// ReSharper disable once RequiredBaseTypesIsNotInherited (false positive)
public sealed class ModularAvatarMMDLayerControl : StateMachineBehaviour
{
[SerializeField] internal bool m_DisableInMMDMode;
[PublicAPI]
public bool DisableInMMDMode
{
get => m_DisableInMMDMode;
set => m_DisableInMMDMode = value;
}
}
}