arma:modeling:damage_tut
Differences
This shows you the differences between two versions of the page.
Next revision | Previous revision | ||
arma:modeling:damage_tut [2008/06/21 09:16] – created damage_tut initial page snakeman | arma:modeling:damage_tut [2024/08/01 09:19] (current) – links added. snakeman | ||
---|---|---|---|
Line 1: | Line 1: | ||
- | ====== Adding Damage | + | ====== Adding Damage |
- | **Adding Damage | + | [[https:// |
+ | |||
+ | **ArmA 1** aka Armed Assault (ArmA) | ||
+ | |||
+ | **Adding Damage | ||
Draft Revision 0 - 18th June 2008 | Draft Revision 0 - 18th June 2008 | ||
Line 14: | Line 18: | ||
What I won't address (until further knowledge); | What I won't address (until further knowledge); | ||
* Level 2 or intermediate damage textures\\ | * Level 2 or intermediate damage textures\\ | ||
- | * Window | + | * Window |
Scope\\ | Scope\\ | ||
* Most if not all ArmA vehicles\\ | * Most if not all ArmA vehicles\\ | ||
* You can edit the P3D file (and have O2 installed)\\ | * You can edit the P3D file (and have O2 installed)\\ | ||
+ | |||
====== Damage Textures ====== | ====== Damage Textures ====== | ||
- | Step 1 - Face selection\\ | + | __**Step 1 - Face selection**__\\ |
* In all your Resolution and XXXX View LODs ensure the WHOLE vehicle is highlighted (ALT-A) in O2 and the whole vehicle is named " | * In all your Resolution and XXXX View LODs ensure the WHOLE vehicle is highlighted (ALT-A) in O2 and the whole vehicle is named " | ||
* If at any time you add to the model, ensure you Redefine " | * If at any time you add to the model, ensure you Redefine " | ||
- | Step 2 - Material definitions\\ | + | __**Step 2 - Material definitions**__\\ |
* In every Resolution and XXXX View LOD ensure every texture you plan to make damaged has a MATERIAL definition\\ | * In every Resolution and XXXX View LOD ensure every texture you plan to make damaged has a MATERIAL definition\\ | ||
* This also typically means each texture will also have a " | * This also typically means each texture will also have a " | ||
Line 37: | Line 42: | ||
* If the texture does not have this, you probably have no choice except to create a Material definition. | * If the texture does not have this, you probably have no choice except to create a Material definition. | ||
- | Step 3 - Destruct RVMATs\\ | + | __**Step 3 - Destruct RVMATs**__\\ |
* Once all textures have been checked / fixed you don't need to re-enter O2\\ | * Once all textures have been checked / fixed you don't need to re-enter O2\\ | ||
* For each texture with a Materials definition you need to know 2 things\\ | * For each texture with a Materials definition you need to know 2 things\\ | ||
- | * (a) the filename | + | * (a) the file name and location of the NOHQ file\\ |
* (b) the dimensions of the texture (eg 1024x512 or 256x256 etc)\\ | * (b) the dimensions of the texture (eg 1024x512 or 256x256 etc)\\ | ||
* Now create a FILENAME_destruct.rvmat for each texture using a copy of below; | * Now create a FILENAME_destruct.rvmat for each texture using a copy of below; | ||
< | < | ||
- | ambient[]={1.0,1.0,1.0,1.0}; | + | ambient[] = {1, |
- | diffuse[]={1.0,1.0,1.0,1.0}; | + | diffuse[] = {1, |
- | forcedDiffuse[]={0.0,0.0,0.0,0.0}; | + | forcedDiffuse[] = {0, |
- | emmisive[]={0.0,0.0,0.0,1.0}; | + | emmisive[] = {0, |
- | specular[]={1.0,1.0,1.0,0.0}; | + | specular[] = {1, |
- | specularPower=40.0; | + | specularPower = 40; |
- | PixelShaderID=" | + | PixelShaderID = " |
- | VertexShaderID=" | + | VertexShaderID = " |
class Stage1 | class Stage1 | ||
{ | { | ||
- | texture=" | + | texture = " |
- | uvSource=" | + | uvSource = " |
- | class uvTransform | + | class uvTransform |
- | { | + | { |
- | aside[]={1.0,0.0,0.0}; | + | aside[] = {1,0,0}; |
- | up[]={0.0,1.0,0.0}; | + | up[] = {0,1,0}; |
- | dir[]={0.0,0.0,0.0}; | + | dir[] = {0,0,0}; |
- | pos[]={0.0,0.0,0.0}; | + | pos[] = {0,0,0}; |
- | }; | + | }; |
}; | }; | ||
class Stage2 | class Stage2 | ||
{ | { | ||
- | texture=" | + | texture = " |
- | uvSource=" | + | uvSource = " |
- | class uvTransform | + | class uvTransform |
- | { | + | { |
- | aside[]={1.0,0.0,0.0}; | + | aside[] = {1,0,0}; |
- | up[]={0.0,1.0,0.0}; | + | up[] = {0,1,0}; |
- | dir[]={0.2,0.0,0.0}; | + | dir[] = {0.2, |
- | pos[]={0.2,0.0,0.0}; | + | pos[] = {0.2, |
- | }; | + | }; |
}; | }; | ||
class Stage3 | class Stage3 | ||
{ | { | ||
- | texture="# | + | texture = "# |
- | uvSource=" | + | uvSource = " |
- | class uvTransform | + | class uvTransform |
- | { | + | { |
- | aside[]={1.0,0.0,0.0}; | + | aside[] = {1,0,0}; |
- | up[]={0.0,1.0,0.0}; | + | up[] = {0,1,0}; |
- | dir[]={0.0,0.0,0.0}; | + | dir[] = {0,0,0}; |
- | pos[]={0.0,0.0,0.0}; | + | pos[] = {0,0,0}; |
- | }; | + | }; |
}; | }; | ||
class Stage4 | class Stage4 | ||
{ | { | ||
- | texture=" | + | texture = " |
- | uvSource=" | + | uvSource = " |
- | class uvTransform | + | class uvTransform |
- | { | + | { |
- | aside[]={1.0,0.0,0.0}; | + | aside[] = {1,0,0}; |
- | up[]={0.0,1.0,0.0}; | + | up[] = {0,1,0}; |
- | dir[]={0.0,0.0,0.0}; | + | dir[] = {0,0,0}; |
- | pos[]={0.0,0.0,0.0}; | + | pos[] = {0,0,0}; |
- | }; | + | }; |
}; | }; | ||
</ | </ | ||
Line 116: | Line 121: | ||
{{ http:// | {{ http:// | ||
- | ====== | + | |
+ | __**Step 4 - CONFIG.CPP**__\\ | ||
* Not proven but likely in each CfgSkeletons you will need to inherit a BIS class, in this example " | * Not proven but likely in each CfgSkeletons you will need to inherit a BIS class, in this example " | ||
Line 123: | Line 129: | ||
class CfgSkeletons | class CfgSkeletons | ||
{ | { | ||
- | | + | class car; |
- | class MyAddonSkeleton: | + | class MyAddonSkeleton: |
- | { | + | { |
- | isDiscrete=1; | + | isDiscrete = 1; |
- | skeletonInherit = ""; | + | skeletonInherit = ""; |
</ | </ | ||
Line 135: | Line 141: | ||
class CfgModels | class CfgModels | ||
{ | { | ||
- | class default{}; | + | class default{}; |
- | class Vehicle: Default | + | class Vehicle: Default |
- | { | + | { |
- | sectionsInherit=""; | + | sectionsInherit = ""; |
- | sections[] = {xxxx, xxxxx, xxxxxx, xxxxxx}; | + | sections[] = {xxxx, xxxxx, xxxxxx, xxxxxx}; |
- | }; | + | }; |
- | + | class Car: Vehicle | |
- | class Car: Vehicle | + | { |
- | { | + | sectionsInherit = " |
- | sectionsInherit=" | + | sections[] = |
- | sections[]= | + | { |
- | {xxxxxx, xxxxx, xxxxx, xxxxx, xxxxxx}; | + | xxxxxx, xxxxx, xxxxx, xxxxx, xxxxxx |
- | }; | + | }; |
- | class MyAddonP3D: Car | + | }; |
- | { | + | class MyAddonP3D: Car |
- | skeletonName = " | + | { |
- | sectionsInherit=" | + | skeletonName = " |
+ | sectionsInherit = " | ||
</ | </ | ||
Line 160: | Line 167: | ||
class CfgVehicles | class CfgVehicles | ||
{ | { | ||
- | class Landrover; | + | class Landrover; |
- | class MyAddon: Landrover | + | class MyAddon: Landrover |
- | { | + | { |
- | ............ | + | ............ |
- | ............ | + | ............ |
- | class Damage | + | class Damage |
- | { | + | { |
- | tex[] = {}; | + | tex[] = {}; |
- | mat[] = { | + | mat[] = { |
- | " | + | " |
- | " | + | " |
- | " | + | " |
- | ............. | + | ............. |
- | ............ | + | ............ |
- | ............. | + | ............. |
- | " | + | " |
- | " | + | " |
- | " | + | " |
- | }; | + | }; |
- | }; | + | }; |
- | ............ | + | ............ |
- | ............ | + | ............ |
</ | </ | ||
Line 189: | Line 196: | ||
* Third definition is FULL damage\\ | * Third definition is FULL damage\\ | ||
* In the example above there is no HALF damage definition, it simply copies the NO damage definition.\\ | * In the example above there is no HALF damage definition, it simply copies the NO damage definition.\\ | ||
- | * For half damage you could experiement | + | * For half damage you could experiment |
With above complete for ever texture, this should now mean that you will see damage on your vehicle. | With above complete for ever texture, this should now mean that you will see damage on your vehicle. | ||
Line 197: | Line 204: | ||
NEXT - Animation - PENDING being written\\ | NEXT - Animation - PENDING being written\\ | ||
- | * Covers HIDING sections of the vehicle once damaged (i.e. unnessisary | + | * Covers HIDING sections of the vehicle once damaged (i.e. unnecessary |
* Also covers animating things like LANDCONTACTs etc | * Also covers animating things like LANDCONTACTs etc | ||
Line 204: | Line 211: | ||
Example Finished Product | Example Finished Product | ||
- | {{ http:// | + | {{ http:// |
Final Note:\\ | Final Note:\\ | ||
Line 210: | Line 217: | ||
Cheers\\ | Cheers\\ | ||
Gnat | Gnat | ||
+ |
arma/modeling/damage_tut.1214039790.txt.gz · Last modified: 2008/06/21 09:16 by snakeman