Put Fixed and Smoothed aliases back in for now

This commit is contained in:
Richard Davey 2018-03-30 12:03:25 +01:00
parent f6167f6fcf
commit 4c116c0af2

View file

@ -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')
};