mirror of
https://github.com/bdunderscore/modular-avatar.git
synced 2025-01-19 12:50:08 +08:00
5081516095
Closes: #66
19 lines
492 B
C#
19 lines
492 B
C#
using UnityEngine;
|
|
using VRC.SDK3.Avatars.Components;
|
|
using VRC.SDK3.Avatars.ScriptableObjects;
|
|
|
|
namespace net.fushizen.modular_avatar.core
|
|
{
|
|
public class ModularAvatarMenuInstaller : AvatarTagComponent
|
|
{
|
|
public VRCExpressionsMenu menuToAppend;
|
|
public VRCExpressionsMenu installTargetMenu;
|
|
|
|
|
|
// ReSharper disable once Unity.RedundantEventFunction
|
|
void Start()
|
|
{
|
|
// Ensure that unity generates an enable checkbox
|
|
}
|
|
}
|
|
} |