setLightConePars: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
m (Some wiki formatting)
m (Text replacement - "(\|[pr][0-9]+ *= *[^- ]*) *- *O([a-z ])" to "$1 - o$2")
Line 14: Line 14:
|s1= lightReflector [[setLightConePars]] [outerAngle, innerAngle, fadeCoef]
|s1= lightReflector [[setLightConePars]] [outerAngle, innerAngle, fadeCoef]


|p1= lightReflector : [[Object]] - Object of class {{hl|#lightreflector}})
|p1= lightReflector : [[Object]] - object of class {{hl|#lightreflector}})


|p2= outerAngle: [[Number]]
|p2= outerAngle: [[Number]]

Revision as of 16:44, 8 November 2023

Hover & click on the images for description

Description

Description:
Sets the lightpoint (directional light #lightreflector)'s cone params.
Groups:
Lights

Syntax

Syntax:
lightReflector setLightConePars [outerAngle, innerAngle, fadeCoef]
Parameters:
lightReflector : Object - object of class #lightreflector)
outerAngle: Number
innerAngle: Number
fadeCoef: Number
Return Value:
Nothing

Examples

Example 1:
_light setLightConePars [90, 45, 1];

Additional Information

See also:
setLightColor setLightAmbient setLightBrightness lightAttachObject lightDetachObject setLightIntensity setLightAttenuation setLightUseFlare setLightFlareSize setLightFlareMaxDistance setLightDayLight setLightIR

Notes

Report bugs on the Feedback Tracker and/or discuss them on the Arma Discord or on the Forums.
Only post proven facts here! Add Note
Waffle SS. - c
Posted on Jul 20, 2022 - 07:26 (UTC)
Responds to SetLightIntensity not SetLightBrightness:
_light = "#lightreflector" createVehicleLocal (player modelToWorld [0,0.5,0]); _light setLightIntensity 3000; _light setLightAmbient [0,1,0]; _light setLightColor [0,1,0]; _light setLightConePars [45, 10, 1];