arma2:config:custom_face
Differences
This shows you the differences between two versions of the page.
Next revision | Previous revision | ||
arma2:config:custom_face [2010/08/23 16:51] – created custom_face initial page. snakeman | arma2:config:custom_face [2024/08/01 17:02] (current) – links added. snakeman | ||
---|---|---|---|
Line 1: | Line 1: | ||
====== ArmA 2 Custom Face ====== | ====== ArmA 2 Custom Face ====== | ||
+ | |||
+ | [[https:// | ||
**ArmA 2 Custom Face** | **ArmA 2 Custom Face** | ||
Line 120: | Line 122: | ||
</ | </ | ||
- | PMCTODO | + | |
+ | ====== CfgFaces ====== | ||
+ | |||
+ | ArmA 2 CfgFaces | ||
+ | |||
+ | Used in conjunction with setFace. | ||
+ | <code cpp> | ||
+ | person SetFace " | ||
+ | |||
+ | this SetFace " | ||
+ | soldier1 SetFace " | ||
+ | </ | ||
+ | |||
+ | " | ||
+ | |||
+ | A subset of 6 Camo faces are available for each of above. | ||
+ | |||
+ | The full set of class names for " | ||
+ | |||
+ | Face77, Face77_camo1, | ||
+ | |||
+ | |||
+ | ====== Structure ====== | ||
+ | |||
+ | <code cpp> | ||
+ | class CfgFaces | ||
+ | { | ||
+ | class Default; // held in engine' | ||
+ | class Man: Default | ||
+ | { | ||
+ | class Default; // held in ca_chars | ||
+ | class FaceWhatever: | ||
+ | { | ||
+ | name = " | ||
+ | texture = " | ||
+ | head = defaultHead; | ||
+ | material = " | ||
+ | disabled = false; // always TRUE for inherited camo faces | ||
+ | }; | ||
+ | |||
+ | class OneOfSixCamos: | ||
+ | { | ||
+ | /* uses the same face texture (obviously) */ | ||
+ | disabled = true; // always | ||
+ | name = " | ||
+ | head = " | ||
+ | material = " | ||
+ | } | ||
+ | </ | ||
+ | |||
+ | One single head model is used for ALL faces. On which, a different base texture is applied for EVERY ' | ||
+ | |||
+ | Separately, each of these faces have different face paint, and they, require a separate head class to reflect the different wound appearances. | ||
+ | |||
+ | ALL of the camo derivatives use one of six common face paints. | ||
+ | |||
+ | Specifying \root and .paa extension are essential. | ||
+ | |||
+ | head = inevitably leads to one, single, defaultp3d held in \ca\characters\man\defaulthead\defaulthead.p3d; | ||
+ | |||
+ | |||
+ | ====== Subset themes ====== | ||
+ | |||
+ | The above 107 faces are duplicated, class wise in black and green masks also a women models, and, a few face models for some special US soldiers. | ||
+ | |||
+ | |||
+ | ====== Adding a Face ====== | ||
+ | |||
+ | Camouflage subclasses are not required. | ||
+ | <code cpp> | ||
+ | class CfgFaces | ||
+ | { | ||
+ | class Default; // held in engine' | ||
+ | class Man: Default | ||
+ | { | ||
+ | class Default; // held in ca_chars | ||
+ | class FaceWhatever: | ||
+ | { | ||
+ | disabled = false; // should be part of default, but was overlooked | ||
+ | |||
+ | name = " | ||
+ | texture = " | ||
+ | identityTypes[] = | ||
+ | { | ||
+ | " | ||
+ | " | ||
+ | " | ||
+ | "", | ||
+ | "", | ||
+ | " | ||
+ | " | ||
+ | "", | ||
+ | " | ||
+ | " | ||
+ | "" | ||
+ | }; | ||
+ | }; | ||
+ | </ | ||
+ | |||
+ | |||
+ | ====== Example African (black) Faces ====== | ||
+ | |||
+ | African black faces for characters | ||
+ | |||
+ | African names: | ||
+ | <code cpp> | ||
+ | class CfgWorlds | ||
+ | { | ||
+ | class GenericNames | ||
+ | { | ||
+ | class PMC_Somali_Names | ||
+ | { | ||
+ | class FirstNames | ||
+ | { | ||
+ | adalberto = " | ||
+ | //etc | ||
+ | }; | ||
+ | class LastNames | ||
+ | { | ||
+ | morales = " | ||
+ | // etc | ||
+ | </ | ||
+ | |||
+ | Face configs: | ||
+ | <code cpp> | ||
+ | class CfgFaces | ||
+ | { | ||
+ | class Man; | ||
+ | class PMC_Somali_Faces: | ||
+ | { | ||
+ | class Default | ||
+ | { | ||
+ | name = " | ||
+ | texture = " | ||
+ | head = " | ||
+ | identityTypes[] = {}; | ||
+ | material = " | ||
+ | }; | ||
+ | class Custom: Default | ||
+ | { | ||
+ | name = " | ||
+ | texture = "# | ||
+ | head = " | ||
+ | identityTypes[] = {}; | ||
+ | material = " | ||
+ | }; | ||
+ | class Face26: Default | ||
+ | { | ||
+ | name = " | ||
+ | texture = " | ||
+ | disabled = 0; | ||
+ | identityTypes[] = {" | ||
+ | }; | ||
+ | class Face27: Default | ||
+ | { | ||
+ | name = " | ||
+ | texture = " | ||
+ | disabled = 0; | ||
+ | identityTypes[] = {" | ||
+ | }; | ||
+ | // etc | ||
+ | </ | ||
+ | |||
+ | Then in character' | ||
+ | <code cpp> | ||
+ | genericNames = " | ||
+ | faceType = " | ||
+ | </ |
arma2/config/custom_face.1282582319.txt.gz · Last modified: 2010/08/23 16:51 (external edit)