Difference between Tick() and TickComponent()

​Hi, sorry if i missed that in previous videos, but what’s the main difference between Tick() and TickComponent(). Why don’t we just use default Tick(). Thank you!

TickComponent() is for Actor Components, not Actors.For Actors, you would use Tick(). Yeah, I ran into this issue a few days ago myself when I was trying to create a new Tick() on my 3rd person character and accidentally copied over TickComponent() lol.

Privacy & Terms