2D Toolkit Forum

2D Toolkit => Support => Topic started by: Dreamkind on October 16, 2013, 07:32:14 pm

Title: Dynamically Load Animation library
Post by: Dreamkind on October 16, 2013, 07:32:14 pm
Hi, I saw this thread and had some questions:
http://unikronsoftware.com/2dtoolkit/forum/index.php/topic,1890.0.html

It solves the problem of loading the Library dynamically, but It threw up some flags in my mind about what is included on the device. Before the current way of being able to mark a sprite collection as loadable, I used to do the same sort of thing to dynamically load a sprite collection. I made the mistake of moving the editor object down with the data object, and it included all of the individual image files along side the atlases. Will the method mentioned in this thread cause the images associated with each frame to be included in the final resources as well?
Title: Re: Dynamically Load Animation library
Post by: JFBillingsley on October 16, 2013, 11:17:03 pm
Sprite animation libraries reference sprite collection data, not the original individual images, so nope.
Title: Re: Dynamically Load Animation library
Post by: Dreamkind on October 17, 2013, 05:56:44 pm
Thanks!