mirror of
https://github.com/GTAmodding/re3.git
synced 2025-07-15 02:14:11 +00:00
implemented CPlane
This commit is contained in:
parent
5118fd66da
commit
78c15c4828
9 changed files with 1048 additions and 40 deletions
|
@ -13,6 +13,7 @@
|
|||
#include "Vehicle.h"
|
||||
#include "Automobile.h"
|
||||
#include "Train.h"
|
||||
#include "Plane.h"
|
||||
#include "ModelIndices.h"
|
||||
#include "ModelInfo.h"
|
||||
|
||||
|
@ -110,9 +111,9 @@ RwObjectNameIdAssocation heliIds[] = {
|
|||
RwObjectNameIdAssocation planeIds[] = {
|
||||
{ "wheel_front_dummy", 2, 0 },
|
||||
{ "wheel_rear_dummy", 3, 0 },
|
||||
{ "light_tailplane", 2, VEHICLE_FLAG_POS | CLUMP_FLAG_NO_HIERID },
|
||||
{ "light_left", 0, VEHICLE_FLAG_POS | CLUMP_FLAG_NO_HIERID },
|
||||
{ "light_right", 1, VEHICLE_FLAG_POS | CLUMP_FLAG_NO_HIERID },
|
||||
{ "light_tailplane", PLANE_POS_LIGHT_TAIL, VEHICLE_FLAG_POS | CLUMP_FLAG_NO_HIERID },
|
||||
{ "light_left", PLANE_POS_LIGHT_LEFT, VEHICLE_FLAG_POS | CLUMP_FLAG_NO_HIERID },
|
||||
{ "light_right", PLANE_POS_LIGHT_RIGHT, VEHICLE_FLAG_POS | CLUMP_FLAG_NO_HIERID },
|
||||
{ nil, 0, 0 }
|
||||
};
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue