-
stage 是 canvas 大小
world 的大小 >= stage 的大小, 移动 world 显示区域
查看全部 -
渲染树
stage 舞台是 根 渲染容器, world 在 game 初始化的时候默认创建
查看全部 -
世界坐标,直接添加到 world 中的 group 显示容器
局部坐标,添加到 group 中的 group
查看全部 -
group.create 只能创建 sprite 精灵对象
向 group 中添加 显示对象/显示对象容器 image 的 两种方式
// 创建 group 显示对象容器
group = game.add.group();
// game 全局工厂函数 add, make
// 1. 添加显示对象
game.add.image(.., group)
// 2. 添加不显示对象 ?make
game.make.image
group.add
查看全部 -
group 空,添加到 world 中
group 不空,添加到 group 中
查看全部 -
查看全部
-
查看全部
-
查看全部
-
var game = new Phaser.Game(375, 667, Phaser.AUTO); var gameState = { preload: function () { game.stage.backgroundColor = `#a8d4bf`; game.load.image('logo', './imgs/logo.png'); }, create: function() { var text = game.add.text(game.world.centerX, 25, "first demo", {fill: '#0f0'}); text.anchor.set(0.5); var img = game.add.image(game.world.centerX, game.world.centerY, 'logo'); img.anchor.set(0.5); }, }; game.state.add('gameState', gameState); game.state.start();
查看全部 -
first demo
查看全部 -
npm 安装就可以了
查看全部 -
游戏引擎
游戏框架
二次封装
查看全部 -
canvas
查看全部 -
WebGL
查看全部 -
runtime
查看全部
举报
0/150
提交
取消