示例#1
0
 void Awake()
 {
     circleCollider = GetComponent <CircleCollider2D>();
     showable       = GetComponent <Showable> ();
 }
示例#2
0
 public ShowForType(Showable toShow, Type type)
 {
     ToShow = toShow;
     Type   = type;
 }
示例#3
0
 public string Show()
 {
     return(Showable.Show(this));
 }
示例#4
0
 void Awake()
 {
     spriteRenderer = GetComponent <SpriteRenderer>();
     showable       = GetComponent <Showable>();
 }