14 lines
303 B
C#
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).");
|
|
}
|
|
}
|
|
}
|