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)."); } } }