mirror of
https://github.com/bdunderscore/modular-avatar.git
synced 2024-12-29 18:55:06 +08:00
12 lines
323 B
C#
12 lines
323 B
C#
|
using UnityEngine;
|
|||
|
using VRC.SDK3.Avatars.Components;
|
|||
|
|
|||
|
namespace net.fushizen.modular_avatar.core
|
|||
|
{
|
|||
|
public class MergeAnimator : AvatarTagComponent
|
|||
|
{
|
|||
|
public RuntimeAnimatorController animator;
|
|||
|
public VRCAvatarDescriptor.AnimLayerType layerType;
|
|||
|
public bool deleteAttachedAnimator;
|
|||
|
}
|
|||
|
}
|