mirror of
https://github.com/PorktoberRevolution/ReStocked
synced 2024-09-01 17:34:42 +00:00
910b4a4852
- MH 1.875 tank internal AO improvement - RS+ 1.875m heat shield node fix - Blacklist update for stock Nertea parts - Fixed MH patching for stupid booster ( #716 ) - Fixed 1.875 heatshield length (#715) - Fixed 1.875m nosecone variants (#714) - Fixed FL-A215 issues (#713, #712) - Fixed FL-A215S issues (#711, # 710) - Fixed FL-A151-L issues (#709 # 708) - Fixed adapter colliders (#707) - Fixed FL-A150 issues (#706, #705, #704) - Fixed FL-TX900 issues (#703, #702) - Fixed FL-TX1800 issues (#701) - Removed flameout fx from Soyuz tank (#699)
169 lines
3.0 KiB
INI
169 lines
3.0 KiB
INI
// Patches applying art changes to MH SRB engines
|
|
// Contents:
|
|
// - THK 'Pollux' SRB (Pollux)
|
|
|
|
// THK 'Pollux' SRB
|
|
@PART[Pollux]
|
|
{
|
|
@author = Chris Adderley (Nertea)
|
|
!mesh = DELETE
|
|
!MODEL {}
|
|
MODEL
|
|
{
|
|
model = ReStock/Assets/Engine/restock-engine-srb-pollux-1
|
|
}
|
|
%rescaleFactor = 1
|
|
!EFFECTS {}
|
|
EFFECTS
|
|
{
|
|
engage
|
|
{
|
|
AUDIO
|
|
{
|
|
channel = Ship
|
|
clip = sound_vent_medium
|
|
volume = 1.0
|
|
pitch = 2.0
|
|
loop = false
|
|
}
|
|
}
|
|
flameout
|
|
{
|
|
PREFAB_PARTICLE
|
|
{
|
|
prefabName = fx_exhaustSparks_flameout_2
|
|
transformName = thrustTransform
|
|
oneShot = true
|
|
}
|
|
AUDIO
|
|
{
|
|
channel = Ship
|
|
clip = sound_explosion_low
|
|
volume = 1.0
|
|
pitch = 2.0
|
|
loop = false
|
|
}
|
|
}
|
|
fx-pollux-running
|
|
{
|
|
AUDIO
|
|
{
|
|
channel = Ship
|
|
clip = sound_rocket_hard
|
|
volume = 0.0 0.0
|
|
volume = 0.01 0.4
|
|
volume = 1.0 1.0
|
|
pitch = 0.0 0.2
|
|
pitch = 0.01 0.6
|
|
pitch = 1.0 1.8
|
|
loop = true
|
|
}
|
|
MODEL_MULTI_PARTICLE
|
|
{
|
|
name = core
|
|
modelName = ReStockPlus/FX/restock-fx-srb-anvil
|
|
transformName = fxTransformCore
|
|
emission = 0.0 0.0
|
|
emission = 0.01 0.1
|
|
emission = 0.075 0.25
|
|
emission = 1.0 1.0
|
|
speed = 0.0 0.35
|
|
speed = 1.0 1.0
|
|
}
|
|
PREFAB_PARTICLE
|
|
{
|
|
prefabName = fx_smokeTrail_veryLarge
|
|
transformName = smokePoint
|
|
emission = 0.0 0.0
|
|
emission = 0.05 0.0
|
|
emission = 0.075 0.25
|
|
emission = 1.0 1.25
|
|
speed = 0.0 0.25
|
|
speed = 1.0 1.0
|
|
localOffset = 0, 0, 1
|
|
}
|
|
}
|
|
}
|
|
@MODULE[ModuleEngines]
|
|
{
|
|
@name = ModuleEnginesFX
|
|
%runningEffectName = fx-pollux-running
|
|
}
|
|
MODULE
|
|
{
|
|
name = FXModuleThrottleEffects
|
|
fxModuleNames = heatColor
|
|
responseSpeed = 1.0
|
|
dependOnEngineState = True
|
|
dependOnThrottle = True
|
|
}
|
|
MODULE
|
|
{
|
|
name = FXModuleThrottleEffects
|
|
fxModuleNames = throttleColor
|
|
responseSpeed = 1.0
|
|
dependOnEngineState = True
|
|
dependOnThrottle = True
|
|
}
|
|
MODULE
|
|
{
|
|
name = ModuleColorChanger
|
|
moduleID = heatColor
|
|
animRate = 0.025
|
|
shaderProperty = _EmissiveColor
|
|
excludedRenderers = EngineCore
|
|
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
|
|
}
|
|
}
|
|
MODULE
|
|
{
|
|
name = ModuleColorChanger
|
|
moduleID = throttleColor
|
|
animRate = 1
|
|
shaderProperty = _EmissiveColor
|
|
includedRenderers = EngineCore
|
|
toggleInEditor = false
|
|
toggleInFlight = false
|
|
redCurve
|
|
{
|
|
key = 0 0
|
|
key = 1 1
|
|
}
|
|
greenCurve
|
|
{
|
|
key = 0 0
|
|
key = 1 1
|
|
}
|
|
blueCurve
|
|
{
|
|
key = 0 0
|
|
key = 1 1
|
|
}
|
|
alphaCurve
|
|
{
|
|
key = 0 0
|
|
key = 1 1
|
|
}
|
|
}
|
|
}
|