Added description to resolution.

This commit is contained in:
Sebastian Kupke 2022-05-04 09:10:01 +02:00
parent 7e9f0159e8
commit c41209d0fc
1 changed files with 7 additions and 3 deletions

View File

@ -35,7 +35,7 @@
const textProps = {fontSize: 72, fill: 0xffffff}
Mousetrap.bind(['1', '2', '3', '4'], (event, key) => {
Mousetrap.bind(['1', '2', '3', '4', '5'], (event, key) => {
app.stage.removeChildren()
@ -69,9 +69,13 @@
// texts
//--------------------
const shortcuts = new PIXI.Text(`Press 1 - 5 to change Sprites`, textProps)
shortcuts.x = 100
shortcuts.y = 100
const width = new PIXI.Text(`Width: ${app.renderer.width}`, textProps)
width.x = 100
width.y = 100
width.y = shortcuts.y + shortcuts.height * 2
const height = new PIXI.Text(`Height: ${app.renderer.height}`, textProps)
height.x = 100
@ -89,7 +93,7 @@
text.x = 100
text.y = devicePixelRatio.y + devicePixelRatio.height * 2
app.stage.addChild(width, height, resolution, devicePixelRatio, text)
app.stage.addChild(shortcuts, width, height, resolution, devicePixelRatio, text)
})
Mousetrap.trigger('1')