PDA

View Full Version : Moving Elements in Character Selection



Blackfoot
February 14th, 2019, 18:10
I'm looking to move 2 or 3 elements in the character selection window and I'm having a bit of trouble tracking down where to put the offset.
Anyone know offhand?

As you can see the Help & Close Buttons and the Search bar are a bit off for my graphics.

Moon Wizard
February 14th, 2019, 22:21
Those are the "help_charselect" and "close_charselect" templates.

Here's an example override from the 5E ruleset:


<template name="close_charselect">
<close>
<anchored>
<top offset="20" />
<right offset="-20" />
</anchored>
</close>
</template>


Regards,
JPG

damned
February 14th, 2019, 22:22
from memory you want to define new close and help templates for use in this frame - something like cshelp and csclose and define the offsets there.

ninja alert!

Blackfoot
February 15th, 2019, 00:58
Those are the "help_charselect" and "close_charselect" templates.

Here's an example override from the 5E ruleset:


Regards,
JPGCool. That resolves 2 of the 3 things... (once I figured out that those things were in common/template_windows.xml) :)
I don't see anything about the Search Bar there though.. and I'm guessing the 3 circle things are something different too.. I can't find where this window is actually being built.. is it a utility window?

damned
February 15th, 2019, 01:19
CoreRPG\campaign\campaign_chars.xml

button_iedit
button_iadd
button_importcharwindow
filter_charselect

Blackfoot
February 15th, 2019, 01:27
CoreRPG\campaign\campaign_chars.xml

button_iedit
button_iadd
button_importcharwindow
filter_charselect

Awesome. Thanks.