1.變更狀態機狀態
App.GameCtrl.gamestate = def.GameState.Playing2.播放遊戲開始動畫
var aniName = "gamestart_"+App.language
var gameStartSpine = this.gameStartNode.getChildByName("gameStartSpine").getComponent(sp.Skeleton)
this.playGameStartOrDummyAni(gameStartSpine,aniName)
3.播放遊戲開始音效
App.AudioMng.playSFX('gamestart')4.關閉配對彈窗,轉錢介面
this.matchNode.active = false
this.gameBank.hideUI()
5.更新金牌列表(梅花2,黑桃Q,海底金牌)
this.goldPokers = [0x2, 0x3C, this.periodInfo.seaBottom[0]]6.執行牌池(pokerPool)更新,發手牌,發海底牌表演
App.GameCtrl.startCoroutine(this.coGameStart())7.隱藏所有座位準備打勾圖示
this.playerSeatList[sidx].showReadyCheck(false)