P3D Lod Proxies: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
mNo edit summary
 
(3 intermediate revisions by one other user not shown)
Line 6: Line 6:
     Asciiz          P3dProxyName;        //"\ca\a10\agm65" (.p3d is implied) <<note the leading filename backslash
     Asciiz          P3dProxyName;        //"\ca\a10\agm65" (.p3d is implied) <<note the leading filename backslash
     TransformMatrix Transform;          //see [[Generic FileFormat Data Types]]
     TransformMatrix Transform;          //see [[Generic FileFormat Data Types]]
     ulong          FaceIndex;           //see [[P3D Lod Faces]]
     ulong          ProxySequenceId;     //
     ulong          NamedSelectionIndex; //see [[P3D Named Selections]]
     ulong          NamedSelectionIndex; //see [[P3D Named Selections]]
     //////// ARMA ONLY (ODOLV4x) ///////
     //////// ARMA ONLY (ODOLV4x) ///////
     ulong          Unknown[2];
    long            BoneIndex;
     ulong          SectionIndex;        //see [[P3D_Lod_Sections]]
   }
   }



Revision as of 17:10, 7 July 2010

Template:unsupported-doc

LodProxy

 struct
 {
   Asciiz          P3dProxyName;        //"\ca\a10\agm65" (.p3d is implied) <<note the leading filename backslash
   TransformMatrix Transform;           //see Generic FileFormat Data Types
   ulong           ProxySequenceId;     //
   ulong           NamedSelectionIndex; //see P3D Named Selections
   //////// ARMA ONLY (ODOLV4x) ///////
   long            BoneIndex;
   ulong           SectionIndex;        //see P3D_Lod_Sections
 }

Related Pages

P3D File Format - ODOLV7