SetCameraInterior: Difference between revisions
Jump to navigation
Jump to search
m (Added example.) |
MaddDogg14 (talk | contribs) m (→Example) |
||
Line 36: | Line 36: | ||
local seted = setCameraInterior( thePlayer, intID ) | local seted = setCameraInterior( thePlayer, intID ) | ||
if( seted )then | if( seted )then | ||
outputChatBox( "Your camera's interior has been | outputChatBox( "Your camera's interior has been set to "..intID, thePlayer ) | ||
else | else | ||
outputChatBox( "Can't change your camera's interior...", thePlayer, 255, 0, 0 ) | outputChatBox( "Can't change your camera's interior...", thePlayer, 255, 0, 0 ) |
Revision as of 11:16, 13 June 2010
Sets the interior of the local camera. Only the interior of the camera is changed, the local player stays in the interior he was in.
Syntax
Click to collapse [-]
Serverbool setCameraInterior ( player thePlayer, int interior )
Required Arguments
- thePlayer: the player whose camera interior will be set.
- interior: the interior to place the camera in.
Click to collapse [-]
Clientbool setCameraInterior ( int interior )
Required Arguments
- interior: the interior to place the camera in.
Returns
Returns true if the camera's interior was changed successfully, false otherwise.
Example
Click to collapse [-]
ServerThis example make a command to change your cam interior to a selected one.
function setCamInt( thePlayer, commandName, intID ) if( intID )then local seted = setCameraInterior( thePlayer, intID ) if( seted )then outputChatBox( "Your camera's interior has been set to "..intID, thePlayer ) else outputChatBox( "Can't change your camera's interior...", thePlayer, 255, 0, 0 ) end else outputChatBox( "Syntax: /caminterior [interiorID] ", thePlayer, 255, 0, 0 ) end end addCommandHandler( "caminterior", setCamInt )
Click to collapse [-]
ClientThis example make a command to change your cam interior to a selected one.
function setCam(thePlayer,command,int) if (int) then local setInt = setCameraInterior(thePlayer,int) if (setInt) then outputChatBox("Your camera's interior has been set to "..int,255,255,0) else outputChatBox("Can't change your camera's interior...",255,0,0) end else outputChatBox("Syntax: /camera [interiorID] ",255,0,0) end end addCommandHandler("camera",setCam)
See Also
- getCamera
- getCameraClip
- getCameraFieldOfView
- getCameraGoggleEffect
- getCameraViewMode
- setCameraClip
- setCameraFieldOfView
- setCameraGoggleEffect
- setCameraViewMode
- Shared
- fadeCamera
- getCameraInterior
- getCameraMatrix
- getCameraTarget
- setCameraInterior
- setCameraMatrix
- setCameraTarget