Modding Discussion I need help with a mod.

Discussion in 'Starbound Modding' started by Bestpick, Dec 10, 2013.

  1. Bestpick

    Bestpick Big Damn Hero

    The problem is that I am making a table for a mod, but I cannot get the sprite to work correctly. Instead of a table in-game, I have the top of the table and the decoration on top of it.
    [​IMG]
    Only the particles and the top of the table appear in-game, the legs don't exist.
    Anyone have any idea on how to fix this w/o making the sprite smaller?
    Thanks.
     
  2. Ghoul159

    Ghoul159 Scruffy Nerf-Herder

    yes in your ".frames" file you have to write the size of you image like this:
    Code:
    {
    
      "frameGrid" : {
        "size" : [40, 32],
        "dimensions" : [1, 1],
        "names" : [
          [ "default" ]
        ]
    
      }
    }
    
     
  3. Bestpick

    Bestpick Big Damn Hero

    Thank you so much, it worked.
     

Share This Page