Modding Help Dumb image placement non sense

Discussion in 'Starbound Modding' started by Stormalisk, Jun 26, 2017.

  1. Stormalisk

    Stormalisk Scruffy Nerf-Herder

    So I am currently working on making protectorate item obtainable, however, ran into a snag I cannot seem to solve. The game console has textures that clip through blocks, which works for right direction, however left continues to evade me and be a floaty mess and mock me like it does best.

    Like so:
    Right [​IMG]
    Left[​IMG]

    Now I tired the non-dual image coding to see if separation would work (tweaking both imagePositions separately) and so far no avail. I returned back both to equal grounds on imagePosition.

    Code:
    [
    {
    "op": "add",
    "path": "/orientations/0/direction",
    "value": "left"
    },
    {
    "op": "add",
    "path": "/orientations/0/flipImages",
    "value": true
    },
    {
    "op": "add",
    "path": "/orientations/1",
    "value":
    {
    "image" : "protectorategamesconsole.png:<color>",
    "imagePosition" : [0, -4],
    "frames" : 1,
    "animationCycle" : 0.5,
    "spaceScan" : 0.1,
    "anchors" : [ "bottom" ],
    "direction" : "right"
    }
    },
    {
    "op": "replace",
    "path": "/orientations/0/anchors",
    "value": [ "bottom" ]
    },
    {
    "op": "replace",
    "path": "/orientations/0/imagePosition",
    "value": [0, -4]
    }
    ]
    Here is original object file for reference:

    Code:
    {
      "objectName" : "protectorategamesconsole",
      "rarity" : "Common",
      "category" : "decorative",
      "price" : 50,
      "printable" : false,
    
      "description" : "For when you want to procrastinate.",
      "shortdescription" : "Protectorate Games Console",
      "race" : "protectorate",
    
      "apexDescription" : "Sometimes I take it down and play some games with my room mates.",
      "avianDescription" : "Ah, my old games console. I've been focusing on my studies, so it looks a bit dusty...",
      "floranDescription" : "Shooting gamesss are Floran's favourite!",
      "glitchDescription" : "Excited. My games console! I try not to let it distract me during exam season.",
      "humanDescription" : "Oh man... I wish I could play some games right now.",
      "hylotlDescription" : "I can't let myself get distracted by games now.",
      "novakidDescription" : "Work hard, play hard. It's what we do 'round here.",
    
      "inventoryIcon" : "protectorategamesconsoleicon.png",
      "orientations" : [
        {
          "image" : "protectorategamesconsole.png:<color>",
          "imagePosition" : [1, -4],
          "frames" : 1,
          "animationCycle" : 0.5,
    
          "spaceScan" : 0.1,
          "anchors" : []
    
        }
      ]
    }
     

Share This Page