Replace trench models: bigger and opaque

This commit is contained in:
esteldunedain 2016-01-27 17:54:10 -03:00
parent f8a1215264
commit b20a2f338b
6 changed files with 5 additions and 5 deletions

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@ -32,14 +32,14 @@ class CfgVehicles {
author = ECSTRING(common,ACETeam); author = ECSTRING(common,ACETeam);
displayName = CSTRING(EnvelopeSmallName); displayName = CSTRING(EnvelopeSmallName);
descriptionShort = CSTRING(EnevlopeSmallDescription); descriptionShort = CSTRING(EnevlopeSmallDescription);
model = QUOTE(PATHTOEF(apl,ace_envelope_small3.p3d)); model = QUOTE(PATHTOEF(apl,ace_envelope_small4.p3d));
scope = 2; scope = 2;
}; };
class ACE_envelope_big: BagFence_base_F { class ACE_envelope_big: BagFence_base_F {
author = ECSTRING(common,ACETeam); author = ECSTRING(common,ACETeam);
displayName = CSTRING(EnvelopeBigName); displayName = CSTRING(EnvelopeBigName);
descriptionShort = CSTRING(EnevlopeBigDescription); descriptionShort = CSTRING(EnevlopeBigDescription);
model = QUOTE(PATHTOEF(apl,ace_envelope_big3.p3d)); model = QUOTE(PATHTOEF(apl,ace_envelope_big4.p3d));
scope = 2; scope = 2;
}; };
@ -47,12 +47,12 @@ class CfgVehicles {
class ACE_envelope_small_NoGeo: ACE_envelope_small { class ACE_envelope_small_NoGeo: ACE_envelope_small {
scope = 1; scope = 1;
//@todo: replace by a no geo model //@todo: replace by a no geo model
model = QUOTE(PATHTOEF(apl,ace_envelope_small3.p3d)); model = QUOTE(PATHTOEF(apl,ace_envelope_small4_nogeo.p3d));
}; };
class ACE_envelope_big_NoGeo: ACE_envelope_big { class ACE_envelope_big_NoGeo: ACE_envelope_big {
scope = 1; scope = 1;
//@todo: replace by a no geo model //@todo: replace by a no geo model
model = QUOTE(PATHTOEF(apl,ace_envelope_big3.p3d)); model = QUOTE(PATHTOEF(apl,ace_envelope_big4_nogeo.p3d));
}; };
class Box_NATO_Support_F; class Box_NATO_Support_F;

View File

@ -16,7 +16,7 @@ PREP(placeTrench);
// Trench types // Trench types
// Name of the object, name of th dummy no geo object, dx, dy // Name of the object, name of th dummy no geo object, dx, dy
GVAR(trenchSmall) = ["ACE_envelope_small", "ACE_envelope_small_NoGeo", 2, 3, 0.35]; GVAR(trenchSmall) = ["ACE_envelope_small", "ACE_envelope_small_NoGeo", 2, 3, 0.35];
GVAR(trenchBig) = ["ACE_envelope_big", "ACE_envelope_big_NoGeo", 6, 1.1, 0.20]; GVAR(trenchBig) = ["ACE_envelope_big", "ACE_envelope_big_NoGeo", 6, 1.1, 0.25];
GVAR(trenchType) = GVAR(trenchSmall); GVAR(trenchType) = GVAR(trenchSmall);
ADDON = true; ADDON = true;