From 340caaff322430b281362932ad4bd7f2b460e089 Mon Sep 17 00:00:00 2001 From: PizZaKatZe Date: Wed, 7 Apr 2021 13:30:51 +0200 Subject: [PATCH] Make virtual joystick transparent --- front/src/Phaser/Game/GameScene.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/front/src/Phaser/Game/GameScene.ts b/front/src/Phaser/Game/GameScene.ts index 22ce0f42..428d9c0d 100644 --- a/front/src/Phaser/Game/GameScene.ts +++ b/front/src/Phaser/Game/GameScene.ts @@ -418,8 +418,8 @@ export class GameScene extends ResizableScene implements CenterListener { x: this.game.renderer.width / 2, y: this.game.renderer.height / 2, radius: 20, - base: this.add.circle(0, 0, 20, 0x888888), - thumb: this.add.circle(0, 0, 10, 0xcccccc), + base: this.add.circle(0, 0, 20), + thumb: this.add.circle(0, 0, 10), enable: true, dir: "8dir", });