Files
2026-02-21 16:45:37 +08:00

10 lines
146 B
C#

using UnityEngine;
public class Demo2 : MonoBehaviour
{
private void OnGUI()
{
GUI.Label(new Rect(5f, 5f, 200f, 22f), "Hello scene 2");
}
}