2022-11-10 09:39:52 +08:00
|
|
|
|
using UnityEngine;
|
|
|
|
|
|
2022-11-11 12:39:58 +08:00
|
|
|
|
namespace nadena.dev.modular_avatar.core
|
2022-11-10 09:39:52 +08:00
|
|
|
|
{
|
|
|
|
|
[AddComponentMenu("Modular Avatar/MA Visible Head Accessory")]
|
2022-11-10 09:49:00 +08:00
|
|
|
|
[DisallowMultipleComponent]
|
2023-10-11 19:40:26 +08:00
|
|
|
|
[HelpURL("https://modular-avatar.nadena.dev/docs/reference/visible-head-accessory?lang=auto")]
|
2022-11-10 09:39:52 +08:00
|
|
|
|
public class ModularAvatarVisibleHeadAccessory : AvatarTagComponent
|
|
|
|
|
{
|
|
|
|
|
// no configuration needed
|
2023-09-24 13:44:07 +08:00
|
|
|
|
public override void ResolveReferences()
|
2023-08-05 14:47:03 +08:00
|
|
|
|
{
|
|
|
|
|
// no-op
|
|
|
|
|
}
|
2022-11-10 09:39:52 +08:00
|
|
|
|
}
|
|
|
|
|
}
|