OFPEC Forum
Addons & Mods Depot => OFP - Addons & Mods General => Topic started by: MGS on 23 Dec 2002, 20:59:53
-
what are the red tracer color numbers for the config.cpp. i know what blue is but i want to know what a very red tracer is.
//colour of the bullet's tracer and trail {Red,Green,Blue,Alpha} (thanks dreaming_adam). This example is a very visible blue tracer
tracerColor[]={0.000000,0.000000,1.000000,1.000000};
tracerColorR[]={0.000000,0.000000,1.000000,1.000000};
How do i make red. i dont understand this yet. :-\
-
tracerColor[]={1.000000,0.000000,0.000000,1.000000};
This line would make a very visible Red tracer, the 4 numbers each control the amount of each color mixed to make the tracer's color, and Alpha controls how transparent the tracer is.