mirror of
https://github.com/photonstorm/phaser
synced 2024-11-10 07:04:31 +00:00
Fix namespaces. Fix #5289
This commit is contained in:
parent
efd15f9cde
commit
205552d69c
5 changed files with 9 additions and 4 deletions
|
@ -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
|
||||
*
|
||||
|
|
|
@ -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
|
||||
*
|
||||
|
|
|
@ -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
|
||||
*
|
||||
|
|
|
@ -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')
|
||||
|
||||
|
||||
};
|
||||
|
|
|
@ -12,6 +12,7 @@ module.exports = {
|
|||
|
||||
PipelineManager: require('./PipelineManager'),
|
||||
Pipelines: require('./pipelines'),
|
||||
MVP: require('./mvp'),
|
||||
Utils: require('./Utils'),
|
||||
WebGLPipeline: require('./WebGLPipeline'),
|
||||
WebGLRenderer: require('./WebGLRenderer')
|
||||
|
|
Loading…
Reference in a new issue