mirror of
https://github.com/PorktoberRevolution/ReStocked
synced 2024-09-01 17:34:42 +00:00
Add parachutes
This commit is contained in:
parent
4a373b955c
commit
19f4d63ae5
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.
Binary file not shown.
Binary file not shown.
@ -0,0 +1,129 @@
|
||||
// Patches applying art changes to parachutes
|
||||
// Contents:
|
||||
// - Mk16 Parachute (parachuteSingle)
|
||||
// - Mk16-XL Parachute (parachuteLarge)
|
||||
// - Mk25 Parachute (parachuteDrogue)
|
||||
// - Mk2-R Radial-Mount Parachute (parachuteRadial)
|
||||
// - Mk12-R Radial-Mount Drogue Chute (radialDrogue)
|
||||
|
||||
|
||||
// Large chute
|
||||
@PART[parachuteLarge]
|
||||
{
|
||||
@author = Chris Adderley (Nertea)
|
||||
!mesh = DELETE
|
||||
!MODEL,* {}
|
||||
MODEL
|
||||
{
|
||||
model = ReStock/Assets/Utility/restock-parachute-125-1
|
||||
position = 0.0, 0.0, 0.0
|
||||
scale = 1,1,1
|
||||
rotation = 0, 0, 0
|
||||
}
|
||||
|
||||
@MODULE[ModuleParachute]
|
||||
{
|
||||
@capName = ChuteCap
|
||||
@canopyName = B_ParachuteLargeRotator
|
||||
@semiDeployedAnimation = semiDeployLarge
|
||||
@fullyDeployedAnimation = fullyDeployLarge
|
||||
}
|
||||
}
|
||||
// Large drogue chute
|
||||
@PART[parachuteDrogue]
|
||||
{
|
||||
@author = Chris Adderley (Nertea)
|
||||
!mesh = DELETE
|
||||
!MODEL,* {}
|
||||
MODEL
|
||||
{
|
||||
model = ReStock/Assets/Utility/restock-parachute-drogue-125-1
|
||||
position = 0.0, 0.0, 0.0
|
||||
scale = 1,1,1
|
||||
rotation = 0, 0, 0
|
||||
}
|
||||
|
||||
@MODULE[ModuleParachute]
|
||||
{
|
||||
@capName = ChuteCap
|
||||
@canopyName = B_ParachuteLargeDrogueRotator
|
||||
@semiDeployedAnimation = semiDeployLarge
|
||||
@fullyDeployedAnimation = fullyDeployLarge
|
||||
}
|
||||
}
|
||||
|
||||
// 0.625m chute
|
||||
@PART[parachuteSingle]
|
||||
{
|
||||
@rescaleFactor = 1.0
|
||||
@scale = 1.0
|
||||
|
||||
@node_stack_bottom = 0.0, -0.0120649, 0.0, 0.0, -1.0, 0.0, 0
|
||||
@node_attach = 0.0, -0.0120649, 0.0, 0.0, -1.0, 0.0
|
||||
@author = Chris Adderley (Nertea)
|
||||
!mesh = DELETE
|
||||
!MODEL,* {}
|
||||
MODEL
|
||||
{
|
||||
model = ReStock/Assets/Utility/restock-parachute-0625-1
|
||||
position = 0.0, 0.0, 0.0
|
||||
scale = 0.8,0.8,0.8
|
||||
rotation = 0, 0, 0
|
||||
}
|
||||
|
||||
@MODULE[ModuleParachute]
|
||||
{
|
||||
@capName = SmallChuteCap
|
||||
@canopyName = B_ParachuteRoot004
|
||||
@semiDeployedAnimation = semiDeployLarge
|
||||
@fullyDeployedAnimation = fullyDeployLarge
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
// Radial chute
|
||||
@PART[parachuteRadial]
|
||||
{
|
||||
@author = Chris Adderley (Nertea)
|
||||
!mesh = DELETE
|
||||
!MODEL,* {}
|
||||
MODEL
|
||||
{
|
||||
model = ReStock/Assets/Utility/restock-parachute-radial-1
|
||||
position = 0.0, 0.0, 0.0
|
||||
scale = 1,1,1
|
||||
rotation = 0, 0, 0
|
||||
}
|
||||
|
||||
@MODULE[ModuleParachute]
|
||||
{
|
||||
@capName = RadialChuteCap
|
||||
@canopyName = B_ParachuteRoot
|
||||
@semiDeployedAnimation = semiDeployLarge
|
||||
@fullyDeployedAnimation = fullyDeployLarge
|
||||
}
|
||||
}
|
||||
// Radial drogue chute
|
||||
@PART[radialDrogue]
|
||||
{
|
||||
@rescaleFactor = 1.0
|
||||
@scale = 1.0
|
||||
@author = Chris Adderley (Nertea)
|
||||
!mesh = DELETE
|
||||
!MODEL,* {}
|
||||
MODEL
|
||||
{
|
||||
model = ReStock/Assets/Utility/restock-parachute-drogue-radial-1
|
||||
position = 0.0, 0.0, 0.0
|
||||
scale = 1,1,1
|
||||
rotation = 0, 0, 0
|
||||
}
|
||||
|
||||
@MODULE[ModuleParachute]
|
||||
{
|
||||
@capName = RadialChuteCapDrogue
|
||||
@canopyName = B_ParachuteRoot005
|
||||
@semiDeployedAnimation = semiDeployLarge
|
||||
@fullyDeployedAnimation = fullyDeployLarge
|
||||
}
|
||||
}
|
@ -33,6 +33,11 @@
|
||||
- Advanced Nose Cone - Type A (Nertea)
|
||||
- Advanced Nose Cone - Type B (Nertea)
|
||||
- Protective Rocket Nose Cone Mk7 (Nertea)
|
||||
- Mk16 Parachute (Nertea)
|
||||
- Mk16-XL Parachute (Nertea)
|
||||
- Mk25 Parachute (Nertea)
|
||||
- Mk2-R Radial-Mount Parachute (Nertea)
|
||||
- Mk12-R Radial-Mount Drogue Chute (Nertea)
|
||||
- Thermal
|
||||
- Heat Shield (0.625m) (Nertea)
|
||||
- Heat Shield (1.25m) (Nertea)
|
||||
|
Loading…
Reference in New Issue
Block a user