summaryrefslogtreecommitdiff
path: root/Assets/Test/04_Graphic/UI04_MaterialModifierTest.cs
diff options
context:
space:
mode:
authorchai <chaifix@163.com>2021-04-09 20:37:24 +0800
committerchai <chaifix@163.com>2021-04-09 20:37:24 +0800
commitb357a6a6d914e46c2c782f215e9f566f92663850 (patch)
tree207c6e974fff81db29e96e3459fb3e8d3ee9aaab /Assets/Test/04_Graphic/UI04_MaterialModifierTest.cs
parent6c0dc6615522a7308fc7457b469521ee82130705 (diff)
*UI effect
Diffstat (limited to 'Assets/Test/04_Graphic/UI04_MaterialModifierTest.cs')
-rw-r--r--Assets/Test/04_Graphic/UI04_MaterialModifierTest.cs14
1 files changed, 14 insertions, 0 deletions
diff --git a/Assets/Test/04_Graphic/UI04_MaterialModifierTest.cs b/Assets/Test/04_Graphic/UI04_MaterialModifierTest.cs
new file mode 100644
index 0000000..18b0d80
--- /dev/null
+++ b/Assets/Test/04_Graphic/UI04_MaterialModifierTest.cs
@@ -0,0 +1,14 @@
+using System.Collections;
+using System.Collections.Generic;
+using UnityEngine;
+using UnityEngine.EventSystems;
+using UnityEngine.UI;
+
+public class UI04_MaterialModifierTest : UIBehaviour, IMaterialModifier
+{
+ public Material GetModifiedMaterial(Material baseMaterial)
+ {
+
+ return baseMaterial;
+ }
+}