Toddorov 0 Report post Posted November 10, 2020 Hello! I am using pixi 5.3.3v and i am trying to create bitmapfont with the method 'from'. As i log the newly create font, it seems that it always creates the same set of symbols, even when i try to set chars to somethings else. The other problem is that the default created chars, does not contain any special symbols like "!,.@". Thanks. Quote Share this post Link to post Share on other sites
themoonrat 105 Report post Posted November 10, 2020 The docs show the correct usage parameters to be name, style, options BitmapFont.from("ExampleFont", style, { chars: BitmapFont.NUMERIC }) You have put the chars property with in the style object, when it needs to be in a new object passed in as 3rd parameter. 1 Toddorov reacted to this Quote Share this post Link to post Share on other sites