Milesklc Posted August 9, 2017 Share Posted August 9, 2017 Hi. I'm using phaser 2.6.2 and I have an issue every time I create a text and set it's anchor. The text seem to fly away a great distance after setting it's anchor. Example: if I were to set the anchor to 0.5, the text moves to a location far greater than it's size. If I create a text, it's anchor is at default 0 (top left of text)? If I were to change it to 0.5, rather than the text center itself about the anchor, it goes a great distance away from it, like really far. this.goldCoinsText = this.game.add.text(350.6, 86.1, '5000', {font: "20px Arial", fill: "#ffe488"}); this.goldCoinsText.anchor.set(0.5); Link to comment Share on other sites More sharing options...
Milesklc Posted August 10, 2017 Author Share Posted August 10, 2017 I solved this issue. I apparently forgot ";" at the end of my previous code. Thanks. Link to comment Share on other sites More sharing options...
Recommended Posts