python (12.9k questions)
javascript (9.2k questions)
reactjs (4.7k questions)
java (4.2k questions)
java (4.2k questions)
c# (3.5k questions)
c# (3.5k questions)
html (3.3k questions)
Phaser3, Creating Rounded Rectangle, Not Staying Put Relative To Window
I'm trying to create a scoreboard using phaser3. It creates the board when I do the following in create function:
this.gr = this.add.graphics();
this.gr.fillStyle(0xffffff, 0.3);
this.gr...

user17712685
Votes: 0
Answers: 1
Phaser 3 How to Access and Affect Player in Collision between 2 Objects Not Involving Player
I am trying to create a grappling hook in Phaser 3. I can successfully shoot the grappling hook at an upward angle away from the player. I need to get the player to move towards the grappling hook whe...
ChristianOConnor
Votes: 0
Answers: 2
Is setInterval cleared on scene change Phaser 3?
Are all setIntervals cleared on scene change in Phaser 3? For example, if I have this code:
class ExampleScene extends Phaser.Scene {
constructor () {
super();
}
preload () {
}
create (...

Mushy Avocado
Votes: 0
Answers: 1