Tutorial Zoom Level

Discussion in 'Starbound Modding' started by Xuhybrid, Dec 8, 2013.

  1. Xuhybrid

    Xuhybrid Scruffy Nerf-Herder

    Not sure if anyone is aware of this but its possible to add more zoom options so that the games pixel size is not upscaled. This is especially useful for ship design testing because you won't have pixel differences, but also so you can see large ships on one screen.

    \Steam\SteamApps\common\Starbound\assets\interface\optionsmenu\optionsmenu.config
    Code:
      "zoomList" : [
        2,
        3,
        4
      ],
    
    Add a new line for no-zoom like this;
    Code:
      "zoomList" : [
        1,
        2,
        3,
        4
      ],
    
     
    Nerd of all trades, Mio and Fleder like this.
  2. Karull

    Karull Big Damn Hero

    thank you for this, i tried manually setting it to 2.5 in the starbound config file but it messed up the pixels. This worked perfectly!
     
  3. Xuhybrid

    Xuhybrid Scruffy Nerf-Herder

    No problem. Im glad someone found it useful.
     
    Karull likes this.
  4. TheCoolSideofthePillow

    TheCoolSideofthePillow Astral Cartographer

    Thanks for this :D
     
  5. 239Mercury

    239Mercury Void-Bound Voyager

    Thanks, that's good for screenshoting maps.
     

Share This Page