Troubleshooting Panels Not Using Paint Routines Once Compiled
-
Whenever I compile a plugin I'm working on the paint routines for my panels dont get called.
-
Everything that isn't loading is a panel with an overwriten paintRoutine.
-
Post a minimal example so we can see how your writing your paint routines.
-
@d-healey Here you go
-
This post is deleted! -
Does this happen if you make a new project, add one panel with a paint routine, and compile?
-
@d-healey It turned out I was including my scripts like this
include("./Fold/Script.js")
instead of
include("/Fold/Script.js")
Which makes sense to why it was working in HISE but not when compiled.