there is any way to disable and enable tick of AAIController in RunTime?
Every actor has PrimaryActorTick variable containing tick configuration, here reference to it:
Note that CPU only does things that are actually executed, so if you not spawning hell lot of instances of actor doing nothing on tick should not much different from disabling the tick it self, so if-ing out or return should do the job specially if you want to run tick on specific condition
Thx , .
last time I used SetActorTickEnabled() but I got a crash every time cause that I go with if(boolean) but I try it after your replay and this time it’s worked!
ver very thank full you are always is the first person to replay, really grateful for your time.