forked from FunkinCrew/Funkin
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
62 additions
and
26 deletions.
There are no files selected for viewing
31 changes: 31 additions & 0 deletions
31
source/funkin/ui/debug/char/components/dialogs/FreeplayDJSettingsDialog.hx
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,31 @@ | ||
package funkin.ui.debug.char.components.dialogs; | ||
|
||
@:build(haxe.ui.macros.ComponentMacros.build("assets/exclude/data/ui/char-creator/dialogs/freeplay-dj-settings-dialog.xml")) | ||
class FreeplayDJSettingsDialog extends DefaultPageDialog | ||
{ | ||
public var bgText1(get, never):String; | ||
|
||
function get_bgText1():String | ||
{ | ||
return bgTextField1.value ?? bgTextField1.placeholder; | ||
} | ||
|
||
public var bgText2(get, never):String; | ||
|
||
function get_bgText2():String | ||
{ | ||
return bgTextField2.value ?? bgTextField2.placeholder; | ||
} | ||
|
||
public var bgText3(get, never):String; | ||
|
||
function get_bgText3():String | ||
{ | ||
return bgTextField3.value ?? bgTextField3.placeholder; | ||
} | ||
|
||
override public function new(daPage:CharCreatorDefaultPage) | ||
{ | ||
super(daPage); | ||
} | ||
} |
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