Skip to content

Commit 3578cd0

Browse files
committed
jsdocs fix.
1 parent df3c684 commit 3578cd0

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/gameobjects/BitmapData.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
* @class Phaser.BitmapData
1313
* @constructor
1414
* @param {Phaser.Game} game - A reference to the currently running game.
15-
* @param {string} key - Internal Phaser reference key for the render texture.
15+
* @param {string} key - Internal Phaser reference key for the BitmapData.
1616
* @param {number} [width=256] - The width of the BitmapData in pixels.
1717
* @param {number} [height=256] - The height of the BitmapData in pixels.
1818
*/
@@ -120,7 +120,7 @@ Phaser.BitmapData = function (game, key, width, height) {
120120
* @property {Phaser.Frame} textureFrame - The Frame this BitmapData uses for rendering.
121121
* @default
122122
*/
123-
this.textureFrame = new Phaser.Frame(0, 0, 0, width, height, 'bitmapData', game.rnd.uuid());
123+
this.textureFrame = new Phaser.Frame(0, 0, 0, width, height, 'bitmapData');
124124

125125
this.texture.frame = this.textureFrame;
126126

0 commit comments

Comments
 (0)