func animationAll() {
let nextScene = NewGameScene(size: self.size)
//交叉淡入淡出
self.view?.presentScene(nextScene, transition: .crossFade(withDuration: 0.5))
//从左右两边水平关闭
self.view?.presentScene(nextScene, transition: .doorsCloseVertical(withDuration: 0.5))
//从上下两边垂直关闭
self.view?.presentScene(nextScene, transition: .doorsCloseHorizontal(withDuration: 0.5))
//从左右两边水平打开
self.view?.presentScene(nextScene, transition: .doorsOpenVertical(withDuration: 0.5))
//从上下两边垂直打开
self.view?.presentScene(nextScene, transition: .doorsOpenHorizontal(withDuration: 0.5))
//旧场景从中间两边打开,新场景从后方屏幕靠近
self.view?.presentScene(nextScene, transition: .doorway(withDuration: 0.5))
//先变成指定颜色,在变成目标场景
self.view?.presentScene(nextScene, transition: .fade(with: SKColor.blue, duration: 0.5))
//先变成黑色,在变成目标场景
self.view?.presentScene(nextScene, transition: .fade(withDuration: 0.5))
//水平翻转
self.view?.presentScene(nextScene, transition: .flipVertical(withDuration: 0.5))
//垂直翻转
self.view?.presentScene(nextScene, transition: .flipHorizontal(withDuration: 0.5))
//一个新场景从指定方向进入
self.view?.presentScene(nextScene, transition: .moveIn(with: .down, duration: 0.5))
//一个新场景从指定方向推入
self.view?.presentScene(nextScene, transition: .push(with: .down, duration: 0.5))
//一个旧场景向指定方向移除,新场景在旧场景下面
self.view?.presentScene(nextScene, transition: .reveal(with: .down, duration: 0.5))
}
SpriteKit(2) - 场景过渡动画
最后编辑于 :
©著作权归作者所有,转载或内容合作请联系作者
- 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
- 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
- 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
推荐阅读更多精彩内容
- 1.CSS3 文本效果 text-shadow属性适用于文本阴影 box-shadow 属性适用于盒子阴影 CSS...
- 来自于PeteC/InteractiveViewControllerTransitions的定制过渡效果,这是个人...
- “白衣秀士”王伦通常给人的印象是没啥本事,又小肚鸡肠、嫉贤妒能。当林冲火并王伦时,很多人都觉得大快人心。其实,这是...
- 题目来源计算1到10^n数字中每一个数字都是唯一的数。原来以为很复杂,需要一系列推导,没想到结果答案那么简单。 当...