Library for render relative game interface using React, connecting it with Phaser through events and context.
Use special hooks for access to game and scenes.
For each scene can be create one interface instance, which is container for all components.
.
Documentation
.
npm i phaser-react-ui.
constui=newInterface(scene: Phaser.Scene)console.log(ui.container)// HTMLDivElementui.render(component: React.FC,props?: object)scene.events.on(Phaser.Interface.Events.MOUNT,()=>{console.log('component mounted');})ui.setInteractive(state: boolean)- Default:
true - You can toggle interactive for certain interface elements by CSS-property
pointer-events
ui.destroy()- When scene is closed, the interface is destroyed automatically
.
useGame(): Phaser.Game- Get scene in which interface was created
useCurrentScene(): Phaser.Scene- Get scene by key
useScene(key: string): Phaser.SceneuseSceneUpdate(scene: Phaser.Scene,callback: ()=>void,depends: any[])useEvent(emitter: Phaser.Events.EventEmitter,event: string,callback: ()=>void,depends: any[])useEventValue(emitter: Phaser.Events.EventEmitter,event: string,defaultValue: T)useRelativePosition(params: {x: number,y: number,camera?: Phaser.Cameras.Scene2D.Camera}): React.MutableRefObject<HTMLElement>useRelativeScale(params: {target: number,min?: number,max?: number,round?: boolean}): React.MutableRefObject<HTMLElement>useTexture(key: string): HTMLImageElementuseMatchMedia(query: string): booleanuseMobilePlatform(): booleanuseClick(ref: React.RefObject,type: 'up'|'down',callback: Function,depends: any[])useClickOutside(ref: React.RefObject,callback: Function,depends: any[])useInteraction(ref: React.RefObject,callback?: Function,depends?: any[]): boolean.
<RelativePositionx={number}y={number}camera={Phaser.Cameras.Scene2D.Camera?}>
...
</RelativePosition><RelativeScaletarget={number}min={number?}max={number?}round={boolean?}>
...
</RelativeScale><Texturename={string}/>.
ifModifiedObject(newValue: T,keys?: (keyofT)[]): (currentValue: T)=>TifModifiedArray(newValue: T[],keys?: (keyofT)[]): (currentValue: T[])=>T[]constComponent: React.FC=()=>{constscene=useCurrentScene();const[data,setData]=useState({});useSceneUpdate(scene,()=>{constnewData=scene.getSomeData();// Rerender only if newData is different by datasetList(ifModifiedObject(newData))},[]);};.
import{useScene,useSceneUpdate,useEvent}from'phaser-react-ui';constPlayerHealth: React.FC=()=>{constworld=useScene('world');const[health,setHealth]=useState(0);const[isAlive,setAlive]=useState(true);useSceneUpdate(world,()=>{if(isAlive){setHealth(world.player.health);}},[isAlive]);useEvent(world.player,Phaser.GameObjects.Events.DESTROY,()=>{setAlive(false);},[]);returnisAlive&&(<divclassName='info'>{health}HP</div>);};import{useRelativeScale}from'phaser-react-ui';import{PlayerHealth}from'./PlayerHealth';constScreenUI: React.FC<Props>=()=>{constref=useRelativeScale<HTMLDivElement>({target: 1280,min: 0.6,max: 1.2,});return(<divref={ref}className='container'><PlayerHealth/>
...
</div>);};ScreenUI.displayName='ScreenUI';import{Interface}from'phaser-react-ui';import{ScreenUI}from'./ScreenUI';classScreenextendsPhaser.Scene{privateui: Interface;create(){this.ui=newInterface(this);this.ui.render(ScreenUI);}}