The amount of every tick actions I am using is starting to pile up. I doubt I am anywhere near a noticeable amount yet, but down the road who know. So I was hoping to start fixing it now before it's a big problem.
As of now I have a few layers, while one is visible the other layers are invisible.
Would it be helpful if I put an every tick for each layer instead of one that is overarching.
Example
Every Tick
Layer 1 is Visible -> (Do X Actions)
Every Tick
Layer 2 is Visible -> (Do Y Actions)
Would this save the program from reading each X action if layer 1 is invisible? Would it help?
it will not
but if i was in your place i will do :
Every Tick
> if Layer 1 is Visible -> (Do X Actions)
> if Layer 2 is Visible -> (Do Y Actions)