2015-04-07 13:43:23 +00:00
|
|
|
/*
|
|
|
|
* Author: commy2
|
|
|
|
* Read properties of given vehicles light.
|
|
|
|
*
|
|
|
|
* Arguments:
|
2015-09-20 23:07:49 +00:00
|
|
|
* 0: Object with lights <OBJECT>
|
|
|
|
* 1: Light classname <STRING>
|
2015-04-07 13:43:23 +00:00
|
|
|
*
|
|
|
|
* Return Value:
|
2015-09-20 23:07:49 +00:00
|
|
|
* 0: Light intensity <NUMBER>
|
|
|
|
* 1: Light position <STRING>
|
|
|
|
* 2: Light direction <STRING>
|
|
|
|
* 3: Light inner angle <NUMBER>
|
|
|
|
* 4: Light outer angle <NUMBER>
|
2015-04-07 13:43:23 +00:00
|
|
|
*
|
2015-09-20 23:07:49 +00:00
|
|
|
* Public: Yes
|
2015-04-07 13:43:23 +00:00
|
|
|
*/
|
|
|
|
#include "script_component.hpp"
|
|
|
|
|
2015-09-20 23:07:49 +00:00
|
|
|
params ["_vehicle", "_light"];
|
2015-04-07 13:43:23 +00:00
|
|
|
|
2015-09-20 23:07:49 +00:00
|
|
|
private ["_config", "_intensity", "_position", "_direction", "_innerAngle", "_outerAngle"];
|
2015-04-07 13:43:23 +00:00
|
|
|
|
2015-09-20 23:07:49 +00:00
|
|
|
_config = configFile >> "CfgVehicles" >> typeOf _vehicle >> "Reflectors" >> _light;
|
2015-04-07 13:43:23 +00:00
|
|
|
|
|
|
|
_intensity = getNumber (_config >> "intensity");
|
2015-04-07 16:54:53 +00:00
|
|
|
_position = getText (_config >> "position");
|
|
|
|
_direction = getText (_config >> "direction");
|
2015-04-07 13:43:23 +00:00
|
|
|
_innerAngle = getNumber (_config >> "innerAngle");
|
|
|
|
_outerAngle = getNumber (_config >> "outerAngle");
|
|
|
|
|
|
|
|
[_intensity, _position, _direction, _innerAngle, _outerAngle]
|