GetCameraInterior: Difference between revisions
Jump to navigation
Jump to search
(New page: __NOTOC__ {{Client function}} Returns the interior of the local camera (independent of the interior of the local player). ==Syntax== <syntaxhighlight lang="lua"> int getCameraInterior ( ) </syntaxhighlight> ===Requ...) |
m (Format fix) |
||
(14 intermediate revisions by 11 users not shown) | |||
Line 1: | Line 1: | ||
__NOTOC__ | __NOTOC__ | ||
{{ | {{Server client function}} | ||
Returns the interior of the local camera (independent of the interior of the local player). | Returns the interior of the local camera (independent of the interior of the local player). | ||
==Syntax== | ==Procedural== | ||
===Syntax=== | |||
<section name="Server" class="server" show="true"> | |||
<syntaxhighlight lang="lua"> | <syntaxhighlight lang="lua"> | ||
int getCameraInterior ( ) | int getCameraInterior ( player thePlayer ) | ||
</syntaxhighlight> | </syntaxhighlight> | ||
{{OOP||[[player]]:getCameraInterior|cameraInterior|setCameraInterior}} | |||
===Required Arguments=== | ===Required Arguments=== | ||
'' | *'''thePlayer''': The player whose camera interior you want to get. | ||
</section> | |||
<section name="Client" class="client" show="true"> | |||
<syntaxhighlight lang="lua"> | |||
int getCameraInterior ( ) | |||
</syntaxhighlight> | |||
{{OOP||Camera.getInterior|interior|setCameraInterior}} | |||
</section> | |||
===Returns=== | ===Returns=== | ||
Returns the | Returns an ''integer'' indicating the camera's interior, ''false'' if the argument is invalid. | ||
==Example== | ===Example=== | ||
<section name="Server" class="server" show="true"> | |||
<syntaxhighlight lang="lua"> | |||
function outputCameraInterior ( player, command ) | |||
local interior = getCameraInterior ( player ) | |||
outputChatBox ( "The camera is in the interior " .. interior, player, 255, 255, 0 ) | |||
end | |||
addCommandHandler ( "camera", outputCameraInterior ) | |||
</syntaxhighlight> | |||
</section> | |||
{{New items|3.0140|1.4| | |||
==Object-oriented== | |||
===Syntax=== | |||
<section name="Server" class="server" show="true"> | |||
<syntaxhighlight lang="lua"> | |||
int player:getCameraInterior ( ) | |||
-- or | |||
int player.cameraInterior -- to get the camera interior value | |||
player.cameraInterior = int someValue -- to set the camera interior value | |||
</syntaxhighlight> | |||
</section> | |||
<section name="Client" class="client" show="true"> | |||
<syntaxhighlight lang="lua"> | |||
int Camera.getInterior ( ) | |||
</syntaxhighlight> | |||
</section> | |||
Returns an ''integer'' indicating the camera's interior, ''false'' if the argument is invalid. | |||
===Example=== | |||
<section name="Client" class="client" show="true"> | |||
<syntaxhighlight lang="lua"> | |||
function outputCameraInterior ( command ) | |||
local interior = Camera.getInterior ( ) | |||
outputChatBox ( "The camera is in the interior " .. interior, localPlayer, 255, 255, 0 ) | |||
end | |||
addCommandHandler ( "camera", outputCameraInterior ) | |||
</syntaxhighlight> | |||
</section> | |||
}} | |||
==See Also== | ==See Also== | ||
{{Camera functions}} | {{Camera functions}} | ||
[[hu:getCameraInterior]] | |||
[[RO:getCameraInterior]] |
Latest revision as of 17:54, 12 February 2021
Returns the interior of the local camera (independent of the interior of the local player).
Procedural
Syntax
Click to collapse [-]
Serverint getCameraInterior ( player thePlayer )
OOP Syntax Help! I don't understand this!
- Method: player:getCameraInterior(...)
- Variable: .cameraInterior
- Counterpart: setCameraInterior
Required Arguments
- thePlayer: The player whose camera interior you want to get.
Click to collapse [-]
Clientint getCameraInterior ( )
OOP Syntax Help! I don't understand this!
- Method: Camera.getInterior(...)
- Variable: .interior
- Counterpart: setCameraInterior
Returns
Returns an integer indicating the camera's interior, false if the argument is invalid.
Example
Click to collapse [-]
Serverfunction outputCameraInterior ( player, command ) local interior = getCameraInterior ( player ) outputChatBox ( "The camera is in the interior " .. interior, player, 255, 255, 0 ) end addCommandHandler ( "camera", outputCameraInterior )
Object-oriented
Syntax
Click to collapse [-]
Serverint player:getCameraInterior ( ) -- or int player.cameraInterior -- to get the camera interior value player.cameraInterior = int someValue -- to set the camera interior value
Click to collapse [-]
Clientint Camera.getInterior ( )
Returns an integer indicating the camera's interior, false if the argument is invalid.
Example
Click to collapse [-]
Clientfunction outputCameraInterior ( command ) local interior = Camera.getInterior ( ) outputChatBox ( "The camera is in the interior " .. interior, localPlayer, 255, 255, 0 ) end addCommandHandler ( "camera", outputCameraInterior )