Tick in Editor on UActorComponent

Hey all,

I’m trying to figure out if there’s a way to call the tick function on a UActorComponent while in the Editor? I know that on an AActor, you can override ShouldTickIfViewportsOnly to return true, but this method doesn’t exist on UActorComponents.

There is a bTickInEditor flag in ActorComponent. It should help.

That does the trick, thanks