phaser/plugins/impact/components/Bounce.js

75 lines
1.7 KiB
JavaScript
Raw Normal View History

2018-02-12 16:01:20 +00:00
/**
* @author Richard Davey <rich@photonstorm.com>
2020-01-15 12:07:09 +00:00
* @copyright 2020 Photon Storm Ltd.
2019-05-10 15:15:04 +00:00
* @license {@link https://opensource.org/licenses/MIT|MIT License}
2018-02-12 16:01:20 +00:00
*/
/**
2018-09-28 11:19:21 +00:00
* The Impact Bounce component.
* Should be applied as a mixin.
*
* @namespace Phaser.Physics.Impact.Components.Bounce
* @since 3.0.0
*/
2017-08-15 22:36:00 +00:00
var Bounce = {
/**
2018-09-28 11:19:21 +00:00
* Sets the impact physics bounce, or restitution, value.
*
* @method Phaser.Physics.Impact.Components.Bounce#setBounce
* @since 3.0.0
*
2018-09-28 11:19:21 +00:00
* @param {number} value - A value between 0 (no rebound) and 1 (full rebound)
*
2018-03-18 23:42:09 +00:00
* @return {Phaser.GameObjects.GameObject} This Game Object.
*/
2017-08-15 22:36:00 +00:00
setBounce: function (value)
{
this.body.bounciness = value;
return this;
},
/**
2018-09-28 11:19:21 +00:00
* Sets the minimum velocity the body is allowed to be moving to be considered for rebound.
*
* @method Phaser.Physics.Impact.Components.Bounce#setMinBounceVelocity
* @since 3.0.0
*
2018-09-28 11:19:21 +00:00
* @param {number} value - The minimum allowed velocity.
*
2018-03-18 23:42:09 +00:00
* @return {Phaser.GameObjects.GameObject} This Game Object.
*/
setMinBounceVelocity: function (value)
{
this.body.minBounceVelocity = value;
return this;
},
/**
2018-09-28 11:19:21 +00:00
* The bounce, or restitution, value of this body.
* A value between 0 (no rebound) and 1 (full rebound)
*
* @name Phaser.Physics.Impact.Components.Bounce#bounce
2018-03-18 23:42:09 +00:00
* @type {number}
* @since 3.0.0
*/
bounce: {
2017-08-15 22:36:00 +00:00
get: function ()
{
return this.body.bounciness;
},
set: function (value)
{
this.body.bounciness = value;
}
}
};
module.exports = Bounce;