Jump to content

lebeling sprites


tanmoy749
 Share

Recommended Posts

  • 3 weeks later...

Here are some snippets from a game I'm working on that has text labels that follow the sprites around. Not the only way to do it, but basically create a text object and make it follow the sprite around.

create: function() {
  label = game.add.text(0, 0, user.name, textStyle);
  label.anchor.set(0.5);
}

update: function() {
  label.alignTo(sprite, Phaser.BOTTOM_CENTER, 0, 0);
}

Making the text a child of the sprite might also be an option and wouldn't require updating the position every time. In my case my sprites rotate, and the text would also rotate if it was a child.

Is that the type of thing you're looking for?

Link to comment
Share on other sites

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.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Loading...
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...