File tree Expand file tree Collapse file tree 1 file changed +10
-0
lines changed Expand file tree Collapse file tree 1 file changed +10
-0
lines changed Original file line number Diff line number Diff line change @@ -21,6 +21,16 @@ internal class NotePhysicalTweaks
21
21
private static readonly Texture2D OriginalDotGlowTexture = Resources . FindObjectsOfTypeAll < Texture2D > ( ) . ToList ( ) . First ( x => x . name == "NoteCircleBakedGlow" ) ;
22
22
private static readonly Texture2D ReplacementDotGlowTexture = Utils . Textures . PrepareTexture ( OriginalDotGlowTexture ) ;
23
23
24
+ [ HarmonyPatch ( typeof ( StandardLevelScenesTransitionSetupDataSO ) , "Finish" ) ]
25
+ [ HarmonyPostfix ]
26
+ private static void GetRidOfFunnySphere ( StandardLevelScenesTransitionSetupDataSO __instance )
27
+ {
28
+ if ( DotObject != null )
29
+ {
30
+ Object . DestroyImmediate ( DotObject ) ;
31
+ }
32
+ }
33
+
24
34
// thanks BeatLeader
25
35
[ HarmonyPatch ]
26
36
internal class StandardLevelScenesTransitionSetupDataPatch
You can’t perform that action at this time.
0 commit comments