How to create destroyable wheels: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
No edit summary
(Some wiki formatting + categories)
 
(5 intermediate revisions by 3 users not shown)
Line 1: Line 1:
===The Principle===
{{TOC|side}}
=== The Principle ===
 
The model already contains the destroyed wheels, but they are hidden with animations. These animations uses the damage value of hitpoints to switch the wheels when needed.
The model already contains the destroyed wheels, but they are hidden with animations. These animations uses the damage value of hitpoints to switch the wheels when needed.


===Prepare the model===
=== Prepare the model ===
 
In the case of wheels it makes sense to create an extra model for a destroyed wheel. This way you are able to implement the destroyed wheels in the original model via proxies which reference to the destroyed wheel model. It doesn't need to be done via proxies though. Now, you just need to create named selections for every wheel and for every destroyed wheel. The normal wheels are called "wheel_x_x_hide" and the destroyed ones "wheel_x_x_unhide" in this tutorial.  
In the case of wheels it makes sense to create an extra model for a destroyed wheel. This way you are able to implement the destroyed wheels in the original model via proxies which reference to the destroyed wheel model. It doesn't need to be done via proxies though. Now, you just need to create named selections for every wheel and for every destroyed wheel. The normal wheels are called "wheel_x_x_hide" and the destroyed ones "wheel_x_x_unhide" in this tutorial.  


===The Animations===
=== The Animations ===
 
You should have some basic knowledge about animations and [[Model_Config|model.cfg]] as this is not covered here.
You should have some basic knowledge about animations and [[Model_Config|model.cfg]] as this is not covered here.


The following class is an example animation that makes the destroyed wheel visible:
The following class is an example animation that makes the destroyed wheel visible:
class wheel_1_1_destruct_unhide
<syntaxhighlight lang="cpp">
{
class wheel_1_1_destruct_unhide
    type="hide";
{
    source="HitLFWheel";
type = "hide";
    selection="wheel_1_1_unhide";
source = "HitLFWheel";
    minValue = -1;
sourceAddress = "mirror";
    maxValue = 0;
selection = "wheel_1_1_unhide";
    minPhase = -1;
minValue = -1;
    maxPhase = 0;
maxValue = 0;
    hideValue = 0.010000;
minPhase = -1;
};
maxPhase = 0;
hideValue = 0.010000;
};
</syntaxhighlight>


The animation that hides the undestroyed wheel looks like this:
The animation that hides the undestroyed wheel looks like this:
class wheel_1_1_destruct
<syntaxhighlight lang="cpp">
{
class wheel_1_1_destruct
    type="hide";
{
    source="HitLFWheel";
type = "hide";
    selection="wheel_1_1_hide";
source = "HitLFWheel";
    minValue = 0;
selection = "wheel_1_1_hide";
    maxValue = 1;
minValue = 0;
    minPhase = 0;
maxValue = 1;
    maxPhase = 1;
minPhase = 0;
    hideValue = 0.990000;
maxPhase = 1;
};
hideValue = 0.990000;
};
</syntaxhighlight>


Make sure that the sum of the hideValues of two corresponding anims is 1, so the switch happens at the same time.
Make sure that the sum of the hideValues of two corresponding anims is 1, so the switch happens at the same time.


===Animation sources===
=== Animation sources ===
 
The animationsource used in the previous section is a custom one which needs to be defined in the config of the vehicle:
The animationsource used in the previous section is a custom one which needs to be defined in the config of the vehicle:
<syntaxhighlight lang="cpp">
class AnimationSources
{
class HitLFWheel
{
source = "Hit";
hitpoint = "HitLFWheel";
raw = 1;
};
};
</syntaxhighlight>


class AnimationSources
The hitpoint entry refers to the hitpoints defined in the vehicle config, e.g.
{
<syntaxhighlight lang="cpp">
  class HitLFWheel
class HitLFWheel
  {
{
    source = "Hit";
armor = 0.15;
    hitpoint = "HitLFWheel";
material = -1;
    raw = 1;
name = "wheel_1_1_steering";
  };
visual = "";
};
passThrough = 0.3;
};
</syntaxhighlight>


The hitpoint entry refers to the hitpoints defined in the vehicle config, e.g.


class HitLFWheel
{{GameCategory|arma1|Addon Editing}}
{
{{GameCategory|arma2|Editing}}
    armor = 0.15;
{{GameCategory|arma3|Editing}}
    material = -1;
    name = "wheel_1_1_steering";
    visual = "";
    passThrough = 0.3;
};

Latest revision as of 03:10, 30 October 2021

The Principle

The model already contains the destroyed wheels, but they are hidden with animations. These animations uses the damage value of hitpoints to switch the wheels when needed.

Prepare the model

In the case of wheels it makes sense to create an extra model for a destroyed wheel. This way you are able to implement the destroyed wheels in the original model via proxies which reference to the destroyed wheel model. It doesn't need to be done via proxies though. Now, you just need to create named selections for every wheel and for every destroyed wheel. The normal wheels are called "wheel_x_x_hide" and the destroyed ones "wheel_x_x_unhide" in this tutorial.

The Animations

You should have some basic knowledge about animations and model.cfg as this is not covered here.

The following class is an example animation that makes the destroyed wheel visible:

class wheel_1_1_destruct_unhide
{
	type = "hide";
	source = "HitLFWheel";
	sourceAddress = "mirror";
	selection = "wheel_1_1_unhide";
	minValue = -1;
	maxValue = 0;
	minPhase = -1;
	maxPhase = 0;
	hideValue = 0.010000;
};

The animation that hides the undestroyed wheel looks like this:

class wheel_1_1_destruct
{
	type = "hide";
	source = "HitLFWheel";
	selection = "wheel_1_1_hide";
	minValue = 0;
	maxValue = 1;
	minPhase = 0;
	maxPhase = 1;
	hideValue = 0.990000;
};

Make sure that the sum of the hideValues of two corresponding anims is 1, so the switch happens at the same time.

Animation sources

The animationsource used in the previous section is a custom one which needs to be defined in the config of the vehicle:

class AnimationSources
{
	class HitLFWheel
	{
		source = "Hit";
		hitpoint = "HitLFWheel";
		raw = 1;
	};
};

The hitpoint entry refers to the hitpoints defined in the vehicle config, e.g.

class HitLFWheel
{
	armor = 0.15;
	material = -1;
	name = "wheel_1_1_steering";
	visual = "";
	passThrough = 0.3;
};