Forum > Serverside Modding

[Question: GlueXML] Character Creation Screen Positioning

<< < (2/2)

Curas:
As your wish, Steff.

After trying change the coordinates in the CharacterCreate.xml, I finally get the right button:


--- Code: ---   <CheckButton name="CharacterCreateRaceButton5" inherits="CharacterCreateRaceButtonTemplate" id="5">
                        <Anchors>
                           <Anchor point="TOPLEFT" relativeTo="CharacterCreateRaceButton4" relativePoint="BOTTOMLEFT">
                              <Offset>
                                 <AbsDimension x="0" y="-5"/>
                              </Offset>
                           </Anchor>
                        </Anchors>
                     </CheckButton>
--- End code ---

I just changend the <AbsDimension x="0" y="-5"/> to <AbsDimension x="95" y="45"/> and the Button we're on the right position. But the CharacterCustomization was also moved huge so I changed the CharacterCreateGenderButtonMale, cuz it's relative to CharacterCreateRaceButton5, take a look at this:
Before:

--- Code: ---<CheckButton name="CharacterCreateGenderButtonMale" inherits="CharacterCreateGenderButtonTemplate">
<Anchors>
<Anchor point="TOPLEFT" relativeTo="CharacterCreateRaceButton5" relativePoint="BOTTOMLEFT">
<Offset>
<AbsDimension x="25" y="-15"/>
</Offset>
</Anchor>
</Anchors>
--- End code ---
After:

--- Code: ---<CheckButton name="CharacterCreateGenderButtonMale" inherits="CharacterCreateGenderButtonTemplate">
<Anchors>
<Anchor point="TOPLEFT" relativeTo="CharacterCreateRaceButton5" relativePoint="BOTTOMLEFT">
<Offset>
     <AbsDimension x="-70" y="-65"/>
</Offset>
</Anchor>
</Anchors>
--- End code ---

ONLY change the Coordinates at <AbsDimension>, every other change in that file would end in an critical error. So after changing the coordinates for the "CharacterCreateRaceButton5"
from
<AbsDimension x="0" y="-5"/>
to
<AbsDimension x="95" y="45"/> just change the coordinates for the "CharacterCreateGenderButtonMale"
<AbsDimension x="25" y="-15"/>
to
<AbsDimension x="-70" y="-65"/>

The Result:

Navigation

[0] Message Index

[*] Previous page

Go to full version