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

14 lines
303 B
C#

using UnityEngine;
namespace VolumetricFogAndMist
{
public class DemoMountainClouds : MonoBehaviour
{
private void OnGUI()
{
Rect position = new Rect(10f, 10f, Screen.width - 20, 30f);
GUI.Label(position, "Climb to the top of the mountain to see the clouds (WASD keys to move).");
}
}
}