Make virtual joystick transparent

This commit is contained in:
PizZaKatZe 2021-04-07 13:30:51 +02:00
parent 9c9d262782
commit 340caaff32
1 changed files with 2 additions and 2 deletions

View File

@ -418,8 +418,8 @@ export class GameScene extends ResizableScene implements CenterListener {
x: this.game.renderer.width / 2, x: this.game.renderer.width / 2,
y: this.game.renderer.height / 2, y: this.game.renderer.height / 2,
radius: 20, radius: 20,
base: this.add.circle(0, 0, 20, 0x888888), base: this.add.circle(0, 0, 20),
thumb: this.add.circle(0, 0, 10, 0xcccccc), thumb: this.add.circle(0, 0, 10),
enable: true, enable: true,
dir: "8dir", dir: "8dir",
}); });