mirror of
https://github.com/bdunderscore/modular-avatar.git
synced 2025-01-19 04:40:07 +08:00
13 lines
311 B
C#
13 lines
311 B
C#
using UnityEngine;
|
|
|
|
namespace nadena.dev.modular_avatar.core
|
|
{
|
|
[AddComponentMenu("Modular Avatar/MA Control Group")]
|
|
public class ControlGroup : ActionController
|
|
{
|
|
public bool isSynced = true;
|
|
public bool isSaved = true;
|
|
|
|
public ModularAvatarMenuItem defaultValue;
|
|
}
|
|
} |