Scripting/Squirrel/Functions/SetSpawnCameraPos: 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>SetSpawnCameraPos( x, y, z );</pre> <source lang=squirrel> function onScriptLoad() { SetSpawnCameraPos( -923.6366, 1039.8380, 11.0848 ); } </source>") |
No edit summary |
||
Line 1: | Line 1: | ||
== Syntax == | |||
<pre>SetSpawnCameraPos( x, y, z );</pre> | <pre>SetSpawnCameraPos( x, y, z );</pre> | ||
== Example == | |||
<source lang=squirrel> | <source lang=squirrel> | ||
function onScriptLoad() | function onScriptLoad() |
Revision as of 13:40, 26 July 2014
Syntax
SetSpawnCameraPos( x, y, z );
Example
function onScriptLoad()
{
SetSpawnCameraPos( -923.6366, 1039.8380, 11.0848 );
}