the pde does not tell me or give me a list of unused variables declared but not used anywhere
can i get this somehow when i run the sketch.
it tells me if there is a variable it can’t find but i wanna know if i have ones i am not using and forgot to delete
Which version of Processing are you running? I use 3.3.6 and it shows yellow marks on the right side at every point where a variable is declared but not used. I’m not 100% sure if it works everywhere but I know for sure that variables like these:
void aFunction(int thisone) {
println("i dont need any variables");
}