ACE3/addons/common/functions/fnc_getLightProperties.sqf

33 lines
896 B
Plaintext
Raw Normal View History

/*
* 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>
*
* 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-09-20 23:07:49 +00:00
* Public: Yes
*/
#include "script_component.hpp"
2015-09-20 23:07:49 +00:00
params ["_vehicle", "_light"];
2015-09-20 23:07:49 +00:00
private ["_config", "_intensity", "_position", "_direction", "_innerAngle", "_outerAngle"];
2015-09-20 23:07:49 +00:00
_config = configFile >> "CfgVehicles" >> typeOf _vehicle >> "Reflectors" >> _light;
_intensity = getNumber (_config >> "intensity");
_position = getText (_config >> "position");
_direction = getText (_config >> "direction");
_innerAngle = getNumber (_config >> "innerAngle");
_outerAngle = getNumber (_config >> "outerAngle");
[_intensity, _position, _direction, _innerAngle, _outerAngle]