arma3:terrain:cfgsurfaces
Differences
This shows you the differences between two versions of the page.
Next revision | Previous revision | ||
arma3:terrain:cfgsurfaces [2017/10/08 14:45] – created initial page. snakeman | arma3:terrain:cfgsurfaces [2024/08/02 17:08] (current) – links added. snakeman | ||
---|---|---|---|
Line 1: | Line 1: | ||
====== ArmA 3 CfgSurfaces ====== | ====== ArmA 3 CfgSurfaces ====== | ||
+ | |||
+ | [[https:// | ||
cfgSurfaces adds clutter configuration for ground detail texture (GDT) file names in the data\ directory. We also configure how rough the terrain is, what sound is played when driving/ | cfgSurfaces adds clutter configuration for ground detail texture (GDT) file names in the data\ directory. We also configure how rough the terrain is, what sound is played when driving/ | ||
Line 43: | Line 45: | ||
// etc ... | // etc ... | ||
}; | }; | ||
+ | </ | ||
+ | |||
+ | ===== access ===== | ||
+ | |||
+ | Integer: Determines the manipulability of the class. All bis classes are ReadOnlyVerified and can only be inherited into a new class | ||
+ | <code cpp> | ||
+ | access = 2; //ReadOnly | ||
+ | </ | ||
+ | |||
+ | ===== AIAvoidStance ===== | ||
+ | |||
+ | Integer: Allows restricting the AI from entering prone with two levels of emphasis | ||
+ | <code cpp> | ||
+ | // 0 default | ||
+ | // 1 Less preference for going prone | ||
+ | // 2 Almost never going prone | ||
+ | AIAvoidStance = 0; | ||
+ | </ | ||
+ | |||
+ | ===== character ===== | ||
+ | |||
+ | String: Points to a corresponding CfgSurfaceCharacters entry, which defines the clutter on this surface. | ||
+ | <code cpp> | ||
+ | character = " | ||
+ | character = " | ||
+ | </ | ||
+ | |||
+ | ===== dust ===== | ||
+ | |||
+ | Float: Amount of dust vehicles will create on this surface (higher value = more dust) | ||
+ | <code cpp> | ||
+ | dust = 0.75; // High amount of dust, used for GdtStratisDryGrass | ||
+ | dust = 0.05; // Almost no dust, used for GdtConcrete | ||
+ | </ | ||
+ | |||
+ | ===== files ===== | ||
+ | |||
+ | String: Defines which ground texture and roadway texture filenames this surface will apply to | ||
+ | <code cpp> | ||
+ | files = " | ||
+ | files = " | ||
+ | </ | ||
+ | |||
+ | ===== friction ===== | ||
+ | |||
+ | float: unknown | ||
+ | <code cpp> | ||
+ | friction = 0.9; | ||
+ | </ | ||
+ | |||
+ | ===== grassCover ===== | ||
+ | |||
+ | Float: Used to simulate grass cover at a distance by sinking the target into the ground (higher value = more sinking) | ||
+ | <code cpp> | ||
+ | grassCover = 0; // Used by GdtStratisConcrete, | ||
+ | grassCover = 0.05; // Used by GdtStratisGreenGrass, | ||
+ | </ | ||
+ | |||
+ | ===== impact ===== | ||
+ | |||
+ | String: Defines what particle effect is shown when the surface is hit by a bullet, points to a corresponding entry in CfgAmmo | ||
+ | <code cpp> | ||
+ | impact = " | ||
+ | impact = " | ||
+ | </ | ||
+ | |||
+ | ===== isWater ===== | ||
+ | |||
+ | Integer: Declares whether the surface is water | ||
+ | <code cpp> | ||
+ | isWater = 1; // Used by SurfWater, declares the surface as water | ||
+ | isWater = 0; // Used by Default, declares the surface is not water | ||
+ | </ | ||
+ | |||
+ | ===== lucidity ===== | ||
+ | |||
+ | Float: Unknown | ||
+ | <code cpp> | ||
+ | lucidity = 0.3; // Used by GdtStratisConcrete | ||
+ | lucidity = 3.5; // Used by GdtStratisForestPine | ||
+ | lucidity = 150; // Used by GdtStratisSeabed | ||
+ | </ | ||
+ | |||
+ | ===== maxClutterColoringCoef ===== | ||
+ | |||
+ | Float: Defines the color coefficient on that surface | ||
+ | <code cpp> | ||
+ | maxClutterColoringCoef = 1.35; // Used by GdtStratisConcrete | ||
+ | maxClutterColoringCoef = 1.5; // Used by GdtBeach | ||
+ | </ | ||
+ | |||
+ | ===== maxSpeedCoef ===== | ||
+ | |||
+ | Float: Defines the maximum speed coefficient on that surface | ||
+ | <code cpp> | ||
+ | maxSpeedCoef = 1; // Used by GdtStratisConcrete, | ||
+ | maxSpeedCoef = 0.9; // Used by GdtStratisGreenGrass, | ||
+ | maxSpeedCoef = 0.8; // Used by GdtStratisForestPine, | ||
+ | </ | ||
+ | |||
+ | ===== restitution ===== | ||
+ | |||
+ | Float: | ||
+ | <code cpp> | ||
+ | restitution= 0; //Used by every surface | ||
+ | </ | ||
+ | |||
+ | ===== rough ===== | ||
+ | |||
+ | Float: | ||
+ | <code cpp> | ||
+ | rough = 0.05; // Used by GdtStratisConcrete, | ||
+ | rough = 0.15; // Used by GdtMud, fairly bumpy | ||
+ | </ | ||
+ | |||
+ | ===== soundEnviron ===== | ||
+ | |||
+ | String: | ||
+ | <code cpp> | ||
+ | soundEnviron = " | ||
+ | soundEnviron = " | ||
+ | soundEnviron = " | ||
+ | </ | ||
+ | This value also determines the sound for footsteps inside of a building corresponding for the roadway LOD. It is important to use corresponding textures for surfaces that are indoors or outdoors, as it has an effect on the sound when firing weapons on that surface. | ||
+ | |||
+ | ===== soundHit ===== | ||
+ | |||
+ | String: | ||
+ | <code cpp> | ||
+ | soundHit = " | ||
+ | soundHit = " | ||
+ | </ | ||
+ | |||
+ | ===== surfaceFriction ===== | ||
+ | |||
+ | Float: Defines the surface friction on this surface (lower value = more friction) | ||
+ | <code cpp> | ||
+ | surfaceFriction = 2.5; // Used by SurfRoadTarmac, | ||
+ | surfaceFriction = 2; // Used by SurfRoadConcrete, | ||
+ | surfaceFriction = 1.8; // Used by GdtDirt, below average surface friction value | ||
+ | surfaceFriction = 1.5; // Used by GdtMarsh, low end of surface friction values | ||
+ | </ | ||
+ | |||
+ | ===== tracksAlpha ===== | ||
+ | |||
+ | Integer: Defines the alpha value of vehicle tracks | ||
+ | <code cpp> | ||
+ | tracksAlpha = 1; // Default value used by all surfaces | ||
+ | </ | ||
+ | |||
+ | ===== transparency ===== | ||
+ | |||
+ | Integer: Unknown | ||
+ | <code cpp> | ||
+ | transparency = -1; // Default value used by all surfaces | ||
</ | </ | ||
See also [[clutter-buldozer-and-you# | See also [[clutter-buldozer-and-you# | ||
+ |
arma3/terrain/cfgsurfaces.1507473930.txt.gz · Last modified: 2017/10/08 14:45 by snakeman