mirror of
https://github.com/bdunderscore/modular-avatar.git
synced 2025-04-04 19:49:02 +08:00
We make the assumption that the MMD world will _specifically_ be disabling layers 1 and 2.
23 lines
771 B
C#
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;
|
|
}
|
|
}
|
|
} |