Eggbeast – User

From Bohemia Interactive Community
Revision as of 23:29, 18 May 2016 by Killzone Kid (talk | contribs)
Jump to navigation Jump to search

{{Command|= Comments ____________________________________________________________________________________________ | ofp |= Game name |1.00|= Game version |arg= local |= Arguments in MP |eff= global |= Effects in MP ____________________________________________________________________________________________ | Add a light to an object in class cfgvehicles. Each reflector requires a selection in model view LODs (e.g. "L svetlo") for flare. Requires two memory points in memory LOD - light spawn position and direction e.g. position "L svetlo" and direction "konec L svetla". |= Description __________________________________________________________________________________________ |position: [[memorypoint]] - memory point in the vehicle where the light will show |= Parameter 1 ____________________________________________________________________________________________ |x1= <code> class Reflectors { class Left //main landing light { position = "L svetlo"; direction = "konec L svetla"; hitpoint = "L svetlo"; selection = "L svetlo"; color[] = {7000,7500,10000}; //R,G,B ambient[] = {70,75,100}; //R,G,B intensity = 50; size = 1; innerAngle = 15; outerAngle = 65; coneFadeCoef = 10; useFlare = 1; flareSize = 10; flareMaxDistance = 250; dayLight = 0; class Attenuation { start = 0; constant = 0; linear = 1; quadratic = 1; hardLimitStart = 100; hardLimitEnd = 200; }; }; class LG: Left //left door gunner searchlight { position = "LG svetlo"; direction = "konec LG svetla"; hitpoint = "LG svetlo"; selection = "LG svetlo"; }; class Right: Left //right door gunner searchlight { position = "P svetlo"; direction = "konec P svetla"; hitpoint = "P svetlo"; selection = "P svetlo"; }; }; </code> |= Example 1 |x2= <code> example red cabin light in helicopter class Cabin { position = "cabin_light"; direction = "cabin_light_dir"; hitpoint = "cabin_light"; selection = "cabin_light"; color[] = {1000,0,0}; ambient[] = {100,0,0}; intensity = 5; size = 1; innerAngle = 15; outerAngle = 150; coneFadeCoef = 1; useFlare = 1; flareSize = 0.1; flareMaxDistance = 1; dayLight = 0; class Attenuation { start = 0; constant = 0; linear = 1; quadratic = 1; hardLimitStart = 1; hardLimitEnd = 2; }; }; </code> |= Example 2 ____________________________________________________________________________________________ }} <h3 style="display:none">Notes</h3> <dl class="command_description"> <!-- Note Section BEGIN --> <dd class="notedate">Posted on May 18, 2016 - 11:51 <dt class="note">'''[[User:Eggbeast|Eggbeast]]'''<dd class="note">''Notes for Arma 3:'' The memory point you assign to position parameter is where the light source itself will be. <br> The one you put to direction is the way your light will shine. <br> The cone itself is set using innerAngle, outerAngle and coneFadeCoef.<br> innerAngle sets the cone in which the light has it's full intensity.<br> outerAngle sets the cone outside of which the light has zero intensity.<br> coneFadeCoef is a coefficient that describes attenuation of the light between innerAngle and outerAngle. 1 equals linear attenuation, higher or lower value changes it, meaning how sharp/blurred will the edge of the lightcone as a whole be.<br> Note that both the angles represent full angle of the cone, not just "angular offset" from direction of the light. If you set it to 90 degrees, it means the cone is 45 degrees to the "left" and 45 to the "right" of the direction specified by your memory points.<br> as a spot light, reflectors are not made for cones above 180 degrees.<br> Some time ago BIS made changes to the lighting system to allow for higher light variety during night time. One of the effects it had on configs of lights was that you need to set higher intensity than before the change to get the same results.<br> color[] and ambient[] seem to have changed from RGB from 0-1 to way higher values - see example.<br> See also [https://community.bistudio.com/wiki/Arma_3_Cars_Config_Guidelines#Reflectors] <br> (sorry i am crap at formatting these pages, but felt we needed to start on this topic!) <!-- Note Section END --> </dl> <h3 style="display:none">Bottom Section</h3> <!-- CONTINUE Notes --> <dl class="command_description"> <dd class="notedate">Posted on May 18, 2016 - 13:50 (UTC)</dd> <dt class="note">[[User:Eggbeast|Eggbeast]]</dt> <dd class="note"> aggregateReflectors are described here https://manuals.bisimulations.com/vbs3/3-6/devref/Content/Config_Manual/CfgVehicles/A_cpp/cpp_aggregateReflectors.htm </dd> </dl> <!-- DISCONTINUE Notes -->