什么
这是。
“ mario”是玩家控制的角色,可以在X轴上移动并在Y轴上跳跃。 它受重力影响,具有一定的健康状况,并使用WASD /箭头键和空格键移动。
怎么样
npm install phaser-mario
然后,在您的Phaser源代码中
import Mario from 'phaser-mario'
// in your game creation method:
this . game . physics . startSystem ( Phaser . Physics . ARCADE )
this . game . physics . arcade . gravity . y = 500
// add a controllable (arrow keys/space bar) Mario-like player character
const mario = this . game . add . existing ( new Mario ( {
game : this . game ,
key : 'your-sprite-key' ,
评论0
最新资源