cgytrus / MenuShaders

A Geometry Dash mod that replaces the background of the main menu with a custom customizable shader.
MIT License
4 stars 5 forks source link

Causes Log Spam #17

Closed Brittank88 closed 2 months ago

Brittank88 commented 2 months ago

These same 4 lines are printed over and over again:

17:53:32 WARN  [Main] [Menu Shaders]: failed to find node with id 'define REVERSE_PATTERN'
17:53:32 WARN  [Main] [Menu Shaders]: failed to find node with id 'define SHOW_GRID'
17:53:32 WARN  [Main] [Menu Shaders]: failed to find node with id 'define SHOW_VERTICES'
17:53:32 WARN  [Main] [Menu Shaders]: failed to find node with id 'define BUMP'

I'll attach the full log file: Geode 2024-09-24 17.53.18.log

cgytrus commented 2 months ago

dont think theres anything that can be done here without changing the mod's advanced api (that, admittedly, probably nobody uses, but it exists so i would rather not break it) as a workaround you can simply erase the 4 lines in the shader file that would cause these: //#define REVERSE_PATTERN, //#define SHOW_GRID, //#define SHOW_VERTICES, //#define BUMP. theyre just comments so removing them is completely safe

Brittank88 commented 2 months ago

Ah, sure thing, thanks!