phaser/v3/src/physics/impact/components/Bounce.js

27 lines
358 B
JavaScript
Raw Normal View History

2017-08-15 22:36:00 +00:00
var Bounce = {
setBounce: function (value)
{
this.body.bounciness = value;
return this;
},
bounciness: {
get: function ()
{
return this.body.bounciness;
},
set: function (value)
{
this.body.bounciness = value;
}
}
};
module.exports = Bounce;