mirror of
https://github.com/PorktoberRevolution/ReStocked
synced 2024-09-01 17:34:42 +00:00
Add depth masks to air intakes
This commit is contained in:
parent
16b0e04b86
commit
56395c241a
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@ -0,0 +1,149 @@
|
||||
// Patches adding depth masks to air intakes
|
||||
// Contents:
|
||||
// Circular Intake (CircularIntake)
|
||||
// Small Circular Intake (miniIntake)
|
||||
// Shock Cone Intake (shockConeIntake)
|
||||
// Adjustable Ramp Intake (ramAirIntake)
|
||||
// Adjustable Ramp Intake Radial (IntakeRadialLong)
|
||||
// XM-G50 Radial Air Intake (airScoop)
|
||||
// Mk1 Diverterless Supersonic Intake (MK1IntakeFuselage)
|
||||
|
||||
// Circular Intake
|
||||
@PART[CircularIntake]
|
||||
{
|
||||
!mesh = DELETE
|
||||
|
||||
MODEL
|
||||
{
|
||||
model = Squad/Parts/Aero/circularIntake/CircularIntake
|
||||
}
|
||||
|
||||
MODEL
|
||||
{
|
||||
model = ReStock/Assets/Aero/DepthMasks/restock-fanintake-mask
|
||||
}
|
||||
|
||||
MODULE
|
||||
{
|
||||
name = ModuleRestockDepthMask
|
||||
maskTransform = fanintake_mask
|
||||
}
|
||||
}
|
||||
|
||||
// Small Circular Intake
|
||||
@PART[miniIntake]
|
||||
{
|
||||
!mesh = DELETE
|
||||
|
||||
MODEL
|
||||
{
|
||||
model = Squad/Parts/Aero/miniIntake/SmallIntake
|
||||
}
|
||||
|
||||
MODEL
|
||||
{
|
||||
model = ReStock/Assets/Aero/DepthMasks/restock-miniintake-mask
|
||||
}
|
||||
|
||||
MODULE
|
||||
{
|
||||
name = ModuleRestockDepthMask
|
||||
maskTransform = miniintake_mask
|
||||
}
|
||||
}
|
||||
|
||||
// Shock Cone Intake
|
||||
@PART[shockConeIntake]
|
||||
{
|
||||
MODEL
|
||||
{
|
||||
model = ReStock/Assets/Aero/DepthMasks/restock-coneintake-mask
|
||||
}
|
||||
|
||||
MODULE
|
||||
{
|
||||
name = ModuleRestockDepthMask
|
||||
maskTransform = coneintake_mask
|
||||
}
|
||||
}
|
||||
|
||||
// Adjustable Ramp Intake
|
||||
@PART[ramAirIntake]
|
||||
{
|
||||
!mesh = DELETE
|
||||
|
||||
MODEL
|
||||
{
|
||||
model = Squad/Parts/Aero/ramAirIntake/RampIntake
|
||||
}
|
||||
|
||||
MODEL
|
||||
{
|
||||
model = ReStock/Assets/Aero/DepthMasks/restock-rampintake-mask
|
||||
}
|
||||
|
||||
MODULE
|
||||
{
|
||||
name = ModuleRestockDepthMask
|
||||
maskTransform = rampintake_mask
|
||||
}
|
||||
}
|
||||
|
||||
// Adjustable Ramp Intake Radial
|
||||
@PART[IntakeRadialLong]
|
||||
{
|
||||
!mesh = DELETE
|
||||
|
||||
MODEL
|
||||
{
|
||||
model = Squad/Parts/Aero/intakeRadialLong/IntakeRadial
|
||||
}
|
||||
|
||||
MODEL
|
||||
{
|
||||
model = ReStock/Assets/Aero/DepthMasks/restock-longintake-mask
|
||||
}
|
||||
|
||||
MODULE
|
||||
{
|
||||
name = ModuleRestockDepthMask
|
||||
maskTransform = longintake_mask
|
||||
}
|
||||
}
|
||||
|
||||
// XM-G50 Radial Air Intake
|
||||
@PART[airScoop]
|
||||
{
|
||||
!mesh = DELETE
|
||||
|
||||
MODEL
|
||||
{
|
||||
model = Squad/Parts/Aero/airIntakeRadialXM-G50/RadialIntake
|
||||
}
|
||||
|
||||
MODEL
|
||||
{
|
||||
model = ReStock/Assets/Aero/DepthMasks/restock-radialintake-mask
|
||||
}
|
||||
|
||||
MODULE
|
||||
{
|
||||
name = ModuleRestockDepthMask
|
||||
maskTransform = radialintake_mask
|
||||
}
|
||||
}
|
||||
|
||||
// Mk1 Diverterless Supersonic Intake
|
||||
@PART[MK1IntakeFuselage]
|
||||
{
|
||||
MODEL
|
||||
{
|
||||
model = ReStock/Assets/Aero/DepthMasks/restock-inlineintake-mask
|
||||
}
|
||||
|
||||
MODULE
|
||||
{
|
||||
name = ModuleRestockDepthMask
|
||||
maskTransform = inlineintake_mask
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue
Block a user