The Land xx class: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
m (removed redundant text)
m (Text replacement - "^#redirect \[\[" to "#REDIRECT [[")
 
(5 intermediate revisions by 2 users not shown)
Line 1: Line 1:
{{DISPLAYTITLE:The Land_''xx'' class}}
#REDIRECT [[Building Land Classes]]
 
 
A great deal of angst, frustration and misunderstandings surround would be map makers using animated buildings on their maps.
 
The very first, and very infamous misunderstanding is that your animated building opens doors when you place it in the game editor, but simply does not work when you bake it into a map (wrp).
 
For this magic to happen, you '''must''' have class land_nameOfP3d  and model = NameOfp3d;
 
It is ''that'' simple.
 
class house_f; // almost always
class land_my_great_building: house_f
{
    model=\some\location\my_great_building.p3d;
    ..... the rest doesn't matter
};
 
*Note that you can have land classes for other p3d class 'types', and they are optional. But if you wish to use the unique and very special properties of class=house, you '''must''' have a land_xx to go with it.
 
It is ''that'' simple.
 
 
And for these animations to happen at all either in the in-game editor or otherwise, your p3d has to have it's geolod property set to class=house as a minimum. There are other, less used, animation class types, such as 'housesimulated' and 'fuelstation' but you are on pretty firm ground using class=house if you expect doors to open.
 
It is ''that'' simple.
 
 
----
 
A land_xx trigger list of all objects used on the map that *need* land classes to operate correctly is automatically baked into that wrp by pboProject. (Geolod class=house is the prime candidate, but there are other much less used class= types that pboProject also takes care of.)
 
if doors (eg) still won't open, then you don't have that land_xx class in any config.cfgVehicles in the game.
 
 
Under those circumstances, it's up to you to create one.
 
See also: [[Building Land Classes]]
 
----
 
'''translations'''
 
'''Übersetzungen - Deutsch'''
 
Du sprichst kein Englisch?
 
Dann schau Dir die [[Deutsche Übersetzung der land_xx class]] an  --[[User:MemphisBelle|MemphisBelle]] ([[User talk:MemphisBelle|talk]]) 10:46, 12 January 2016 (CET)
 
[[Category:ArmA: Addon Configuration]]
[[Category:ArmA: Terrain Editing]]

Latest revision as of 00:03, 25 June 2022