Improved Resolution and Spacing

This commit is contained in:
ExeVirus 2024-02-09 19:59:54 -05:00
parent 23ddcf3bab
commit 5fb0cab6c0

@ -66,14 +66,14 @@
create ()
{
const particles = this.add.particles(1280/2, 320, 'key', {
const particles = this.add.particles(1920/2, 620, 'key', {
speed: 500,
scale: { start: 0.5, end: 0.2 }
scale: { start: 0.7, end: 0.2 }
});
const logo = this.add.text(1280/2-290, 180, 'Keyboard Kingdom!', {
const logo = this.add.text(1920/2-430, 380, 'Keyboard Kingdom!', {
fontFamily: '"Bungee"',
fontSize: '50px',
fontSize: '80px',
origin: { x: 0.5, y: 0.5 }
})
}