diff options
| author | chai <chaifix@163.com> | 2021-04-07 21:06:10 +0800 |
|---|---|---|
| committer | chai <chaifix@163.com> | 2021-04-07 21:06:10 +0800 |
| commit | c7e2d8f773baa3955f17402b842eb43329c5f3a0 (patch) | |
| tree | 5ba3985d20a2908a67fefa89579f6cf3a94b6a5a /Assets/Test/01_UIBehaviour/UI_01_Parent.cs | |
| parent | e7dfbec8e8634e767d78959941daf71a96e021cf (diff) | |
+UI_Effect
Diffstat (limited to 'Assets/Test/01_UIBehaviour/UI_01_Parent.cs')
| -rw-r--r-- | Assets/Test/01_UIBehaviour/UI_01_Parent.cs | 43 |
1 files changed, 43 insertions, 0 deletions
diff --git a/Assets/Test/01_UIBehaviour/UI_01_Parent.cs b/Assets/Test/01_UIBehaviour/UI_01_Parent.cs new file mode 100644 index 0000000..b85827b --- /dev/null +++ b/Assets/Test/01_UIBehaviour/UI_01_Parent.cs @@ -0,0 +1,43 @@ +using System.Collections; +using System.Collections.Generic; +using UnityEngine; +using UnityEngine.EventSystems; +using UnityEngine.UI; + +public class UI_01_Parent : UIBehaviour
+{
+
+
+ protected override void OnRectTransformDimensionsChange()
+ {
+ Debug.Log("UI_01_Parent.OnRectTransformDimensionsChange()");
+ } + + + protected override void OnBeforeTransformParentChanged()
+ {
+ Debug.Log("UI_01_Parent.OnBeforeTransformParentChanged()");
+ }
+
+ protected override void OnTransformParentChanged()
+ {
+ Debug.Log("UI_01_Parent.OnTransformParentChanged()");
+ }
+
+ protected override void OnDidApplyAnimationProperties()
+ {
+ Debug.Log("UI_01_Parent.OnDidApplyAnimationProperties()");
+ }
+
+ protected override void OnCanvasGroupChanged()
+ {
+ Debug.Log("UI_01_Parent.OnCanvasGroupChanged()");
+ }
+
+ protected override void OnCanvasHierarchyChanged()
+ {
+ Debug.Log("UI_01_Parent.OnCanvasHierarchyChanged()");
+ } + + +} |
