I have a text object. I have a "coin" sprite that should appear right next to it. Problem is: The text is dynamic, which means the object will change size depending on the number of characters the current text have. I want my "coin" sprite to appear on the right side of the text objetc, right next to it. How do i do it?
My best guess was to set the position of the sprite to textObject.X + len(textObject.Text), but it is appearing over the textObject(i guess it´s because the length of the text object isn't so long enough)