Skip to content

Commit 1fea31b

Browse files
committed
Fixed package names
1 parent 0c1c16d commit 1fea31b

8 files changed

Lines changed: 9 additions & 9 deletions

File tree

src/gameobjects/BuildGameObject.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ var ScaleModes = require('../renderer/ScaleModes');
1111
/**
1212
* Builds a Game Object using the provided configuration object.
1313
*
14-
* @function Phaser.Gameobjects.BuildGameObject
14+
* @function Phaser.GameObjects.BuildGameObject
1515
* @since 3.0.0
1616
*
1717
* @param {Phaser.Scene} scene - [description]

src/gameobjects/BuildGameObjectAnimation.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ var GetAdvancedValue = require('../utils/object/GetAdvancedValue');
99
/**
1010
* Adds an Animation component to a Sprite and populates it based on the given config.
1111
*
12-
* @function Phaser.Gameobjects.BuildGameObjectAnimation
12+
* @function Phaser.GameObjects.BuildGameObjectAnimation
1313
* @since 3.0.0
1414
*
1515
* @param {Phaser.GameObjects.Sprite} sprite - [description]

src/loader/filetypes/AnimationJSONFile.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,15 +10,15 @@ var JSONFile = require('./JSONFile.js');
1010
/**
1111
* An Animation JSON File.
1212
*
13-
* @function Phaser.Loader.Filetypes.AnimationJSONFile
13+
* @function Phaser.Loader.FileTypes.AnimationJSONFile
1414
* @since 3.0.0
1515
*
1616
* @param {string} key - The key of the file within the loader.
1717
* @param {string} url - The url to load the file from.
1818
* @param {string} path - The path of the file.
1919
* @param {object} xhrSettings - Optional file specific XHR settings.
2020
*
21-
* @return {Phaser.Loader.Filetypes.AnimationJSONFile} A File instance to be added to the Loader.
21+
* @return {Phaser.Loader.FileTypes.AnimationJSONFile} A File instance to be added to the Loader.
2222
*/
2323
var AnimationJSONFile = function (key, url, path, xhrSettings)
2424
{

src/loader/filetypes/AtlasJSONFile.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ var JSONFile = require('./JSONFile.js');
1111
/**
1212
* An Atlas JSON File.
1313
*
14-
* @function Phaser.Loader.Filetypes.AtlasJSONFile
14+
* @function Phaser.Loader.FileTypes.AtlasJSONFile
1515
* @since 3.0.0
1616
*
1717
* @param {string} key - The key of the file within the loader.

src/loader/filetypes/BitmapFontFile.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ var XMLFile = require('./XMLFile.js');
1111
/**
1212
* An Bitmap Font File.
1313
*
14-
* @function Phaser.Loader.Filetypes.BitmapFontFile
14+
* @function Phaser.Loader.FileTypes.BitmapFontFile
1515
* @since 3.0.0
1616
*
1717
* @param {string} key - The key of the file within the loader.

src/loader/filetypes/SpriteSheetFile.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ var ImageFile = require('./ImageFile.js');
1010
/**
1111
* A Sprite Sheet File.
1212
*
13-
* @function Phaser.Loader.Filetypes.SpriteSheetFile
13+
* @function Phaser.Loader.FileTypes.SpriteSheetFile
1414
* @since 3.0.0
1515
*
1616
* @param {string} key - The key of the file within the loader.

src/loader/filetypes/TilemapJSONFile.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ var TILEMAP_FORMATS = require('../../tilemaps/Formats');
1111
/**
1212
* A Tilemap File.
1313
*
14-
* @function Phaser.Loader.Filetypes.TilemapJSONFile
14+
* @function Phaser.Loader.FileTypes.TilemapJSONFile
1515
* @since 3.0.0
1616
*
1717
* @param {string} key - [description]

src/loader/filetypes/UnityAtlasFile.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ var TextFile = require('./TextFile.js');
1111
/**
1212
* An Atlas JSON File.
1313
*
14-
* @function Phaser.Loader.Filetypes.UnityAtlasFile
14+
* @function Phaser.Loader.FileTypes.UnityAtlasFile
1515
* @since 3.0.0
1616
*
1717
* @param {string} key - The key of the file within the loader.

0 commit comments

Comments
 (0)