mirror of
https://github.com/PorktoberRevolution/ReStocked
synced 2024-09-01 17:34:42 +00:00
bd14d5f6d3
- Fix larger static ladder colliders (#629) - Add masks to ladders (#628) - Add masks to Twitch pods, Puff (#628) - Fix inverted colliders on truss hubs
74 lines
1.5 KiB
INI
74 lines
1.5 KiB
INI
// Patches applying art changes to ladders
|
|
// Contents:
|
|
// - Pegasus I Mobility Enhancer (ladder1)
|
|
// - Kelus Mobility Enhancer (telescopicLadder)
|
|
// - Kelus-LV Bay Mobility Enhancer (telescopicLadderBay)
|
|
|
|
// Static Ladder
|
|
@PART[ladder1]
|
|
{
|
|
@author = Chris Adderley (Nertea)
|
|
!mesh = DELETE
|
|
!MODEL,* {}
|
|
MODEL
|
|
{
|
|
model = ReStock/Assets/Utility/restock-ladder-static-1
|
|
position = 0.0, 0.0, 0.0
|
|
scale = 1,1,1
|
|
rotation = 0, 0, 0
|
|
}
|
|
}
|
|
|
|
// Small ladder
|
|
@PART[telescopicLadder]
|
|
{
|
|
@author = Chris Adderley (Nertea)
|
|
!mesh = DELETE
|
|
!MODEL,* {}
|
|
MODEL
|
|
{
|
|
model = ReStock/Assets/Utility/restock-ladder-extending-1
|
|
position = 0.0, 0.0, 0.0
|
|
scale = 1,1,1
|
|
rotation = 0, 0, 0
|
|
}
|
|
|
|
@MODULE[RetractableLadder]
|
|
{
|
|
@ladderAnimationRootName = animationRoot
|
|
@ladderColliderName = ladderCollider
|
|
@ladderRetractAnimationName = LadderExtend
|
|
}
|
|
MODULE
|
|
{
|
|
name = ModuleRestockDepthMask
|
|
maskTransform = LadderMask
|
|
}
|
|
}
|
|
|
|
// Big ladder
|
|
@PART[telescopicLadderBay]
|
|
{
|
|
@author = Chris Adderley (Nertea)
|
|
!mesh = DELETE
|
|
!MODEL,* {}
|
|
MODEL
|
|
{
|
|
model = ReStock/Assets/Utility/restock-ladder-extending-2
|
|
position = 0.0, 0.0, 0.0
|
|
scale = 1,1,1
|
|
rotation = 0, 0, 0
|
|
}
|
|
@MODULE[RetractableLadder]
|
|
{
|
|
@ladderAnimationRootName = animationRoot
|
|
@ladderColliderName = ladderCollider
|
|
@ladderRetractAnimationName = LadderLightExtend
|
|
}
|
|
MODULE
|
|
{
|
|
name = ModuleRestockDepthMask
|
|
maskTransform = LadderMask
|
|
}
|
|
}
|