0
我是Phaser的新手,我需要你的幫助。我想讓我角色的項目從牆上反彈。到目前爲止,在建立()我有這樣的事情:Phaser bounciness
game.physics.startSystem(Phaser.Physics.ARCADE);
ball = game.add.group();
ball.enableBody = true;
ball.setAll('body.collideWorldBounds', true);
後來在更新():
fire.onDown.add(function() {
var bullet = ball.create(Char1.x,Char1.y,'ball');
if(bullet){
bullet.body.velocity.set(0,-400);
}