SetSearchLightStartRadius: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
(Documented function introduced in r7683)
 
m (fix oop)
Line 7: Line 7:
searchlight setSearchLightStartRadius ( searchlight theSearchlight, float startRadius )
searchlight setSearchLightStartRadius ( searchlight theSearchlight, float startRadius )
</syntaxhighlight>
</syntaxhighlight>
{{OOP||[[Element/Searchlight|SearchLight]]:setStartRadius|startRadius|getSearchLightStartRadius}}
{{OOP||[[Element/Searchlight|searchLight]]:setStartRadius|startRadius|getSearchLightStartRadius}}


===Required Arguments===
===Required Arguments===

Revision as of 18:52, 11 January 2016

This function sets the start radius of a searchlight element.

Syntax

searchlight setSearchLightStartRadius ( searchlight theSearchlight, float startRadius )

OOP Syntax Help! I don't understand this!

Method: searchLight:setStartRadius(...)
Variable: .startRadius
Counterpart: getSearchLightStartRadius


Required Arguments

  • theSearchLight: the searchlight to modify the property of.
  • startRadius: the radius of the searchlight's light cone in its beginning.

Returns

If every argument is correct, this function returns true. If not, it will return false plus an error message.

Example

-- TODO

See also