-
Uhm, I just saw this in changelog ![]() and... Can anybody pls make this script (or give a link if somebody already did it), and tell me how to apply it?🥺🙏 |
Beta Was this translation helpful? Give feedback.
Answered by
VirtuGuy
Aug 1, 2025
Replies: 1 comment 4 replies
-
Put this in a module. override function onNoteIncoming(event)
{
super.onNoteIncoming(event);
var note = event.note;
var holdNote = note.holdNoteSprite;
if (holdNote != null)
holdNote.alpha = 0.6;
} |
Beta Was this translation helpful? Give feedback.
4 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Apologies for not being specific with "mod folder", I meant to say that you need to put the module script in a mod folder inside "mods/". This will tell you how to setup a mod folder with the metadata needed to run it.