I have noticed that "purgeSharedAnimationCache" method call sets the "sharedAnimationCache_" to nil.
+(void)purgeSharedAnimationCache
{
[sharedAnimationCache_ release];
sharedAnimationCache_ = nil;
}
What happens when I then try to add a new CCAnimation to the CCAnimationCache? Will this create a new "sharedAnimationCache"?