UNPKG

@petkoneo/phaser3-rex-plugins

Version:
41 lines (38 loc) 1.34 kB
import GameObjectManagerMethods from './gameobjectmanager/GameObjectManagerMethods.js'; import SetClickTarget from './SetClickTarget.js'; import SetCameraTarget from './SetCameraTarget.js'; import SetNextPageInput from './SetNextPageInput.js'; import AddImage from './AddImage.js'; import PlayMethods from './PlayMethods.js'; import TypingNextPage from './TypingNextPage.js'; import PauseMethods from './PauseMethods.js'; import ResumeMethods from './ResumeMethods.js'; import Wait from './Wait.js'; import TypingSpeedMethods from './TypingSpeedMethods.js'; import SetIgnoreWait from './SetIgnoreWait.js'; import SetIgnoreNextPageInput from './SetIgnoreNextPageInput.js'; import ShowPage from './ShowPage.js'; import SpriteMethods from './spritemanager/SpriteMethods.js'; import ContentMethods from './ContentMethods.js'; var Methods = { setClickTarget: SetClickTarget, setCameraTarget: SetCameraTarget, setNextPageInput: SetNextPageInput, addImage: AddImage, typingNextPage: TypingNextPage, wait: Wait, setIgnoreWait: SetIgnoreWait, setIgnoreNextPageInput: SetIgnoreNextPageInput, showPage: ShowPage, } Object.assign( Methods, GameObjectManagerMethods, PlayMethods, PauseMethods, ResumeMethods, TypingSpeedMethods, SpriteMethods, ContentMethods, ); export default Methods;