Search the Community
Showing results for tags 'bold'.
-
Hi, I am using BABYLON.GUI in my project and sometimes the text is not really readable when displayed with no background. I want to add a text shadow or at least bold the text so that you can correctly read it. But I didn't find a way to do that with BABYLON.GUI. Do you have an idea? Thanks, Pichou
-
Hi guys, You can simulate Markdown in Phaser 2.4.2 very easily, see my example: http://codepen.io/jdnichollsc/pen/pJqadN?editors=001 var hello = game.add.text(x, y, "Hello **World**, this is **MarkDown** in *Phaser*!", { font: "bold 60px Arial"});hello.applyMarkdown(); //that is all!Regards, Nicholls
-
Hi guys, How can I to set italic and bold words with position like the following example? => http://phaser.io/examples/v2/text/colored-characters Example: "Hello everyone, I'm testing the text in Phaser" Thanks in advance, Nicholls