Fix namespaces. Fix #5289

This commit is contained in:
Richard Davey 2020-09-10 17:04:56 +01:00
parent efd15f9cde
commit 205552d69c
5 changed files with 9 additions and 4 deletions

View file

@ -8,7 +8,7 @@
* Used internally by the KeyCombo class.
* Return `true` if it reached the end of the combo, `false` if not.
*
* @function Phaser.Input.Keyboard.KeyCombo.AdvanceKeyCombo
* @function Phaser.Input.Keyboard.AdvanceKeyCombo
* @private
* @since 3.0.0
*

View file

@ -9,7 +9,7 @@ var AdvanceKeyCombo = require('./AdvanceKeyCombo');
/**
* Used internally by the KeyCombo class.
*
* @function Phaser.Input.Keyboard.KeyCombo.ProcessKeyCombo
* @function Phaser.Input.Keyboard.ProcessKeyCombo
* @private
* @since 3.0.0
*

View file

@ -7,7 +7,7 @@
/**
* Used internally by the KeyCombo class.
*
* @function Phaser.Input.Keyboard.KeyCombo.ResetKeyCombo
* @function Phaser.Input.Keyboard.ResetKeyCombo
* @private
* @since 3.0.0
*

View file

@ -20,9 +20,13 @@ module.exports = {
KeyCombo: require('./combo/KeyCombo'),
AdvanceKeyCombo: require('./combo/AdvanceKeyCombo'),
ProcessKeyCombo: require('./combo/ProcessKeyCombo'),
ResetKeyCombo: require('./combo/ResetKeyCombo'),
JustDown: require('./keys/JustDown'),
JustUp: require('./keys/JustUp'),
DownDuration: require('./keys/DownDuration'),
UpDuration: require('./keys/UpDuration')
};

View file

@ -12,6 +12,7 @@ module.exports = {
PipelineManager: require('./PipelineManager'),
Pipelines: require('./pipelines'),
MVP: require('./mvp'),
Utils: require('./Utils'),
WebGLPipeline: require('./WebGLPipeline'),
WebGLRenderer: require('./WebGLRenderer')