SetActorLocation, AddMovementInput both not working.
AddMovementInput is work only in character.
i want to move “Actor” and “Pawn”
i don’t know even why character moving.
what’s different between pawn and character?
SetActorLocation, AddMovementInput both not working.
AddMovementInput is work only in character.
i want to move “Actor” and “Pawn”
i don’t know even why character moving.
what’s different between pawn and character?
SetActorLocation will only move actor if actor’s root component exists, it’s movable and there nothing blocking target destination, as what SetActorLocation do is moves the root component as engine source code suggests
SetActorLocation should always work and on anything as long as above conditions are met, check what SetActorLocation return, if it will fail to move it will return false.
the root component. i understand. Thank you.