From cf58771365b5953c6eac548b172aae880d1f0acd Mon Sep 17 00:00:00 2001 From: chai <215380520@qq.com> Date: Sun, 19 May 2024 17:03:57 +0800 Subject: * rename --- Thronefall_1_57/Decompile/FlatKit/UvScroller.cs | 34 ------------------------- 1 file changed, 34 deletions(-) delete mode 100644 Thronefall_1_57/Decompile/FlatKit/UvScroller.cs (limited to 'Thronefall_1_57/Decompile/FlatKit/UvScroller.cs') diff --git a/Thronefall_1_57/Decompile/FlatKit/UvScroller.cs b/Thronefall_1_57/Decompile/FlatKit/UvScroller.cs deleted file mode 100644 index e3ab4a3..0000000 --- a/Thronefall_1_57/Decompile/FlatKit/UvScroller.cs +++ /dev/null @@ -1,34 +0,0 @@ -using UnityEngine; - -namespace FlatKit; - -public class UvScroller : MonoBehaviour -{ - public Material targetMaterial; - - public float speedX; - - public float speedY; - - private Vector2 offset; - - private Vector2 initOffset; - - private void Start() - { - offset = targetMaterial.mainTextureOffset; - initOffset = targetMaterial.mainTextureOffset; - } - - private void OnDisable() - { - targetMaterial.mainTextureOffset = initOffset; - } - - private void Update() - { - offset.x += speedX * Time.deltaTime; - offset.y += speedY * Time.deltaTime; - targetMaterial.mainTextureOffset = offset; - } -} -- cgit v1.1-26-g67d0