forked from Leather128/LeatherEngine
-
Notifications
You must be signed in to change notification settings - Fork 8
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
1 parent
428c88b
commit 9c18149
Showing
11 changed files
with
123 additions
and
39 deletions.
There are no files selected for viewing
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 |
---|---|---|
@@ -1,9 +1,22 @@ | ||
@echo off | ||
echo installing | ||
haxelib update | ||
haxelib install flixel | ||
haxelib install flixel-addons | ||
haxelib install flixel-ui | ||
haxelib install hscript | ||
haxelib install polymod 1.7.0 | ||
haxelib install lime | ||
haxelib install openfl | ||
haxelib install HxWebView | ||
haxelib install hxvlc | ||
haxelib install flixel-screenshot-plugin | ||
haxelib install hxcpp-debug-server | ||
haxelib git discord_rpc https://github.com/Aidan63/linc_discord-rpc | ||
haxelib git linc_luajit https://github.com/Leather128/linc_luajit.git | ||
haxelib git fnf-modcharting-tools https://github.com/TheZoroForce240/FNF-Modcharting-Tools | ||
haxelib git hscript-improved https://github.com/FNF-CNE-Devs/hscript-improved | ||
haxelib git hxcpp https://github.com/HaxeFoundation/hxcpp | ||
haxelib git scriptless-polymod https://github.com/swordcube/scriptless-polymod | ||
haxelib git flixelTextureAtlas https://github.com/Smokey555/Flixel-TextureAtlas.git | ||
haxelib git fnf-modcharting-tools https://github.com/Vortex2Oblivion/FNF-Modcharting-Tools | ||
haxelib git flxanimate https://github.com/Dot-Stuff/flxanimate | ||
echo done |
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 |
---|---|---|
@@ -1,8 +1,22 @@ | ||
@echo off | ||
echo installing | ||
haxelib update | ||
haxelib install flixel | ||
haxelib install flixel-addons | ||
haxelib install flixel-ui | ||
haxelib install hscript | ||
haxelib install polymod 1.7.0 | ||
haxelib install lime | ||
haxelib install openfl | ||
haxelib install HxWebView | ||
haxelib install hxvlc | ||
haxelib install flixel-screenshot-plugin | ||
haxelib install hxcpp-debug-server | ||
haxelib git discord_rpc https://github.com/Aidan63/linc_discord-rpc | ||
haxelib git linc_luajit https://github.com/Leather128/linc_luajit.git | ||
haxelib git linc_luajit https://github.com/Leather128/linc_luajit.git | ||
haxelib git fnf-modcharting-tools https://github.com/TheZoroForce240/FNF-Modcharting-Tools | ||
haxelib git hscript-improved https://github.com/FNF-CNE-Devs/hscript-improved | ||
haxelib git hxcpp https://github.com/HaxeFoundation/hxcpp | ||
haxelib git scriptless-polymod https://github.com/swordcube/scriptless-polymod | ||
haxelib git flixelTextureAtlas https://github.com/Smokey555/Flixel-TextureAtlas.git | ||
haxelib git fnf-modcharting-tools https://github.com/Vortex2Oblivion/FNF-Modcharting-Tools | ||
haxelib git flxanimate https://github.com/Dot-Stuff/flxanimate | ||
echo done |
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,3 @@ | ||
haxelib run lime setup flixel | ||
haxelib run lime setup | ||
haxelib run openfl setup |
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,3 @@ | ||
haxelib run lime setup flixel | ||
haxelib run lime setup | ||
haxelib run openfl setup |
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
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,68 @@ | ||
package toolbox.util; | ||
|
||
import flixel.addons.ui.FlxUI; | ||
import flixel.addons.ui.FlxUITabMenu; | ||
import flixel.text.FlxText; | ||
import openfl.utils.Assets; | ||
import flixel.FlxSprite; | ||
import flixel.FlxG; | ||
#if discord_rpc | ||
import utilities.Discord.DiscordClient; | ||
#end | ||
import states.MusicBeatState; | ||
import flixel.addons.ui.FlxUIInputText; | ||
|
||
|
||
class NewModState extends MusicBeatState{ | ||
|
||
var bg:FlxSprite; | ||
|
||
var modNameText:FlxText; | ||
var modName:FlxUIInputText; | ||
|
||
var UI_box:FlxUITabMenu; | ||
|
||
override function create(){ | ||
super.create(); | ||
#if discord_rpc | ||
DiscordClient.changePresence("Creating A New Mod", null, null, true); | ||
#end | ||
bg = new FlxSprite(); | ||
if(Options.getData("menuBGs")){ | ||
bg.loadGraphic(Paths.image(Assets.exists('ui skins/${Options.getData("uiSkin")}/backgrounds/menuCharter') ? 'ui skins/${Options.getData("uiSkin")}/backgrounds/menuCharter' : 'ui skins/default/backgrounds/menuCharter')); | ||
bg.screenCenter(); | ||
add(bg); | ||
} | ||
|
||
UI_box = new FlxUITabMenu(null, [{name: "New Mod", label: 'New Mod'},], true); | ||
|
||
UI_box.resize(640, 480); | ||
UI_box.screenCenter(); | ||
add(UI_box); | ||
|
||
var tab_Group_mod = new FlxUI(null, UI_box); | ||
tab_Group_mod.name = "New Mod"; | ||
|
||
UI_box.addGroup(tab_Group_mod); | ||
UI_box.scrollFactor.set(); | ||
|
||
modName = new FlxUIInputText(400, 250); | ||
modName.size = 16; | ||
add(modName); | ||
|
||
modNameText = new FlxText(); | ||
modNameText.x = modName.x; | ||
modNameText.y = modName.y - 30; | ||
modNameText.alignment = FlxTextAlign.CENTER; | ||
modNameText.size = 16; | ||
modNameText.text = "Mod Name"; | ||
add(modNameText); | ||
|
||
} | ||
override function update(elapsed:Float){ | ||
super.update(elapsed); | ||
if(FlxG.keys.anyJustPressed([ESCAPE])){ | ||
FlxG.switchState(() -> new ToolboxPlaceholder()); | ||
} | ||
} | ||
} |
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