示例#1
0
 private void Awake()
 {
     if (transform.root.TryGetComponent(out root))
     {
         root.DeclareThis(Label, this);
     }
 }
示例#2
0
 private void Awake()
 {
     if (transform.root.TryGetComponent(out root))
     {
         if (!transform.parent.GetComponent <Container>())
         {
             root.DeclareThis(Label, this);
             transform.localScale = Vector3.zero;
         }
     }
 }