Exemple #1
0
 private static void Prefix(NoteController noteController, ref Color ____bombColorEffect)
 {
     if (noteController.noteData.colorType == ColorType.None)
     {
         ____bombColorEffect = noteController.GetBombColorizer().Color.ColorWithAlpha(0.5f);
     }
     else
     {
         ColorManagerColorForType.EnableColorOverride(noteController);
     }
 }
Exemple #2
0
 private static void Prefix(NoteController noteController)
 {
     ColorManagerColorForType.EnableColorOverride(noteController);
 }
Exemple #3
0
 private static void Postfix()
 {
     ColorManagerColorForType.DisableColorOverride();
 }