Skip to content

Commit

Permalink
JJHKHHKHKXFGHKIKC
Browse files Browse the repository at this point in the history
  • Loading branch information
charlesisfeline committed Dec 26, 2023
1 parent 00942d1 commit 0cd62c1
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 155 deletions.
2 changes: 1 addition & 1 deletion assets/shared/scripts/IconFlinch.lua
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
settings = {
DenpaMiss = true,
DenpaMiss = false,
}
function onUpdatePost(elapsed)
if settings.DenpaMiss then
Expand Down
146 changes: 0 additions & 146 deletions assets/shared/scripts/smootherHealth.lua

This file was deleted.

13 changes: 5 additions & 8 deletions source/substates/GameplayChangersSubstate.hx
Original file line number Diff line number Diff line change
Expand Up @@ -71,9 +71,9 @@ class GameplayChangersSubstate extends MusicBeatSubstate
optionsArray.push(new GameplayOption('Health Drain', 'healthDrain', 'bool', false));
optionsArray.push(new GameplayOption('Heal on Sustain Note', 'sustainHeal', 'bool', true));
if(isHealthDrainOn){
optionsArray.push(new GameplayOption('Drain Amount', 'drainAmount', 'float', 0.039));
optionsArray.push(new GameplayOption('Sustain Note Drain Amount', 'sustainDrainAmt', 'float', 0.025));
optionsArray.push(new GameplayOption('Cannot Lower Than', 'cannotLowerThan', 'float', 0.25));
optionsArray.push(new GameplayOption('Drain Amount', 'drainAmount', 'float', 115.0));
optionsArray.push(new GameplayOption('Sustain Note Drain Amount', 'sustainDrainAmt', 'float', 50.0));
optionsArray.push(new GameplayOption('Cannot Lower Than', 'cannotLowerThan', 'float', 60.0));
}
}

Expand Down Expand Up @@ -331,8 +331,7 @@ class GameplayChangersSubstate extends MusicBeatSubstate
curSelected += change;
if (curSelected < 0)
curSelected = optionsArray.length - 1;
if (curSelected >= optionsArray.length)
curSelected = 0;
if (curSelected >= optionsArray.length) curSelected = 0;

var bullShit:Int = 0;

Expand All @@ -341,9 +340,7 @@ class GameplayChangersSubstate extends MusicBeatSubstate
bullShit++;

item.alpha = 0.6;
if (item.targetY == 0) {
item.alpha = 1;
}
if(item.targetY == 0) item.alpha = 1;
}
for (text in grpTexts) {
text.alpha = 0.6;
Expand Down

0 comments on commit 0cd62c1

Please sign in to comment.