from which script was it?

im half way down my project and have a lot of scripts to look through. the problem is that a static variable is being changed to false when i dont want it to and i need to find out which script is doing this so i can alter the code…any suggestions?

If you have C#, open monodevelop, right click the variable and ‘find references’.

If you have JS, use search/find in files.

Search your code for the variable name. Find where it’s being set. Change it.