mirror of
https://github.com/PorktoberRevolution/ReStocked
synced 2024-09-01 17:34:42 +00:00
commit
967851b650
Binary file not shown.
@ -40,8 +40,8 @@ Localization
|
||||
#LOC_Restock_variant-engine_boattail_size1p5_white = Boattail (1.875m, White)
|
||||
#LOC_Restock_variant-engine_boattail_size1_grey-orange = Boattail (1.25m, Orange/Grey)
|
||||
#LOC_Restock_variant-engine_boattail_size1p5_grey-orange = Boattail (1.875m, Orange/Grey)
|
||||
#LOC_Restock_variant-engine_tankbutt_size1p5_white = Tankbutt (1.875m, White)
|
||||
#LOC_Restock_variant-engine_tankbutt_size1p5_grey-orange = Tankbutt (1.875m, Orange/Grey)
|
||||
#LOC_Restock_variant-engine_tankbutt_size1p5_white = Tankbutt (2.5m, White)
|
||||
#LOC_Restock_variant-engine_tankbutt_size1p5_grey-orange = Tankbutt (2.5m, Orange/Grey)
|
||||
|
||||
#LOC_Restock_variant-engine_shroud_white = White Shroud
|
||||
#LOC_Restock_variant-engine_shroud_grey-orange = Metallic Shroud
|
||||
|
Binary file not shown.
@ -6,7 +6,7 @@
|
||||
{
|
||||
"MAJOR":1,
|
||||
"MINOR":0,
|
||||
"PATCH":1,
|
||||
"PATCH":2,
|
||||
"BUILD":0
|
||||
},
|
||||
"KSP_VERSION":
|
||||
|
@ -1,3 +1,10 @@
|
||||
v1.0.2
|
||||
-----
|
||||
- Fixed plugin instantiation issue
|
||||
- Fixed 'tankbutt' localizations for Skiff showing 1.875m when they should be 2.5m (#766)
|
||||
- Fixed inflatable heatshield fairing (#765)
|
||||
|
||||
|
||||
v1.0.1
|
||||
-----
|
||||
- Fixed lack of bundled ModuleManager
|
||||
|
@ -12,7 +12,7 @@ PART
|
||||
rescaleFactor = 1.0
|
||||
node_stack_top = 0.0, 0.075, 0.0, 0.0, 1.0, 0.0, 1
|
||||
node_stack_bottom = 0.0, -0.075, 0.0, 0.0, -1.0, 0.0, 1
|
||||
TechRequired = advancedConstruction
|
||||
TechRequired = advConstruction
|
||||
entryCost = 1800
|
||||
cost = 475
|
||||
category = Coupling
|
||||
|
@ -12,7 +12,7 @@ PART
|
||||
rescaleFactor = 1.0
|
||||
node_stack_top = 0.0, 0.075, 0.0, 0.0, 1.0, 0.0, 1
|
||||
node_stack_bottom = 0.0, -0.075, 0.0, 0.0, -1.0, 0.0, 1
|
||||
TechRequired = advancedConstruction
|
||||
TechRequired = advConstruction
|
||||
entryCost = 1800
|
||||
cost = 475
|
||||
category = Coupling
|
||||
|
@ -2,7 +2,7 @@
|
||||
// 1.875m SRB for post-1.8 (mirrors Pollux)
|
||||
PART
|
||||
{
|
||||
name = restock-srb-anvil-1
|
||||
name = restock-srb-castor-1
|
||||
module = Part
|
||||
author = Chris Adderley (Nertea)
|
||||
rescaleFactor = 1
|
||||
|
@ -6,7 +6,7 @@
|
||||
{
|
||||
"MAJOR":1,
|
||||
"MINOR":0,
|
||||
"PATCH":1,
|
||||
"PATCH":2,
|
||||
"BUILD":0
|
||||
},
|
||||
"KSP_VERSION":
|
||||
|
@ -1,3 +1,8 @@
|
||||
v1.0.2
|
||||
-----
|
||||
- Fixed tech tree locations for 1.875m decoupler and separator
|
||||
- Fixed Castor SRB having the same part name as old Anvil
|
||||
|
||||
v1.0.1
|
||||
------
|
||||
- Fixed lack of bundled ModuleManager
|
||||
|
@ -42,7 +42,7 @@ namespace Restock
|
||||
// should the module disable the stock blackbody glow effect on the included renderers?
|
||||
[KSPField] public bool disableBlackbody = false;
|
||||
|
||||
[KSPField] public List<Renderer> renderers = new List<Renderer>();
|
||||
public List<Renderer> renderers = new List<Renderer>();
|
||||
|
||||
private readonly string _shaderBlackbody = "_TemperatureColor";
|
||||
|
||||
@ -54,13 +54,16 @@ namespace Restock
|
||||
|
||||
private double _lerpRange;
|
||||
|
||||
private Color _emissiveColor = new Color();
|
||||
private MaterialPropertyBlock _propertyBlock = new MaterialPropertyBlock();
|
||||
private Color _emissiveColor;
|
||||
private MaterialPropertyBlock _propertyBlock;
|
||||
|
||||
public void Start()
|
||||
{
|
||||
if (base.vessel == null) return;
|
||||
|
||||
_emissiveColor = new Color();
|
||||
_propertyBlock = new MaterialPropertyBlock();
|
||||
|
||||
if (enableHeatEmissive)
|
||||
{
|
||||
if (useCoreTemp)
|
||||
|
Loading…
Reference in New Issue
Block a user