Skip to content

Commit

Permalink
coredev being a total dumbass
Browse files Browse the repository at this point in the history
  • Loading branch information
corecathx committed Dec 10, 2023
1 parent 078d9dc commit b6e1694
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 146 deletions.
2 changes: 1 addition & 1 deletion example_mods/readme.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
Mods Folder! Go to 'Modding' options on CDEV-Engine to make mods!
Mods Folder! Go to 'Modding' options on CDEV Engine to make mods!
4 changes: 2 additions & 2 deletions source/game/Paths.hx
Original file line number Diff line number Diff line change
Expand Up @@ -50,8 +50,8 @@ class Paths

public static function destroyLoadedImages(ignoreCheck:Bool = false)
{
if (!ignoreCheck && FlxGraphic.defaultPersist)
return; // If there's 20+ images loaded, do a cleanup just for preventing a crash
//if (!ignoreCheck && FlxGraphic.defaultPersist)
// return; // If there's 20+ images loaded, do a cleanup just for preventing a crash

for (key in customImagesLoaded.keys())
{
Expand Down
140 changes: 0 additions & 140 deletions source/game/system/native/WinAPI.hx

This file was deleted.

5 changes: 2 additions & 3 deletions source/meta/states/charter/ChartingState.hx
Original file line number Diff line number Diff line change
Expand Up @@ -1088,8 +1088,8 @@ class ChartingState extends MusicBeatState
//p1Lerp = FlxMath.lerp(0.6, leftIcon.scale.x, CDevConfig.utils.bound(1 - (elapsed * 10), 0, 1));
//p2Lerp = FlxMath.lerp(0.6, rightIcon.scale.x, CDevConfig.utils.bound(1 - (elapsed * 10), 0, 1));

p1Lerp = 1+((Conductor.songPosition % (Conductor.crochet))*0.2);
p2Lerp = 1+((Conductor.songPosition % (Conductor.crochet))*0.2);
p1Lerp = 0.8-((Conductor.songPosition % (Conductor.crochet))/Conductor.crochet)*0.2;
p2Lerp = 0.8-((Conductor.songPosition % (Conductor.crochet))/Conductor.crochet)*0.2;

leftIcon.scale.set(p1Lerp, p1Lerp);
leftIcon.updateHitbox();
Expand Down Expand Up @@ -2098,7 +2098,6 @@ class ChartingState extends MusicBeatState
if (lastTime >= time)
{
lastCount += elapsed;
trace(lastCount);
if (!hitted)
{
hitted = true;
Expand Down

0 comments on commit b6e1694

Please sign in to comment.