8 lines
234 B
C#
8 lines
234 B
C#
using UnityEngine;
|
|
|
|
public class StickyNote : MonoBehaviour
|
|
{
|
|
[TextArea] public string noteText = "Enter note here...";
|
|
public Color noteColor = Color.yellow;
|
|
public bool showAlways = true; // Show even when not selected
|
|
} |