Editor Notes system with int, float, vec3, string, and gameobject references

This commit is contained in:
Lillith Rose (Device: Lucia) 2025-06-19 22:30:24 -04:00
parent fee524fe19
commit 62c2dce8c9
7 changed files with 130 additions and 0 deletions

View file

@ -0,0 +1,10 @@
using UnityEngine;
using VRC.SDKBase;
namespace gay.lilyy.EditorNotes {
public class GameObjectReference : MonoBehaviour, IEditorOnly
{
public GameObject gObject;
[TextArea]
public string note;
}
}