mirror of
https://github.com/photonstorm/phaser
synced 2024-11-22 20:53:39 +00:00
Renamed method to setFromEuler
This commit is contained in:
parent
3b8c78cca2
commit
c299c9e108
1 changed files with 2 additions and 2 deletions
|
@ -784,7 +784,7 @@ var Quaternion = new Class({
|
|||
/**
|
||||
* Set this Quaternion from the given Euler, based on Euler order.
|
||||
*
|
||||
* @method Phaser.Math.Quaternion#fromEuler
|
||||
* @method Phaser.Math.Quaternion#setFromEuler
|
||||
* @since 3.50.0
|
||||
*
|
||||
* @param {Phaser.Math.Euler} euler - The Euler to convert from.
|
||||
|
@ -792,7 +792,7 @@ var Quaternion = new Class({
|
|||
*
|
||||
* @return {Phaser.Math.Quaternion} This Quaternion.
|
||||
*/
|
||||
fromEuler: function (euler, update)
|
||||
setFromEuler: function (euler, update)
|
||||
{
|
||||
var x = euler.x / 2;
|
||||
var y = euler.y / 2;
|
||||
|
|
Loading…
Reference in a new issue