Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion NXTALE.yyp

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions objects/obj_decomp_settings/Other_11.gml
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,12 @@ array_push(categories, new menu_category("Battle", "General Battle Settings",
new menu_checkbox_option("Demo Heart Fracture Delay", "DemoHeartFracture", "Restores the 500ms delay when the heart fractures", global.decomp_vars.DemoHeartFracture, true),
new menu_slider_option("Heart Fracture Delay", "DemoHeartFractureDelay", "Delay amount (in ms) for the heart fracture", global.decomp_vars.DemoHeartFractureDelay, 500, 250, 1000, 1, 10)
]));

array_push(categories, new menu_category("Accessibility", "Ease of Access Settings",
[
new menu_checkbox_option("Controls the TV Noise from Flowey Fight","DrawTVNoiseAnim","Enable to turn on the TV Noise during the Flowey Fight", global.decomp_vars.DrawTVNoiseAnim,false)
]));

array_push(categories, new menu_category("Save Data", "Save Data Settings",
[
new menu_holdbutton_option("Wipe Trophy Data", "Hold to wipe all trophy data", 30 * 3, wipeTrophyData),
Expand Down
25 changes: 16 additions & 9 deletions objects/obj_floweyx_tv/Draw_0.gml
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,22 @@ if (tvmode == 0)
animspeed = (-animspeed)
if (anim < (animchoice - 1))
animspeed = (-animspeed)
animtimer += 1
if (animtimer > 100)
{
draw_sprite_ext(spr_noise, random(3), ((x + 20) + random(4)), ((y + 50) + random(4)), ((size + 0.8) + random(0.1)), ((size + random(0.1)) + 0.4), 0, c_white, 1)
animchoice = round(random(100))
anim = animchoice
if (animtimer > 106)
animtimer = 0
}
if(global.decomp_vars.DrawTVNoiseAnim)
{
animtimer += 1
if (animtimer > 100)
{
draw_sprite_ext(spr_noise, random(3), ((x + 20) + random(4)), ((y + 50) + random(4)), ((size + 0.8) + random(0.1)), ((size + random(0.1)) + 0.4), 0, c_white, 1)
animchoice = round(random(100))
anim = animchoice
if (animtimer > 106)
animtimer = 0
}
}
else
{
draw_sprite_ext(spr_noise, random(3), ((x + 20) + random(4)), ((y + 50) + random(4)), ((size + 0.8) + random(0.1)), ((size + random(0.1)) + 0.4), 0, c_white, 1)
}
draw_sprite(sprite_index, image_index, x, (y + (sin((siner / 3)) * 1)))
siner += 1
}
Expand Down
3 changes: 2 additions & 1 deletion scripts/decomp_init/decomp_init.gml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,8 @@ global.decomp_vars = {
FixInputLatency : true,
WristProtector : true,
ForceSoSorry : false,
QwertzInput : true
QwertzInput : true,
DrawTVNoiseAnim: false
}

#macro trace show_debug_message
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,4 +19,5 @@ function set_default_decomp_vars()
global.decomp_vars.WristProtector = true;
global.decomp_vars.ForceSoSorry = false;
global.decomp_vars.QwertzInput = true;
global.decomp_vars.DrawTVNoiseAnim = false;
}