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, 0 insertions, 34 deletions
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;
- }
-}