46 lines
2.0 KiB
XML
46 lines
2.0 KiB
XML
<Panel id="choose" position="0 -90 -22"
|
|
rotation="0 0 180"
|
|
height="200" width="500"
|
|
scale="0.3 0.3 1"
|
|
showAnimation="FadeIn" hideAnimation="FadeOut" active="true">
|
|
<Text font="font_teutonic-arkham" fontSize="100" color="White" outline="Black" outlineSize="2, -2">Choose sigil:</Text>
|
|
</Panel>
|
|
<Panel id="sigils" position="0 -50 -22"
|
|
rotation="0 0 180"
|
|
height="200" width="500"
|
|
scale="0.3 0.3 1"
|
|
showAnimation="FadeIn" hideAnimation="FadeOut" active="true">
|
|
|
|
<TableLayout cellSpacing="20" cellBackgroundColor="rgba(1,1,1,0)">
|
|
|
|
<Row>
|
|
<Cell><Button id="Bless" color="rgba(1,1,1,0)" icon="bless" onClick="chooseSigil"></Button></Cell>
|
|
<Cell><Button id="Curse" color="rgba(1,1,1,0)" icon="curse" onClick="chooseSigil"></Button></Cell>
|
|
<Cell><Button id="Skull" color="rgba(1,1,1,0)" icon="skull" onClick="chooseSigil"></Button></Cell>
|
|
</Row>
|
|
|
|
</TableLayout>
|
|
</Panel>
|
|
<Panel id="resolve_bless"
|
|
position="0 -30 -22"
|
|
rotation="0 0 180"
|
|
height="500" width="1000"
|
|
scale="0.1 0.1 1" active="false" showAnimation="FadeIn" hideAnimation="FadeOut"
|
|
><Button icon="bless" font="font_teutonic-arkham" fontSize="200" textColor="Red"
|
|
onClick="resolveSigil" color="rgba(1,1,1,0)" iconAlignment="Right">Resolve </Button></Panel>
|
|
|
|
<Panel id="resolve_skull"
|
|
position="0 -30 -22"
|
|
rotation="0 0 180"
|
|
height="500" width="1000"
|
|
scale="0.1 0.1 1" active="false" showAnimation="FadeIn" hideAnimation="FadeOut"
|
|
><Button icon="skull" font="font_teutonic-arkham" fontSize="200" textColor="Red"
|
|
onClick="resolveSigil" color="rgba(1,1,1,0)" iconAlignment="Right">Resolve </Button></Panel>
|
|
|
|
<Panel id="resolve_curse"
|
|
position="0 -40 -22"
|
|
rotation="0 0 180"
|
|
height="500" width="1400"
|
|
scale="0.1 0.1 1" active="false" showAnimation="FadeIn" hideAnimation="FadeOut"
|
|
><Button icon="curse" font="font_teutonic-arkham" fontSize="260" textColor="White"
|
|
onClick="resolveSigil" color="rgba(1,1,1,0)" iconAlignment="Right" padding="40 40 0 0">Resolve</Button></Panel> |