phaser3-rex-plugins
Version:
30 lines (26 loc) • 965 B
JavaScript
import AddCommand from './AddCommand.js';
import TreeManagerMethods from './TreeManagerMethods.js';
import WaitMethods from './WaitMethods.js';
import GameObjectMethods from './GameObjectMethods.js';
import BackgroundMusicMethods from './musicmethods/BackgroundMusicMethods.js';
import BackgroundMusic2Methods from './musicmethods/BackgroundMusic2Methods.js';
import SoundEffectsMethods from './musicmethods/SoundEffectsMethods.js';
import SoundEffects2Methods from './musicmethods/SoundEffects2Methods.js';
import CameraMethods from './CameraMethods.js';
import DefaultHandler from './DefaultHandler.js';
var Methods = {
addCommand: AddCommand,
defaultHandler: DefaultHandler,
}
Object.assign(
Methods,
TreeManagerMethods,
WaitMethods,
GameObjectMethods,
BackgroundMusicMethods,
BackgroundMusic2Methods,
SoundEffectsMethods,
SoundEffects2Methods,
CameraMethods,
)
export default Methods;