Axiom.Core.ResourceManager.UnloadAll C# (CSharp) Méthode

UnloadAll() public méthode

Unloads all resources.
Unloaded resources are not removed, they simply free up their memory as much as they can and wait to be reloaded. ResourceGroupManager for unloading of resource groups.
public UnloadAll ( ) : void
Résultat void
		public virtual void UnloadAll()
		{
			foreach ( Resource res in _resources.Values )
			{
				res.Unload();
			}
		}