Functional 3.75m parts

This commit is contained in:
Chris Adderley
2018-09-13 13:21:00 -07:00
parent 92a009c393
commit 1bd3440bc8
35 changed files with 317 additions and 101 deletions

View File

@ -1,3 +1,54 @@
// Patches for 3.75m structural Parts
// Contents:
// - Kerbodyne ADTP-2-3 (Size3to2Adapter): Adds hollow and fuelled variants
// - Kerbodyne ADTP-2-3 (Size3to2Adapter): Adds hollow variant
@PART[Size3to2Adapter]:AFTER[ReStock]
{
@author = Chris Adderley (Nertea)
!mesh = DELETE
!MODEL {}
MODEL {
model = ReStock/Assets/FuelTank/restock-adapter-375-multi-1
}
%rescaleFactor = 1
MODULE
{
name = ModulePartVariants
baseVariant = Solid
VARIANT
{
name = Solid
displayName = #LOC_Restock_variant-engine_size3
primaryColor = #999999
secondaryColor = #da8544
GAMEOBJECTS
{
375mAdapterNotHollow = true
COLLIDER_SOLID =true
375mAdapterHollow001 = false
COLLIDERS = false
}
}
VARIANT
{
name = Hollow
displayName = #LOC_Restock_variant-engine_szie2
primaryColor = #999999
secondaryColor = #555555
GAMEOBJECTS
{
375mAdapterNotHollow = false
COLLIDER_SOLID =false
375mAdapterHollow001 = true
COLLIDERS = true
}
}
}
}