ShadowWalker
Well-known member
Some races in Interface Zero have some player decided text.
I though I would use a gizmo to have a form show up on selection of one of the races that has this requirement.
So I added an entity to the traits.dat where races are defined.
I added the racDetails thing
I then added the entity to the race things that require it.
I created the form with a simple template that includes an edit portal. There is also a layout that has the template linked to the same thing as the above entity uses in the bootstrap.
I have a chooser that shows the list of the races.
When one of the races with the entity associated to it is selected it doesn't show the form. I'm missing something just not sure what.
I though I would use a gizmo to have a form show up on selection of one of the races that has this requirement.
So I added an entity to the traits.dat where races are defined.
Code:
<entity
id="adjRace"
form="raCustRace">
<bootstrap thing="racDetails"/>
</entity>
I added the racDetails thing
Code:
<thing
id="racDetails"
name="Racial Details"
compset="RaceDetail">
</thing>
I then added the entity to the race things that require it.
Code:
<child entity="adjRace">
</child>
I created the form with a simple template that includes an edit portal. There is also a layout that has the template linked to the same thing as the above entity uses in the bootstrap.
I have a chooser that shows the list of the races.
When one of the races with the entity associated to it is selected it doesn't show the form. I'm missing something just not sure what.