ofp:modeling:animations
Differences
This shows you the differences between two versions of the page.
Next revision | Previous revision | ||
ofp:modeling:animations [2007/07/04 19:25] – created animations initial page snakeman | ofp:modeling:animations [2024/07/31 15:30] (current) – links added. snakeman | ||
---|---|---|---|
Line 1: | Line 1: | ||
- | ====== Animations ====== | + | ====== |
- | {{ http://tactical.nekromantix.com/images/wiki/ | + | [[https://www.pmctactical.org/forum/viewforum.php? |
- | This articles talks about simple, single-p3d animations, where parts of a model rotate around an axis (like a car door, or a tank turret). | + | **Operation Flashpoint |
- | Complex animations for soldier' | + | {{ https://pmc.editing.wiki/ |
- | To create a model animations, these are the requirements: | + | This articles talks about simple, single-p3d animations, where parts of a model rotate around an axis (like a car door, or a tank turret). |
+ | |||
+ | Complex animations for soldier' | ||
+ | |||
+ | To create a model animations, these are the requirements: | ||
Create the movable object in the ResolutionLOD and give it a name. | Create the movable object in the ResolutionLOD and give it a name. | ||
If the animation would affect the ( Fire) GeometryLOD, | If the animation would affect the ( Fire) GeometryLOD, | ||
In the MemoryLOD define the rotational axis via two vertexes. Select both of those points and give them a name. | In the MemoryLOD define the rotational axis via two vertexes. Select both of those points and give them a name. | ||
- | Still in the MemoryLOD create a single vertex (this will be the ' | + | Still in the MemoryLOD create a single vertex (this will be the ' |
In the Config.cpp for your model you need to define two classes: Animations & UserActions. | In the Config.cpp for your model you need to define two classes: Animations & UserActions. | ||
- | The Animations class defines how the object moves, and the UserActions class defines when it moves. | + | The Animations class defines how the object moves, and the UserActions class defines when it moves. |
The following example is for an object that has been named ' | The following example is for an object that has been named ' | ||
- | < | + | < |
class Animations | class Animations | ||
{ | { | ||
- | | + | class MoveDoor |
- | { | + | { |
- | type=" | + | type=" |
- | animPeriod=1; | + | animPeriod = 1; // how long it takes for the movevement to finish |
- | selection=" | + | selection = " |
- | axis=" | + | axis = "door axis"; // the name of the axis |
- | angle0=0 // the start angle | + | angle0 = 0; // the start angle |
- | angle1=-2.0; // the end angle, in radians (= degrees/ | + | angle1 = -2; // the end angle, in radians (= degrees/ |
- | }; | + | }; |
}; | }; | ||
</ | </ | ||
- | < | + | < |
class UserActions | class UserActions | ||
{ | { | ||
- | | + | class OpenDoor // action to open the door |
- | { | + | { |
- | displayName=" | + | displayName = "Open Door"; |
- | position=" | + | position = " |
- | radius=1.5; // how close the player has to be see this action | + | radius = 1.5; // how close the player has to be see this action |
- | condition=" | + | condition = "this animationPhase "" |
- | statement=" | + | statement = "this animate["" |
- | onlyforplayer = true; // requirement by ArmA - presumably defines if AI can/cannot open doors etc | + | onlyforplayer = true; // requirement by ArmA - presumably defines if AI can/cannot open doors etc |
- | }; | + | }; |
- | class CloseDoor // action to close the door | + | class CloseDoor // action to close the door |
- | { | + | { |
- | | + | displayName = "Close Door"; |
- | | + | position = " |
- | | + | radius = 1.5; |
- | | + | condition = "this animationPhase "" |
- | | + | statement = "this animate["" |
- | | + | onlyforplayer = true; |
- | }; | + | }; |
}; | }; | ||
</ | </ | ||
Line 60: | Line 64: | ||
====== Tutorials ====== | ====== Tutorials ====== | ||
- | A tutorial model (a two-winged door with moving geometry) can be downloaded from [[http:// | + | A tutorial model (a two-winged door with moving geometry) can be downloaded from [[http:// |
ofp/modeling/animations.1183577102.txt.gz · Last modified: 2007/07/10 09:52 (external edit)