I already have a text renderer that keeps track of the ammo count the character's weapon has left, and this works fine. The challenge is the positioning.
The goal is to have the text renderer that displays a number which is changing (number of ammo a weapon has) always having its' registration point centered based on if the text displaying is a single digit like (0, 1, 3, 4 etc) or and double digits (11, 12, 13. . .20's, 30's ... etc.)
I noticed we can't have 01, 02, 03 etc only 1, 2, 3 etc which is why I am trying to get the number to center every time it changes.
So first I would set the position of the text render's Basic Spatial to a certain point on the screens X-axis.
Then maybe somehow add another rules component to constrain the text renderers' registration point X to the Renderers' size X divided by 2.
This and many variations does not seem to have an effect on keeping the registration point centered, maybe I have to check for something else or update everytime the text renderer's text updated?