mirror of
https://github.com/bdunderscore/modular-avatar.git
synced 2024-12-28 10:15:06 +08:00
939e63c297
* add HelpURL Attribute Now you can open website with clicking ? button on the inspector * docs: use language redirect --------- Co-authored-by: bd_ <bd_@nadena.dev>
12 lines
372 B
C#
12 lines
372 B
C#
using UnityEngine;
|
|
|
|
namespace nadena.dev.modular_avatar.core
|
|
{
|
|
[AddComponentMenu("Modular Avatar/MA World Fixed Object")]
|
|
[DisallowMultipleComponent]
|
|
[HelpURL("https://modular-avatar.nadena.dev/docs/reference/world-fixed-object?lang=auto")]
|
|
public class ModularAvatarWorldFixedObject : AvatarTagComponent
|
|
{
|
|
// no configuration needed
|
|
}
|
|
} |