mirror of
https://github.com/photonstorm/phaser
synced 2024-11-28 07:31:11 +00:00
Put Fixed and Smoothed aliases back in for now
This commit is contained in:
parent
f6167f6fcf
commit
4c116c0af2
1 changed files with 19 additions and 0 deletions
|
@ -10,7 +10,26 @@
|
|||
|
||||
module.exports = {
|
||||
|
||||
/**
|
||||
* This alias will be removed in a future version.
|
||||
* Use `FixedKeyControl` instead.
|
||||
*
|
||||
* @deprecated
|
||||
* @name Phaser.Cameras.Controls.Fixed
|
||||
*/
|
||||
Fixed: require('./FixedKeyControl'),
|
||||
|
||||
FixedKeyControl: require('./FixedKeyControl'),
|
||||
|
||||
/**
|
||||
* This alias will be removed in a future version.
|
||||
* Use `SmoothedKeyControl` instead.
|
||||
*
|
||||
* @deprecated
|
||||
* @name Phaser.Cameras.Controls.Smoothed
|
||||
*/
|
||||
Smoothed: require('./SmoothedKeyControl'),
|
||||
|
||||
SmoothedKeyControl: require('./SmoothedKeyControl')
|
||||
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue