-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Port faces component from legacy mod (#205)
- Loading branch information
Showing
5 changed files
with
91 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
z\afm\addons\faces |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,56 @@ | ||
|
||
class CfgFaces { | ||
class Default; | ||
class Man_A3: Default | ||
{ | ||
class Default; | ||
class GreekHead_A3_01; | ||
|
||
class Nikos: GreekHead_A3_01 | ||
{ | ||
disabled = 0; | ||
}; | ||
class Miller: Default | ||
{ | ||
disabled = 0; | ||
}; | ||
class Kerry: Default | ||
{ | ||
disabled = 0; | ||
}; | ||
class IG_Leader: Default | ||
{ | ||
disabled = 0; | ||
}; | ||
class O_Colonel: Default | ||
{ | ||
disabled = 0; | ||
}; | ||
class Jay: Default | ||
{ | ||
disabled = 0; | ||
}; | ||
class Ivan: Default | ||
{ | ||
disabled = 0; | ||
}; | ||
class Pettka: Default | ||
{ | ||
disabled = 0; | ||
}; | ||
class Dwarden: Default | ||
{ | ||
disabled = 0; | ||
}; | ||
class Hladas: Default | ||
{ | ||
disabled = 0; | ||
}; | ||
|
||
class TanoanHead_A3_01; | ||
class TanoanBossHead: TanoanHead_A3_01 | ||
{ | ||
disabled = 0; | ||
}; | ||
}; | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
# Faces | ||
|
||
Enables disabled faces from vanilla. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
#include "script_component.hpp" | ||
|
||
class CfgPatches { | ||
class ADDON { | ||
name = COMPONENT_NAME; | ||
units[] = {}; | ||
weapons[] = {}; | ||
requiredVersion = REQUIRED_VERSION; | ||
requiredAddons[] = { | ||
"A3_Data_F_Tank_Loadorder" | ||
}; | ||
author = "veteran29"; | ||
VERSION_CONFIG; | ||
}; | ||
}; | ||
|
||
#include "CfgFaces.hpp" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
#define COMPONENT faces | ||
#include "\z\afm\addons\main\script_mod.hpp" | ||
|
||
// #define DEBUG_MODE_FULL | ||
// #define DISABLE_COMPILE_CACHE | ||
|
||
#ifdef DEBUG_ENABLED_FACES | ||
#define DEBUG_MODE_FULL | ||
#endif | ||
#ifdef DEBUG_SETTINGS_FACES | ||
#define DEBUG_SETTINGS DEBUG_SETTINGS_FACES | ||
#endif | ||
|
||
#include "\z\afm\addons\main\script_macros.hpp" |