前言
上一篇写过镜头移动,环球飞行模拟器之镜头移动。
主角替换
之前的主角是精灵,现在替换为飞机。由于暂时没找到合适的飞机sheet图片,这一步暂停。
分数牌跟随主角移动
这个分数牌物体跟随主角移动,暂时在phaser3没找到,phaser2里的镜头模块找到了,这步暂停。
加入更多悬浮绿色道路
直接看代码:
// 在最下面的绿色通道
platformsAtBottom(platforms)
function platformsAtBottom (platforms)
{
platforms.create(50, 1900, 'ground');
platforms.create(450, 1900, 'ground');
platforms.create(850, 1900, 'ground');
platforms.create(1250, 1900, 'ground');
platforms.create(1650, 1900, 'ground');
platforms.create(2050, 1900, 'ground');
platforms.create(2450, 1900, 'ground');
platforms.create(2850, 1900, 'ground');
platforms.create(3250, 1900, 'ground');
platforms.create(3650, 1900, 'ground');
}
接下来是思考加入现实地点、景观元素,还是通过什么方式,来体现悲伤的感觉
网友评论