summaryrefslogtreecommitdiff
path: root/Thronefall_1_57/Decompile/FlatKit/UvScroller.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Thronefall_1_57/Decompile/FlatKit/UvScroller.cs')
-rw-r--r--Thronefall_1_57/Decompile/FlatKit/UvScroller.cs34
1 files changed, 34 insertions, 0 deletions
diff --git a/Thronefall_1_57/Decompile/FlatKit/UvScroller.cs b/Thronefall_1_57/Decompile/FlatKit/UvScroller.cs
new file mode 100644
index 0000000..e3ab4a3
--- /dev/null
+++ b/Thronefall_1_57/Decompile/FlatKit/UvScroller.cs
@@ -0,0 +1,34 @@
+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;
+ }
+}