ゲーム プロジェクトに AdMob 広告を実装しています。最初に広告を実行し、ユーザーが広告を見終わってゲームに戻った後にトランジションを実行したいと考えています。ただし、現在、トランジションは広告と同時に実行されており、見栄えがよくありません。私のコードは次のとおりです。すべての助けに感謝します!
if interstitial.isReady {
interstitial.presentFromRootViewController(self.gameViewController!)
self.view?.presentScene(scene, transition:getTransition())
} else {
print("Ad wasn't ready")
self.view?.presentScene(scene, transition:getTransition())
}