コード例 #1
0
        private void UIBattleFormationKindSelectManagerActionCallBack(UIBattleFormationKindSelectManager.ActionType actionType, UIBattleFormationKindSelectManager calledObject, UIBattleFormationKind centerView)
        {
            calledObject.OnReleaseKeyController();
            BattleFormationKinds1 iFormation = (actionType != 0) ? BattleFormationKinds1.TanJuu : centerView.Category;

            OnFormationSelected(iFormation);
        }
コード例 #2
0
 private void CallBack(UIBattleFormationKindSelectManager.ActionType actionType, UIBattleFormationKindSelectManager calledObject, UIBattleFormationKind centerView)
 {
     if (this.mUIBattleFormationKindSelectManagerAction != null)
     {
         this.mUIBattleFormationKindSelectManagerAction(actionType, this, centerView);
     }
 }
コード例 #3
0
        private void UIBattleFormationKindSelectManagerActionCallBack(UIBattleFormationKindSelectManager.ActionType actionType, UIBattleFormationKindSelectManager calledObject, UIBattleFormationKind centerView)
        {
            calledObject.OnReleaseKeyController();
            BattleFormationKinds1 iFormation;

            if (actionType != UIBattleFormationKindSelectManager.ActionType.Select)
            {
                iFormation = BattleFormationKinds1.TanJuu;
            }
            else
            {
                iFormation = centerView.Category;
            }
            this.OnFormationSelected(iFormation);
        }