Custom "tick before Owner" implementing in Pawn blueprint

Hello. I make a custom character movement controller based on “Actor world offset” function. After a while I realized what I need to implement custom “tick before Owner” feature which is present in “FloatingPawnMovement” component. I need make this in my Pawn blueprint, but I dont know how. Without this feature my pawn collision responce sometimes have shaking and other problems. Is it possible to realize in Pawn blueprint? My English is bad.

You can use AddTickPrerequisiteActor() or AddTickPrerequisiteComponent() so make this work. That’s what that flag you mentioned does internally.

Thanks man!