Skip to content

Commit 7bbd8d7

Browse files
committed
Fixed namespaces
1 parent 31e5de4 commit 7bbd8d7

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

src/core/Config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -459,7 +459,7 @@ var Config = new Class({
459459
this.maxLights = GetValue(renderConfig, 'maxLights', 10, config);
460460

461461
/**
462-
* @const {Record<string, Function>} Phaser.Core.Config#renderNodes - A map of custom Render Nodes to be added to the WebGL Renderer. The values will be added to the RenderNodeManager, using the keys as the names.
462+
* @const {Object<string, Function>} Phaser.Core.Config#renderNodes - A map of custom Render Nodes to be added to the WebGL Renderer. The values will be added to the RenderNodeManager, using the keys as the names.
463463
*/
464464
this.renderNodes = GetValue(renderConfig, 'renderNodes', {}, config);
465465

src/core/typedefs/RenderConfig.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/filters/Blocky.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,10 +40,10 @@ var Controller = require('./Controller');
4040
* ```
4141
*
4242
* @class Blocky
43+
* @extends Phaser.Filters.Controller
4344
* @memberof Phaser.Filters
4445
* @constructor
4546
* @since 4.0.0
46-
* @extends Phaser.Filters.Controller
4747
* @param {Phaser.Cameras.Scene2D.Camera} camera - The Camera that owns this filter.
4848
* @param {Phaser.Types.Filters.BlockyConfig} [config] - The configuration object for the Blocky effect.
4949
*/
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/**
2-
* @typedef {object} BlockyConfig
2+
* @typedef {object} Phaser.Types.Filters.BlockyConfig
33
* @since 4.0.0
4-
*
4+
*
55
* @property {number | Phaser.Types.Math.Vector2Like} [size] - The size of the blocks. If a number, it sets both x and y to the same value. If a Vector2Like, it sets x and y to the respective values.
66
* @property {number | Phaser.Types.Math.Vector2Like} [offset] - The offset of the blocks. If a number, it sets both x and y to the same value. If a Vector2Like, it sets x and y to the respective values.
77
*/

0 commit comments

Comments
 (0)