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?
[x] Google Chrome (or chomium based like Brave, vivaldi, MS Edge)
[ ] Firefox
[ ] Safari
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)
0.2.8
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
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
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
how to fix this:
change this:
to this:
(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