ReStocked/Distribution/Restock/GameData/ReStock/Patches/Thermal/restock-radiators.cfg

139 lines
2.5 KiB
INI
Raw Normal View History

2019-06-10 19:40:24 +00:00
// Patches applying art changes to Radiator parts
// Contents:
// - Radiator Panel (edge) (radPanelEdge)
// - Radiator Panel (small) (radPanelSm)
// - Radiator Panel (large) (radPanelLg)
// - Thermal Control System (small) (foldingRadSmall)
// - Thermal Control System (medium) (foldingRadMed)
// - Thermal Control System (large) (foldingRadLarge)
// Edge radiator
@PART[radPanelEdge]
{
@author = Chris Adderley (Nertea)
!mesh = DELETE
!MODEL {}
MODEL
{
model = ReStock/Assets/Thermal/restock-radiator-static-edge-1
}
}
// Small Static radiator
@PART[radPanelSm]
{
@author = Chris Adderley (Nertea)
!mesh = DELETE
!MODEL {}
MODEL
{
model = ReStock/Assets/Thermal/restock-radiator-static-small-1
}
}
// Large static radiator
@PART[radPanelLg]
{
@author = Chris Adderley (Nertea)
!mesh = DELETE
!MODEL {}
MODEL
{
model = ReStock/Assets/Thermal/restock-radiator-static-large-1
}
}
// Small deployable radiator
@PART[foldingRadSmall]
{
@author = Chris Adderley (Nertea)
!mesh = DELETE
!MODEL {}
MODEL
{
model = ReStock/Assets/Thermal/restock-radiator-deploying-small-1
}
2019-08-10 22:50:13 +00:00
2019-06-10 19:40:24 +00:00
@MODULE[ModuleDeployableRadiator]
{
2019-08-10 22:50:13 +00:00
@animationName = RadiatorExtend
@pivotName = B_TinyRadPivot001
2019-06-10 19:40:24 +00:00
@raycastTransformName = Panel_006
}
2019-08-10 22:50:13 +00:00
MODULE
{
name = ModuleHeatEffects
fxModuleNames = heatColor
useSkinTemp = true
}
MODULE
{
name = ModuleColorChanger
moduleID = heatColor
animRate = 1.0
shaderProperty = _EmissiveColor
toggleInEditor = false
toggleInFlight = false
redCurve
{
key = 0 0 1 1
key = 1 1 1 1
}
greenCurve
{
key = 0 0 1 1
key = 1 1 1 1
}
blueCurve
{
key = 0 0 1 1
key = 1 1 1 1
}
alphaCurve
{
key = 0 0 1 1
key = 1 1 1 1
}
}
2019-06-10 19:40:24 +00:00
}
// Medium deployable radiator
@PART[foldingRadMed]
{
@author = Chris Adderley (Nertea)
!mesh = DELETE
!MODEL {}
2019-08-10 22:50:13 +00:00
2019-06-10 19:40:24 +00:00
MODEL
{
2019-08-10 22:50:13 +00:00
model = ReStock/Assets/Thermal/restock-radiator-deploying-medium-1
2019-06-10 19:40:24 +00:00
}
@MODULE[ModuleDeployableRadiator]
{
2019-08-10 22:50:13 +00:00
@animationName = RadiatorExtend
@pivotName = B_MedRad_PanelPivot
@raycastTransformName = B_MedRad_Raycast
2019-06-10 19:40:24 +00:00
}
}
// Large deployable radiator
@PART[foldingRadLarge]
{
@author = Chris Adderley (Nertea)
!mesh = DELETE
!MODEL {}
MODEL
{
model = ReStock/Assets/Thermal/restock-radiator-deploying-large-1
}
@MODULE[ModuleDeployableRadiator]
{
2019-08-10 22:50:13 +00:00
@animationName = RadiatorExtend
@pivotName = B_LargeRad_PanelPivot
@raycastTransformName = B_LargeRad_Raycast
2019-06-10 19:40:24 +00:00
}
}