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