Modding Help disable tram platform passthrough

Discussion in 'Starbound Modding' started by Shadowblitz16, Nov 28, 2018.

  1. Shadowblitz16

    Shadowblitz16 Pangalactic Porcupine

    hello i am currently trying to edit the stationtram object so that npcs and players cannot drop down through it.
    there doesn't seem to be any documentation on the json keys but basically i need to know what the keys are for "collisionKind" and /orif there are any ways of disabling pass through for platforms.

    Code:
      "movementSettings" : {
        "collisionPoly" : [ [-2.5, 3.75], [2.5, 3.75], [2.5, 0.5], [1.5, -0.25], [-1.5, -0.25], [-2.5, 0.5] ],
        "mass" : 2.0,
        "ignorePlatformCollision" : true,
        "physicsEffectCategories" : []
      },
    
      "loungePositions" : {
        "seat" : {
          "part" : "gate",
          "partAnchor" : "standPosition",
          "orientation" : "stand"
        }
      },
    
      "physicsCollisions" : {
        "platform" : {
          "collision" : [ [-2.5, 0.5], [2.5, 0.5] ],
          "collisionKind" : "platform"
        }
      },
     
  2. bk3k

    bk3k Oxygen Tank

    Just off the top of my head I think this might work.
    Code:
    "collisionKind" : "solid"
     
  3. Shadowblitz16

    Shadowblitz16 Pangalactic Porcupine

    tired that but it turns the item into perfectly generic item
     

Share This Page