lars Posted December 3, 2015 Share Posted December 3, 2015 Hello A simple Q: How can i make at globla reference to a text: I tryed to put this in my main scene: this.myCountdown = new game.PIXI.Text("allo", { font: '60px Arial' });this.stage.addChild(this.myCountdown);this.myCountdown.text="hello test"; So I would like to refer to it in another obejct: this.myCountdown.text=counter; Quote Link to comment Share on other sites More sharing options...
lars Posted December 3, 2015 Author Share Posted December 3, 2015 Sorry found a solution: this.scoreText = new game.PIXI.Text("allo", { font: '60px Verdana' }); this.scoreText.position.set(game.system.width - 20, 10); this.addScore(0); this.stage.addChild(this.scoreText); }, addScore: function(amount) { this.score += amount; this.scoreText.setText(this.score.toString()); } Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.