From 6ce8b9e22fc13be34b442c7b6af48b42cd44275a Mon Sep 17 00:00:00 2001 From: chai <215380520@qq.com> Date: Wed, 13 Mar 2024 11:00:58 +0800 Subject: +init --- ContextSwitcher.cs | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 ContextSwitcher.cs (limited to 'ContextSwitcher.cs') diff --git a/ContextSwitcher.cs b/ContextSwitcher.cs new file mode 100644 index 0000000..592c809 --- /dev/null +++ b/ContextSwitcher.cs @@ -0,0 +1,31 @@ +using System.Collections.Generic; +using DeepSky.Haze; +using UnityEngine; + +public class ContextSwitcher : MonoBehaviour +{ + public List contexts = new List(); + + private DS_HazeView _view; + + private int _contextIndex; + + private void Start() + { + _view = GetComponent(); + } + + private void Update() + { + if (contexts.Count > 0 && _view != null && Input.GetKeyUp(KeyCode.C)) + { + _contextIndex++; + if (_contextIndex == contexts.Count) + { + _contextIndex = 0; + } + _view.ContextAsset = contexts[_contextIndex]; + _view.OverrideContextAsset = true; + } + } +} -- cgit v1.1-26-g67d0