Skip to content
This repository was archived by the owner on Dec 19, 2025. It is now read-only.

Commit f659285

Browse files
committed
test-build
1 parent e9e8f2d commit f659285

File tree

7 files changed

+6
-261
lines changed

7 files changed

+6
-261
lines changed

README.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ HyperCode Engine is a fork of the Psych Engine
2929
- **Buffer [Work in Progress]**
3030
Buffers temporarily store data in memory for more efficient data handling, improving overall performance.
3131

32-
- **3D model support [ !! Work in Progress !! | NOT WORKING, IT TOO MUCH ERROR ]**
32+
- **3D model support**
3333
Now you can use 3D models in your mods! This feature allows for more complex and visually appealing scenes.
3434

3535
# **Easy Modding** (with Chaos Included)
@@ -61,7 +61,6 @@ Just like Psych Engine, HyperCode Engine is made for modders — with a cool API
6161

6262
### Haxe-Only
6363
- `NdllUtil`
64-
- `Manager3D`
6564

6665
---
6766

setup/unix.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@ haxelib set lime 8.2.2
1515
haxelib set openfl 9.4.1
1616
haxelib git flxanimate https://github.com/Dot-Stuff/flxanimate 768740a56b26aa0c072720e0d1236b94afe68e3e
1717
haxelib git linc_luajit https://github.com/superpowers04/linc_luajit 1906c4a96f6bb6df66562b3f24c62f4c5bba14a7
18-
haxelib git funkin.vis https://github.com/FunkinCrew/funkVis 22b1ce089dd924f15cdc4632397ef3504d464e90
18+
haxelib git funkin.vis https://github.com/FunkinCrew/funkVis
1919
haxelib git grig.audio https://gitlab.com/haxe-grig/grig.audio.git cbf91e2180fd2e374924fe74844086aab7891666
20-
haxelib git away3d https://github.com/CodenameCrew/away3d
20+
haxelib git away3d https://github.com/CodenameCrew/away3d.git
2121
haxelib install tink_core
2222
haxelib install tink_await
2323
haxelib git hscript-improved https://github.com/FNF-CNE-Devs/hscript-improved.git

setup/windows.bat

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,9 @@ haxelib set lime 8.2.2
1717
haxelib set openfl 9.4.1
1818
haxelib git flxanimate https://github.com/Dot-Stuff/flxanimate 768740a56b26aa0c072720e0d1236b94afe68e3e
1919
haxelib git linc_luajit https://github.com/superpowers04/linc_luajit 1906c4a96f6bb6df66562b3f24c62f4c5bba14a7
20-
haxelib git funkin.vis https://github.com/FunkinCrew/funkVis 22b1ce089dd924f15cdc4632397ef3504d464e90
20+
haxelib git funkin.vis https://github.com/FunkinCrew/funkVis
2121
haxelib git grig.audio https://gitlab.com/haxe-grig/grig.audio.git cbf91e2180fd2e374924fe74844086aab7891666
22-
haxelib git away3d https://github.com/CodenameCrew/away3d
22+
haxelib git away3d https://github.com/CodenameCrew/away3d.git
2323
haxelib install tink_core
2424
haxelib install tink_await
2525
haxelib git hscript-improved https://github.com/FNF-CNE-Devs/hscript-improved.git

source/Manager3D/Manager3D.hx

Lines changed: 0 additions & 203 deletions
This file was deleted.

source/states/CustomStage.hx

Lines changed: 1 addition & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -160,19 +160,6 @@ class CustomStage extends MusicBeatState {
160160
script.destroy();
161161
}
162162
hscriptArray = [];
163-
}
164-
165-
override function beatHit():Void {
166-
super.beatHit();
167-
for (script in hscriptArray) {
168-
tryCall(script, "onBeatHit");
169-
}
170-
}
171-
172-
override function stepHit():Void {
173-
super.stepHit();
174-
for (script in hscriptArray) {
175-
tryCall(script, "onStepHit");
176-
}
163+
hscriptArray.clear();
177164
}
178165
}

source/states/MainMenuState.hx

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,6 @@ class MainMenuState extends MusicBeatState
4242
{
4343
super.create();
4444
if (EngineConfig.IS_DEVELOPER) {
45-
// optionShit.push('TEST');
4645
optionShit.push('TEST2');
4746
}
4847

@@ -325,8 +324,6 @@ class MainMenuState extends MusicBeatState
325324
PlayState.SONG.splashSkin = null;
326325
PlayState.stageUI = 'normal';
327326
}
328-
case 'TEST':
329-
// MusicBeatState.switchState(new TestState());
330327
case 'TEST2':
331328
MusicBeatState.switchCustomStage("testmenu");
332329
case 'donate':

source/states/TestState.hx

Lines changed: 0 additions & 35 deletions
This file was deleted.

0 commit comments

Comments
 (0)