Scripting/Squirrel/Functions/SetSpawnCameraLook: Difference between revisions
Jump to navigation
Jump to search
This wiki is using an old backup from 2020
Some information may be old/missing
(Created page with "<pre>SetSpawnCameraLook( x, y, z );</pre> <source lang=squirrel> function onScriptLoad() { SetSpawnCameraLook( -924.1487, 1048.4241, 13.2005 ); } </source>") |
No edit summary |
||
Line 1: | Line 1: | ||
== Syntax == | |||
<pre>SetSpawnCameraLook( x, y, z );</pre> | <pre>SetSpawnCameraLook( x, y, z );</pre> | ||
== Example == | |||
<source lang=squirrel> | <source lang=squirrel> | ||
function onScriptLoad() | function onScriptLoad() |
Revision as of 13:41, 26 July 2014
Syntax
SetSpawnCameraLook( x, y, z );
Example
function onScriptLoad()
{
SetSpawnCameraLook( -924.1487, 1048.4241, 13.2005 );
}