Sprites temporarily invisible

edited September 2013 in Support
http://jsfiddle.net/XgHvD/

Start the game, then click a few times. The function that spawns the cards is on line 44.

As you can see here, whenever a sprite is created during runtime, it is invisible for about a second. Yet the missiles in the tutorial do not suffer from this problem. What are we missing?

I managed to improve it a bit from what it shown here by moving the spawning from the click event into the main loop, using the event to set a flag instead of spawning directly. But it's still painfully delayed, and all the other graphics that we add dynamically have the same problem. What's up?

Comments

  • Oh my goodness, I think it's just Dropbox being slow.

    I thought animations would be loaded in local memory, not picked up on the fly. What's up with that?
  • Accepted Answer
    Hi,

    After doing some debugging of your code I found this out: the images served by dropbox are marked as: cache-control:no-cache. This means that in effect the cache is bypassed and the browser as to request the images each time.

    I don't know why dropbox is doing this and if it can be disabled but I wouldn't use dropbox as an hosting if you can use something else...
  • Oh wow, thank you! I wasn't even aware that was a thing.

    Yeah, Dropbox is merely a temporary hosting solution as Kodingen is down.
Sign In or Register to comment.