Inheritance: FContainer
コード例 #1
0
 public void Show(WTEntity correspondingEntity)
 {
     isShowing = true;
     this.isVisible = true;
     this.correspondingEntity = correspondingEntity;
 }
コード例 #2
0
ファイル: WTComponent.cs プロジェクト: wtrebella/Platformer
 virtual public void HandleAddedToEntity(WTEntity entity)
 {
     this.entity = entity;
     entity.AddChild(this);
 }
コード例 #3
0
 public void Dismiss()
 {
     isShowing = false;
     this.isVisible = false;
     for (int i = tableCells.Count - 1; i >= 0; i--) {
         WTTableCell cell = tableCells[i];
         RemoveTableCell(cell);
     }
     correspondingEntity = null;
 }