mirror of
https://github.com/bdunderscore/modular-avatar.git
synced 2024-12-28 10:15:06 +08:00
23 lines
589 B
C#
23 lines
589 B
C#
using System;
|
|
using JetBrains.Annotations;
|
|
using UnityEngine;
|
|
|
|
namespace nadena.dev.modular_avatar.core
|
|
{
|
|
[AddComponentMenu("Modular Avatar/MA Remove Vertex Color")]
|
|
[DisallowMultipleComponent]
|
|
[HelpURL("https://modular-avatar.nadena.dev/docs/reference/remove-vertex-color?lang=auto")]
|
|
[PublicAPI]
|
|
public class ModularAvatarRemoveVertexColor : AvatarTagComponent
|
|
{
|
|
[Serializable]
|
|
[PublicAPI]
|
|
public enum RemoveMode
|
|
{
|
|
Remove,
|
|
DontRemove
|
|
}
|
|
|
|
public RemoveMode Mode = RemoveMode.Remove;
|
|
}
|
|
} |