Modding Help New object, animated - frame duplicates

Discussion in 'Starbound Modding' started by Silverforte, Aug 6, 2016.

  1. Silverforte

    Silverforte Spaceman Spiff

    Trying to make a new crafting station. Got it in-game, art done, animations done. It's 5 frames. Whenever I add the other frames, it just does this:

    [​IMG]

    .frames:


    {
    "frameGrid" : {
    "size" : [29, 31],
    "dimensions" : [2, 1],
    "names" : [
    [ "default.0", "default.1" ]
    ]
    },

    "aliases" : {
    "default.default" : "default.0"
    }
    }


    .object

    {
    "objectName" : "spellaltarcraft",
    "colonyTags" : ["cooking"],
    "printable" : false,
    "price" : 100,
    "rarity" : "Uncommon",
    "category" : "crafting",
    "interactAction" : "OpenCraftingInterface",
    "interactData" : {
    "config" : "/interface/windowconfig/craftingfood.config",
    "filter" : [ "craftingfood" ]
    },
    "description" : "Used to produce wholesome foods with a variety of effects.",
    "shortdescription" : "^orange;Kitchen Counter^white;",
    "race" : "generic",

    "apexDescription" : "This table contains everything one could need to create almost any dish.",
    "avianDescription" : "Almost any Avian dish could be prepared here. And many non-Avian dishes too, for that matter!",
    "floranDescription" : "Floran prepare food with bare handsss. But table also ussseful.",
    "glitchDescription" : "Inspired. Let's create food!",
    "humanDescription" : "A chef's table. A whole bunch of different implements for making food.",
    "hylotlDescription" : "Food preparation is an art and this is the paintbrush.",
    "novakidDescription" : "I could cook up a storm on this 'ere thing.",

    "inventoryIcon" : "spellaltarcrafticon.png",
    "orientations" : [
    {
    "dualImage" : "spellaltarcraft.png",

    "imagePosition" : [-16, 0],
    "frames" : 2,
    "animationCycle" : 3.0,

    "spaceScan" : 0.1,
    "anchors" : [ "bottom" ]

    }
    ],

    "npcToy" : {}
    }


    Any help would be greatly appreciated. Please point out my novice mistake. Single image of the object has been checked several times to be 29,31.
     
  2. The | Suit

    The | Suit Agent S. Forum Moderator

    size = size of a single frame. You sure that is the exact size of a single frame?
     
  3. Silverforte

    Silverforte Spaceman Spiff

    Yeah, I've redone it twice.

    spellaltarcraft.png
     

Share This Page