1. Is there a practical way to make a player look at something? such as birds eye view of the cargo plane.
    Such as like this.
    jwaukg.png
     
  2. Only thing I can think of is a cut scene
     
  3. Is that something we can actually do?
     
  4. If you have unity-pro, you can create a plane with a video texture that plays, or you can script/animate an in-game cutscene.
    Video texture documentation
    Making In-Engine Cutscenes (the 3D platformer tutorial has info on this toward the end, it tells you how to script camera changes, and make animations for the different game objects)
    Hope that helped!
     
  5. Hmm i mean i think that would work normally for unity, but i don't think we can do that with rust i could be wrong.
     
  6. You would need to look into but its something I have never seen in rust if you do you would be the first server with it
     
  7. Wulf

    Wulf Community Admin

    You should be able to change the player's position and rotation (this being key) to look down toward the ground.

    player.transform.postion = X
    player.transform.rotation = X
     
  8. To get a player to float though they'd need noclip right?
     
  9. Wulf

    Wulf Community Admin

    Look at plugins like HeliRide, see it's handled in there.
     
  10. Oh did they remove executing commands on the client in the latest patch?
     
  11. Wulf

    Wulf Community Admin

    Many were blocked, yes.
     
  12. Is parenting the player a bad idea?