Black Ops III

PlayerLinkToDelta

Attaches the player to an entity. Any entity rotation is added to the player's view, allow the player to look around. The player's eye position will remain fixed relative to the parent entity/tag. Thus, pitching and rolling will cause the player's eye position to move. (But the player entity always remains vertical)

Example:

level.player PlayerLinkToDelta( vehicle, "tag_player", 0.5 )

Parameters

ParameterSummary
*linkto entityThe entity to attach the player to.
[tag]The tag to attach the player to.
[view fraction]How much the change in the tag's rotation effects the players view. Defaults to 0.
[right arc]Angle to clamp view to the right. Defaults to 180.
[left arc]Angle to clamp view to the left. Defaults to 180.
[top arc]Angle to clamp view to the top. Defaults to 180.
[bottom arc]Angle to clamp view to the bottom. Defaults to 180.
[use tag angles]Determines how the player's view will be tilted. 'False' (default) means that the orientation of the tag when the player is linked will appear flat to the player. Any rotation from that orientation will tilt the player's view. 'True' means that only a tag angles of (0,0,0) will appear flat to the player. Any rotation from (0,0,0) will tilt the player's view.
[auto recenter]Players view will auto recenter to the tag he is linked to. use tag angles must be true.

* = mandatory