Implemented research cost, tweaked some values.
This commit is contained in:
@@ -4,12 +4,12 @@ using Godot;
|
||||
|
||||
public partial class Robot : Node3D
|
||||
{
|
||||
private const float EnergyUsePerSecond = 0.2f;
|
||||
private const float HeatGainPerSecond = 7.5f;
|
||||
private const float ActiveHeatLossPerSecond = 18f;
|
||||
private const float IdleHeatLossPerSecond = 9f;
|
||||
private const float EnergyUsePerSecond = 0.12f;
|
||||
private const float HeatGainPerSecond = 5f;
|
||||
private const float ActiveHeatLossPerSecond = 22f;
|
||||
private const float IdleHeatLossPerSecond = 12f;
|
||||
private const float CooldownTarget = 35f;
|
||||
private const float MaintenanceLossPerSecond = 0.04f;
|
||||
private const float MaintenanceLossPerSecond = 0.025f;
|
||||
|
||||
private bool isExecuting = false;
|
||||
private ProgramNode currentNode;
|
||||
|
||||
Reference in New Issue
Block a user