FunkinCrew / Funkin

A rhythm game made with HaxeFlixel
https://www.newgrounds.com/portal/view/770371
Other
2.96k stars 2.29k forks source link

Bug Report: Note Splash Bug #1846

Closed gamerbross closed 5 months ago

gamerbross commented 3 years ago

Please check for duplicates or similar issues, as well performing simple troubleshooting steps (such as clearing cookies, clearing AppData, trying another browser) before submitting an issue.

If you are playing the game in a browser, what site are you playing it from?

If you are playing the game in a browser, what browser are you using?

What version of the game are you using? Look in the bottom left corner of the main menu. (ex: 0.2.7, 0.2.1, shit like that)

Have you identified any steps to reproduce the bug? If so, please describe them below in as much detail as possible. Use images if possible.

Please describe your issue. Provide extensive detail and images if possible.

when you enter a song, a note splash appears in the left corner

image

how to fix this:

change this:

grpNoteSplashes = new FlxTypedGroup<NoteSplash>();
var noteSplash = new NoteSplash(100, 100, 0);
noteSplash.alpha = 0.6;
grpNoteSplashes.add(noteSplash);

to this:

grpNoteSplashes = new FlxTypedGroup<NoteSplash>();
var noteSplash = new NoteSplash(100, 100, 0);
noteSplash.alpha = 0;
grpNoteSplashes.add(noteSplash);
new FlxTimer().start(1.5, function(tmr:FlxTimer)
{
    noteSplash.alpha = .6;
});

(I don't think your code is the way it is, since I tried to read the code from the funkin.js, and its obfuscated)

If you're game is FROZEN and you're playing a web version, press F12 to open up browser dev window, and go to console, and copy-paste whatever red error you're getting

DotWith commented 3 years ago

NinjaMuffin did this to cache the first note splash.

ghost commented 2 years ago

how i add splash note to fnf? I create a NoteSplash.hx?? Please help me lol