So, to move the "EntityBox" on the "x" position, do I have to change only the variable "x"?
In this case, I have changed the "x" variables to value 50 (for PlayerBox and EntityInfoPanel).
Before
<PlayerBox>
<Bounds>0,0,314,192</Bounds>
...
<Children>
<EntityInfoPanel>
<Bounds>0,0,314,126</Bounds>
...
After:
<PlayerBox>
<Bounds>50,0,314,192</Bounds>
...
<Children>
<EntityInfoPanel>
<Bounds>50,0,314,126</Bounds>
...
But this is the problem: PlayerBox.jpg
If "EntityInfoPanel" is inside the "PlayerBox" and I changed both "x" variables, why in the game, the "EntityInfoPanel" is divided?
I can work around this problem by changing more the "width" size of "PlayerBox", but why if both have the same "x" position and same "width" size?