mirror of
https://github.com/bdunderscore/modular-avatar.git
synced 2025-01-01 20:25:07 +08:00
20 lines
484 B
C#
20 lines
484 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
|
|
namespace net.fushizen.modular_avatar.core
|
|
{
|
|
[Serializable]
|
|
public struct ParameterConfig
|
|
{
|
|
public string nameOrPrefix;
|
|
public string remapTo;
|
|
public bool internalParameter, isPrefix;
|
|
}
|
|
|
|
[DisallowMultipleComponent]
|
|
public class ModularAvatarParameters : AvatarTagComponent
|
|
{
|
|
public List<ParameterConfig> parameters = new List<ParameterConfig>();
|
|
}
|
|
} |