Appearance
Canvas Component
Canvas is the root component of a CanvasEngine scene. Use it once at the top of your application component to create the PixiJS application and host every canvas-rendered child component.
Minimal example
html
<Canvas backgroundColor="#101820">
<Text text="Hello World" x={40} y={40} color="#ffffff" />
</Canvas>The start component passed to bootstrapCanvas must begin with Canvas.
Layout example
Canvas can also receive layout props, which makes it useful for HUDs, menus, and centered game screens.
html
<Canvas
backgroundColor="#101820"
flexDirection="column"
justifyContent="center"
alignItems="center"
width="100%"
height="100%"
>
<Text text="Press Start" size={42} color="#ffffff" />
</Canvas>Options
You can use CanvasEngine display and layout props, plus renderer options supported by PixiJS.
TIP
Use Canvas for the scene root. Use Container to group or lay out content inside the scene.