You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+2-4Lines changed: 2 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -146,11 +146,9 @@ Thanks to the following for helping with the Phaser 3 Examples and TypeScript de
146
146
147
147
### Phaser Doc Jam
148
148
149
-
The [Phaser Doc Jam](http://docjam.phaser.io) is an on-going effort to ensure that the Phaser 3 API has 100% documentation coverage. Thanks to the monumental effort of myself and the following people we're now really close to that goal! My thanks to:
The Phaser Doc Jam was a community-backed effort to try and get the Phaser 3 API documentation to 100% coverage. The Doc Jam is now over and I offer my thanks to the following who helped with docs in this release:
152
150
153
-
If you'd like to help finish off the last parts of documentation then take a look at the [Doc Jam site](http://docjam.phaser.io).
Copy file name to clipboardExpand all lines: src/curves/path/MoveTo.js
+11-11Lines changed: 11 additions & 11 deletions
Original file line number
Diff line number
Diff line change
@@ -9,15 +9,15 @@ var Vector2 = require('../../math/Vector2');
9
9
10
10
/**
11
11
* @classdesc
12
-
* [description]
12
+
* A MoveTo Curve is a very simple curve consisting of only a single point. Its intended use is to move the ending point in a Path.
13
13
*
14
14
* @class MoveTo
15
15
* @memberof Phaser.Curves
16
16
* @constructor
17
17
* @since 3.0.0
18
18
*
19
-
* @param {number} [x] - [description]
20
-
* @param {number} [y] - [description]
19
+
* @param {number} [x] - `x` pixel coordinate.
20
+
* @param {number} [y] - `y` pixel coordinate.
21
21
*/
22
22
varMoveTo=newClass({
23
23
@@ -28,7 +28,7 @@ var MoveTo = new Class({
28
28
// Skip length calcs in paths
29
29
30
30
/**
31
-
* [description]
31
+
* Denotes that this Curve does not influence the bounds, points, and drawing of its parent Path. Must be `false` or some methods in the parent Path will throw errors.
32
32
*
33
33
* @name Phaser.Curves.MoveTo#active
34
34
* @type {boolean}
@@ -38,7 +38,7 @@ var MoveTo = new Class({
38
38
this.active=false;
39
39
40
40
/**
41
-
* [description]
41
+
* The lone point which this curve consists of.
42
42
*
43
43
* @name Phaser.Curves.MoveTo#p0
44
44
* @type {Phaser.Math.Vector2}
@@ -68,17 +68,17 @@ var MoveTo = new Class({
68
68
},
69
69
70
70
/**
71
-
* [description]
71
+
* Retrieves the point at given position in the curve. This will always return this curve's only point.
72
72
*
73
73
* @method Phaser.Curves.MoveTo#getPointAt
74
74
* @since 3.0.0
75
75
*
76
76
* @generic {Phaser.Math.Vector2} O - [out,$return]
0 commit comments