Modding Help attacking troubles...

Discussion in 'Starbound Modding' started by Zanderfel, Mar 20, 2017.

  1. Zanderfel

    Zanderfel Big Damn Hero

    https://drive.google.com/open?id=0B7MGxXUBlx4Gdm1VemRNVlozZFk
    Have at it.
     
  2. IHart

    IHart Scruffy Nerf-Herder

    you had
    Code:
      "swoosh": {
      "properties": {
      "zLevel": -1,
      "centered": true,
      "fullbright": true,
      "offset" : [0.8, 2.75],
      "transformationGroups": ["swoosh"],
      "rotationCenter": [0, 0]
      }
      },
      "partStates": {
      "swoosh": {
      "idle": {
      "properties": {
      "image": ""
      }
      },
      "fire": {
      "properties": {
      "image": "/items/active/weapons/melee/floransaber/Slash/Saberslash.png:<frame>",
      "offset": [0.8, 2.75],
      "damageArea": [[-5, 2], [-2.5, 3], [1, 3], [4, 1.75], [5, -0.25], [5, -2.25], [4, -3.25], [0, -2.5]]
      }
      },
      "fire2": {
      "properties": {
      "image": "/items/active/weapons/melee/floransaber/Slash4/saberslash4.png:<frame>",
      "offset": [0.8, -2.75],
      "damageArea": [[-5, -2], [-2.5, -3], [1, -3], [4, -1.75], [5, 0.25], [5, 2.25], [4, 3.25], [0, 2.5]]
      }
      },
      "fire3": {
      "properties": {
      "image": "/items/active/weapons/melee/floransaber/Slash/Saberslash.png:<frame>",
      "offset": [0.8, 2.75],
      "damageArea": [[-5, 2], [-2.5, 3], [1, 3], [4, 1.75], [5, -0.25], [5, -2.25], [4, -3.25], [0, -2.5]]
      }
      }
      }
      }
      }
      },
    where it should have been
    Code:
      "swoosh": {
      "properties": {
      "zLevel": -1,
      "centered": true,
      "fullbright": true,
      "offset" : [0.8, 2.75],
      "transformationGroups": ["swoosh"],
      "rotationCenter": [0, 0]
      },
      "partStates": {
      "swoosh": {
      "idle": {
      "properties": {
      "image": ""
      }
      },
      "fire": {
      "properties": {
      "image": "/items/active/weapons/melee/floransaber/Slash/Saberslash.png:<frame>",
      "offset": [0.8, 2.75],
      "damageArea": [[-5, 2], [-2.5, 3], [1, 3], [4, 1.75], [5, -0.25], [5, -2.25], [4, -3.25], [0, -2.5]]
      }
      },
      "fire2": {
      "properties": {
      "image": "/items/active/weapons/melee/floransaber/Slash4/saberslash4.png:<frame>",
      "offset": [0.8, -2.75],
      "damageArea": [[-5, -2], [-2.5, -3], [1, -3], [4, -1.75], [5, 0.25], [5, 2.25], [4, 3.25], [0, 2.5]]
      }
      },
      "fire3": {
      "properties": {
      "image": "/items/active/weapons/melee/floransaber/Slash/Saberslash.png:<frame>",
      "offset": [0.8, 2.75],
      "damageArea": [[-5, 2], [-2.5, 3], [1, 3], [4, 1.75], [5, -0.25], [5, -2.25], [4, -3.25], [0, -2.5]]
      }
      }
      }
      }
      }
      }
      },
     
  3. IHart

    IHart Scruffy Nerf-Herder

    also, i'm pretty sure modinfo was replaced by metadata
     
  4. IHart

    IHart Scruffy Nerf-Herder

    here is the working animation file.
     

    Attached Files:

  5. Zanderfel

    Zanderfel Big Damn Hero

    excellent. thank you!....always something so simple

    and i did not know about the modinfo replacement and i did find it odd that they had pretty much the same information...
     

Share This Page