forked from AncientCowboy/EEUITweaks
-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Make BillyYank multi portraits compatible with LeUI
- Loading branch information
Showing
7 changed files
with
111 additions
and
75 deletions.
There are no files selected for viewing
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,62 @@ | ||
menu | ||
{ | ||
name 'CHARGEN_GENDER' | ||
align center center | ||
ignoreesc | ||
onOpen "toggleMale = 0; toggleFemale = 0; createCharGenderHelp = nil" | ||
|
||
label | ||
{ | ||
area 0 159 1024 609 | ||
mosaic 'GUIGDB' | ||
} | ||
label | ||
{ | ||
area 36 182 332 44 | ||
text "GENDER_TITLE" | ||
text style "title" | ||
} | ||
label | ||
{ | ||
area 430 177 290 422 | ||
text lua "Infinity_FetchString(createCharGenderHelp)" | ||
text style "parchment" | ||
text color B | ||
} | ||
button | ||
{ | ||
area 84 354 98 86 | ||
bam GUIGEND1 | ||
sequence 0 | ||
toggle toggleMale | ||
action "toggleFemale = 0; createCharScreen:OnGenderSelectButtonClick(1)" | ||
} | ||
button | ||
{ | ||
area 230 354 98 86 | ||
bam GUIGEND1 | ||
sequence 1 | ||
toggle toggleFemale | ||
action "toggleMale = 0; createCharScreen:OnGenderSelectButtonClick(2)" | ||
} | ||
|
||
button | ||
{ | ||
on escape | ||
area 198 688 234 44 | ||
text "BACK_BUTTON" | ||
text style "button" | ||
bam GUIOSTUL | ||
action "Infinity_PopMenu(); createCharScreen:OnCancelButtonClick()" | ||
} | ||
button | ||
{ | ||
on return | ||
area 438 688 201 44 | ||
bam GUIOSTUM | ||
text "DONE_BUTTON" | ||
text style "button" | ||
clickable lua "createCharScreen:IsDoneButtonClickable()" | ||
action "Infinity_PopMenu(); createCharScreen:OnDoneButtonClick()" | ||
} | ||
} |