Hi,I want to know what’s the difference between these two function.And if i teleport a player in a multiplayer game(network state) do i always run these two functions on the server?Thanks very much!
1 Like
- If the actor doesn’t fit exactly at the location specified, tries to slightly move it out of walls, unless if
NoCheck
istrue
. - If the actor cannot fit, it will not teleport, and the function will return false.
- Move the actor instantly to the specified location.
3 Likes
Wow,Thank you very much!