Space Exploration - legacy cargo landing pad

by Quezler

Uses the old texture and not locked to the 2x2 rail grid.

Tweaks
11 days ago
2.0
138
Logistics Trains Blueprints Cheats

i Option to only use the old texture

11 days ago

Hello! Would it be possible to include a setting that only replaces the texture to the old one and doesn't do anything else? Thanks

11 days ago

i currently do not plan to dumb down this mod since there are two other mods with specific interactions with this one already, however to make a "legacy cargo landing pad lite" mod this seems to be what you'll need, save for the circuit connector and alt mode:

local landing_pad_entity = data.raw["cargo-landing-pad"]["cargo-landing-pad"]
local landing_pad_item = data.raw["item"]["cargo-landing-pad"]

landing_pad_item.icon = "__space-exploration-graphics__/graphics/icons/rocket-landing-pad.png"

landing_pad_entity.graphics_set = nil
landing_pad_entity.robot_animation = nil
landing_pad_entity.cargo_station_parameters.giga_hatch_definitions = nil

landing_pad_entity.draw_stateless_visualisations_in_ghost = true
landing_pad_entity.stateless_visualisation = {
  render_layer = "lower-object",
  animation = {
    filename = "__space-exploration-graphics-5__/graphics/entity/rocket-landing-pad/rocket-landing-pad.png",
    height = 768,
    width = 704,
    shift = {0, -0.25},
    scale = 0.4
  }
}
11 days ago

Great, I can put that together, thank you!

New response