SetCameraTarget: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
(→‎Syntax: OOP syntax added)
mNo edit summary
Line 1: Line 1:
{{Note|The function already places camera behind the player. No second call or a timer is needed.
{{Note|The function already places camera behind the player. No second call or a timer is needed.
{{Needs Checking|No it doesn't. A timer of no less than 112 ms was required for the rotation to be set.}}}}
{{Needs Checking|No it doesn't. A timer of no less than 112 ms was required for the rotation to be set.{{Note|Yes it does}}}}}}


__NOTOC__
__NOTOC__

Revision as of 16:37, 20 November 2014

[[{{{image}}}|link=|]] Note: The function already places camera behind the player. No second call or a timer is needed.
Dialog-information.png This article needs checking.

Reason(s): No it doesn't. A timer of no less than 112 ms was required for the rotation to be set.
[[{{{image}}}|link=|]] Note: Yes it does


This function allows you to set a player's camera to follow other elements instead. Currently supported element type is:

Syntax

Click to collapse [-]
Server
bool setCameraTarget ( player thePlayer [, player target = nil ] )

OOP Syntax Help! I don't understand this!

Method: player:setCameraTarget(...)
Variable: .cameraTarget
Counterpart: getCameraTarget


Required Arguments

  • thePlayer: The player whose camera you wish to modify.

Optional Arguments

  • target: The player who you want the camera to follow. If none is specified, the camera will target the player.

Note: setCameraTarget will behave strangely if the target you want the camera to follow is inside a vehicle that has hydraulics (upgrade id: 1087) added server sided and if the target is not you.

Click to collapse [-]
Client 1
bool setCameraTarget ( player target )

Required Arguments

  • target: The player who you want the local camera to follow.
ADDED/UPDATED IN VERSION 1.3.1 r5212:
Click to collapse [-]
Client 2
bool setCameraTarget ( float targetX, float targetY, float targetZ )

Required Arguments

  • targetX, targetY, targetZ: The target position that you want the local camera to look at.

Returns

Returns true if the function was successful, false otherwise.

Example

This is an example of how one could implement a spectator function. Using the left and right arrow keys you can view other players. Note that this code isn't complete as it doesn't take into account joining or quitting players.

Click to collapse [-]
Client script
g_Players = getElementsByType("player")        -- get a list of all players in the server
for i,aPlayer in ipairs(g_Players) do          -- find out what index the local player has in the list
    if aPlayer == getLocalPlayer() then
        g_CurrentSpectated = i
        break
    end
end

function spectatePrevious()                    -- decrement the spectate index and spectate the corresponding player
     if g_CurrentSpectated == 1 then
         g_CurrentSpectated = #g_Players
     else
         g_CurrentSpectated = g_CurrentSpectated - 1
     end
    setCameraTarget(g_Players[g_CurrentSpectated])
end

function spectateNext()                        -- increment the spectate index and spectate the corresponding player
     if g_CurrentSpectated == #g_Players then
         g_CurrentSpectated = 1
     else
         g_CurrentSpectated = g_CurrentSpectated + 1
     end
    setCameraTarget(g_Players[g_CurrentSpectated])
end

-- Bind above functions to arrow keys
bindKey("arrow_l", "down", spectatePrevious)
bindKey("arrow_r", "down", spectateNext)

See Also