Hello, guys. So, I'm wondering if there is an example on how to manage multi colored texts? This image exemplifies perfectly what I want: Actually, mine is actually simpler than that. I just want to write a sentence like this: "Click on the Cat" In which "Click on the" is black and "Cat" is red. I can't find a way to do it in Phaser. That's my code so far: var textStyle = { font: "65px Arial", fill: "#000000"};var text = game.add.text (400, 500,"Click on the " + chosenAnimal, textStyle);As you can imagine, everything is in black. How could I change the chosenAnimal to red in an easy way? There must be a simple solution to this, but I couldn't find anything in the examples.