1. Welcome to the Starbound support forums. Please check the support FAQs before posting: http://playstarbound.com/support

Closed Dis ain't cool.

Discussion in 'Starbound Support' started by Dirigible Tomato, Dec 28, 2013.

Thread Status:
Not open for further replies.
  1. RvLesh

    RvLesh Parsec Taste Tester

    Frankly, if there are just a small number of you having this issue with assets, you should delete the assets directory *completely* and then Verify to redownload them all, or compare mods (should you be using mods).

    I haven't really done any decorating since the last patch.
     
  2. Dirigible Tomato

    Dirigible Tomato Scruffy Nerf-Herder

    You know, you're saying "try this first" or "try toying with it" but you haven't actually told me what it is I'm supposed to be trying or toying with.
     
  3. GreyMaria

    GreyMaria Existential Complex

    That's because he doesn't actually know what he's talking about. player.config is not the solution.
     
  4. Dirigible Tomato

    Dirigible Tomato Scruffy Nerf-Herder

    Well alrighty then. I'll try what RvLesh said.
     
  5. BeLe

    BeLe Big Damn Hero

    did it fix it?
     
  6. Dirigible Tomato

    Dirigible Tomato Scruffy Nerf-Herder

    Unfortunately not. The problem remains. Which means it probably has naught to do with anything in the assets folder, unless something outside of it causes the problem beforehand.
     
  7. Pentarctagon

    Pentarctagon Over 9000!!!

    Just for reference, the image offsets are defined in .object files, specifically the line:
    Code:
    "imagePosition" : [-16, 0],
    where (in this example) -16 is the x offset and 0 is the y offset. So for a 32 pixel image, that would put the cursor at the bottom-middle when placing it.
     
    infinitetech likes this.
  8. RvLesh

    RvLesh Parsec Taste Tester

    Wait... maybe we're misunderstanding the problem.

    Is this a display issue, or can you not place the items?

    The original screenshots aren't clear.
     
  9. Dirigible Tomato

    Dirigible Tomato Scruffy Nerf-Herder

    Both. Or neither.
    It also happens on floors, but not ceilings.
    [​IMG]
     
  10. Pentarctagon

    Pentarctagon Over 9000!!!

    I could be wrong, but aren't those lights supposed to be full circles instead of half circles?
     
  11. BeLe

    BeLe Big Damn Hero

    Unless there's suddenly a bug in the engine for this particular thing, I think it would be a bug with the object file @Starbound/assets/objects/floran/floranlight
    If you feel like messing with it you can, the positions affected are apparently right1 and ground1
    ed: if not I'll mess with it in a little while.
     
    infinitetech likes this.
  12. Dirigible Tomato

    Dirigible Tomato Scruffy Nerf-Herder

    They become half circles when placed against walls or floors. That part isn't a bug.
     
  13. RvLesh

    RvLesh Parsec Taste Tester

    That screenshot makes a lot more sense.

    Was in the middle of writing... yes, the imagePosition on those two aren't correct, and should be changed to match left1 and ceiling1, respectively.

    I thought I saw one of the devs mention that a number of these were accidentally screwed up in the last patch.
     
  14. Pentarctagon

    Pentarctagon Over 9000!!!

    Ah, I didn't realize. I'd always assumed the other half was underneath the wall/floor. In that case it looks like the game is thinking it's half under a wall/floor when it's actually just next to it.
     
  15. BeLe

    BeLe Big Damn Hero

    [​IMG]
    Code:
    {
      "objectName" : "floranlight",
      "rarity" : "Common",
      "description" : "The pod emits a natural green light.",
      "shortdescription" : "Floran Light",
      "race" : "floran",
    
      "category" : "light",
      "price" : "500",
      "lightColor" : [118, 191, 96],
    
      "apexDescription" : "A spooky green Floran light.",
      "avianDescription" : "I wonder how the Floran control where their lighting grows.",
      "floranDescription" : "Floran light gain power from sssun. Releassse power sslow.",
      "glitchDescription" : "Inspect. The growth of these pods appears to be strictly controlled.",
      "humanDescription" : "The green glow makes me uncomfortable.",
      "hylotlDescription" : "These pods seem anything but natural.",
    
      "inventoryIcon" : "floranlighticon.png",
      "orientations" : [
      {
      "imageLayers" : [ { "image" : "floranlightback1.png:<color>.<frame>", "unlit" : true }, { "image" : "floranlightback2.png:<color>.<frame>" } ],
      "imagePosition" : [-8, 0],
      "frames" : 1,
      "animationCycle" : 0.3,
      "spaceScan" : 0.1,
      "anchors" : [ "background" ]
      },
      {
      "imageLayers" : [ { "image" : "floranlightceiling1.png:<color>.<frame>", "unlit" : true }, { "image" : "floranlightceiling2.png:<color>.<frame>" } ],
      "imagePosition" : [0, 0],
      "frames" : 1,
      "animationCycle" : 0.3,
    
      "spaceScan" : 0.1,
      "anchors" : [ "top" ]
      },
      {
      "imageLayers" : [ { "image" : "floranlightground1.png:<color>.<frame>", "unlit" : true }, { "image" : "floranlightground2.png:<color>.<frame>" } ],
      "imagePosition" : [0, 0],
      "frames" : 1,
      "animationCycle" : 0.3,
    
      "spaceScan" : 0.1,
      "anchors" : [ "bottom" ]
      },
      {
      "imageLayers" : [ { "image" : "floranlightleft1.png:<color>.<frame>", "unlit" : true }, { "image" : "floranlightleft2.png:<color>.<frame>" } ],
      "imagePosition" : [0, 0],
      "frames" : 1,
      "animationCycle" : 0.3,
    
      "spaceScan" : 0.1,
      "anchors" : [ "left" ]
      },
      {
      "imageLayers" : [ { "image" : "floranlightright1.png:<color>.<frame>", "unlit" : true }, { "image" : "floranlightright2.png:<color>.<frame>" } ],
      "imagePosition" : [0, 0],
      "frames" : 1,
      "animationCycle" : 0.3,
    
      "spaceScan" : 0.1,
      "anchors" : [ "right" ]
      }
      ]
    }
    
     
    infinitetech likes this.
  16. Dirigible Tomato

    Dirigible Tomato Scruffy Nerf-Herder

  17. RvLesh

    RvLesh Parsec Taste Tester

    That's the correct .object for the floranlight
     
  18. BeLe

    BeLe Big Damn Hero

    Open Starbound/assets/objects/floran/floranlight/floranlight.object in a text editor like notepad or notepad++
    Select all, hit backspace, and paste in the contents of the code block in my post.
    Actually I can probably make it easier...
    https://dl.dropboxusercontent.com/u/1053652/floranlight.object
    Save it and replace your original.
     
    infinitetech likes this.
  19. Dirigible Tomato

    Dirigible Tomato Scruffy Nerf-Herder

    Just bumping this, because the problem still exists.
     
  20. Jonesy

    Jonesy Sarif's Attack Kangaroo Forum Moderator

    Are you aware of the new rules surrounding bumping?

    Normally I would lock the thread at this point, but I'll let it slide if the problem being discussed still exists. Next time, though, you really shouldn't make a necro post that doesn't contribute to the discussion.
     
Thread Status:
Not open for further replies.

Share This Page