using UnityEngine; using System.Collections; namespace WorldStreamer2 { /// /// Shader warm up. /// public class ShaderWarm : MonoBehaviour { /// /// Start this instance, and warms up shaders. /// void Start() { Shader.WarmupAllShaders(); } } }