CameraMode (Property): Difference between revisions

From Legacy Roblox Wiki
Jump to navigationJump to search
>Tenal
No edit summary
m Text replacement - "<SyntaxHighlight code="lua">" to "<syntaxhighlight lang="lua">"
 
(43 intermediate revisions by 6 users not shown)
Line 1: Line 1:
{{CatUp|Properties}}
{{Local}}
 
<onlyinclude>{{Property
<onlyinclude>{{Property|
|name = CameraMode
name = CameraMode
|type = [[CameraMode_(Enum)|CameraMode]]
|property = [[CameraMode (Enum)|CameraMode]] ''mode''
|description = Changes mode of camera - either first/third person or first person only
|description = Changes mode of camera - either first/third person or first person only
|object = Player
|object = Player
|}}</onlyinclude>
|}}</onlyinclude>
{{clear floats}}
{{clear floats}}
==Example==
This code, put in a {{type|instance=LocalScript}}, would lock the camera of the player it is running for to [[first person]].
<syntaxhighlight lang="lua">
game:GetService('Players').LocalPlayer.CameraMode = Enum.CameraMode.LockFirstPerson
</syntaxhighlight>


[[Category:Properties]]
[[Category:Properties]]
== External links ==
*[https://en.wikipedia.org/wiki/First-person_%28video_games%29 Wikipedia: First-person (video games)]

Latest revision as of 05:04, 27 April 2023

Local: This item should be used with a LocalScript in order to work as expected in online mode.
CameraMode
Type CameraMode
Description Changes mode of camera - either first/third person or first person only
Member of Player

Example

This code, put in a LocalScript, would lock the camera of the player it is running for to first person.

game:GetService('Players').LocalPlayer.CameraMode = Enum.CameraMode.LockFirstPerson

External links