示例#1
0
 public static void AddGasGenerator(GameObject go)
 {
     ApplyExhaust.AddOutput(go, new CellOffset(2, 2), SimHashes.CarbonDioxide);
     ApplyExhaust.AddOutput(go, new CellOffset(1, 1), SimHashes.DirtyWater);
 }
示例#2
0
 public static void AddElectrolyzer(GameObject go)
 {
     ApplyExhaust.AddOutput(go, new CellOffset(1, 1), SimHashes.Oxygen);
     ApplyExhaust.AddOutput(go, new CellOffset(0, 1), SimHashes.Hydrogen);
 }
示例#3
0
 public static void AddWoodGenerator(GameObject go)
 {
     ApplyExhaust.AddOutput(go, new CellOffset(0, 1), SimHashes.CarbonDioxide);
 }
示例#4
0
 public static void AddRust(GameObject go)
 {
     ApplyExhaust.AddOutput(go, new CellOffset(1, 1), SimHashes.Oxygen);
     ApplyExhaust.AddOutput(go, new CellOffset(0, 0), SimHashes.ChlorineGas);
 }
示例#5
0
 public static void AddMineralDeoxidizer(GameObject go)
 {
     ApplyExhaust.AddOutput(go, new CellOffset(0, 1), SimHashes.Oxygen);
 }
示例#6
0
 internal static void AddGourmetCooking(GameObject go)
 {
     ApplyExhaust.AddOutput(go, new CellOffset(1, 2), SimHashes.CarbonDioxide);
 }
 public static void AddOilRefinery(GameObject go)
 {
     ApplyExhaust.AddOutput(go, new CellOffset(-1, 3), SimHashes.Methane);
 }
 public static void AddPolymer(GameObject go)
 {
     ApplyExhaust.AddOutput(go, new CellOffset(0, 1), SimHashes.CarbonDioxide);
     ApplyExhaust.AddOutput(go, new CellOffset(1, 0), SimHashes.Steam);
 }
 public static void AddEthanolDistillery(GameObject go)
 {
     ApplyExhaust.AddOutput(go, new CellOffset(2, 2), SimHashes.CarbonDioxide);
 }
 public static void AddFertilizerMaker(GameObject go)
 {
     ApplyExhaust.AddOutput(go, new CellOffset(2, 2), SimHashes.Methane);
 }