UNPKG

phaser

Version:

A fast, free and fun HTML5 Game Framework for Desktop and Mobile web browsers.

69 lines (59 loc) 1.56 kB
/** * @author Richard Davey <rich@photonstorm.com> * @copyright 2018 Photon Storm Ltd. * @license {@link https://github.com/photonstorm/phaser/blob/master/license.txt|MIT License} */ /** * [description] * * @name Phaser.Physics.Arcade.Components.Angular * @since 3.0.0 */ var Angular = { /** * [description] * * @method Phaser.Physics.Arcade.Components.Angular#setAngularVelocity * @since 3.0.0 * * @param {number} value - [description] * * @return {Phaser.GameObjects.GameObject} This Game Object. */ setAngularVelocity: function (value) { this.body.angularVelocity = value; return this; }, /** * [description] * * @method Phaser.Physics.Arcade.Components.Angular#setAngularAcceleration * @since 3.0.0 * * @param {number} value - [description] * * @return {Phaser.GameObjects.GameObject} This Game Object. */ setAngularAcceleration: function (value) { this.body.angularAcceleration = value; return this; }, /** * [description] * * @method Phaser.Physics.Arcade.Components.Angular#setAngularDrag * @since 3.0.0 * * @param {number} value - [description] * * @return {Phaser.GameObjects.GameObject} This Game Object. */ setAngularDrag: function (value) { this.body.angularDrag = value; return this; } }; module.exports = Angular;