MCPcopy Create free account
hub / github.com/FlaxEngine/FlaxEngine / Dispose

Method Dispose

Source/Engine/Content/Storage/FlaxStorage.cpp:1491–1505  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1489}
1490
1491void FlaxStorage::Dispose()
1492{
1493 if (IsDisposed())
1494 return;
1495
1496 // Close file
1497 if (CloseFileHandles())
1498 {
1499 LOG(Error, "Cannot close file access for '{}'", _path);
1500 }
1501
1502 // Release data
1503 _chunks.ClearDelete();
1504 _version = 0;
1505}
1506
1507void FlaxStorage::Tick(double time)
1508{

Callers 8

InitAsVirtualMethod · 0.45
unloadMethod · 0.45
loadMethod · 0.45
unloadMethod · 0.45
SetBaseMaterialMethod · 0.45
loadMethod · 0.45
unloadMethod · 0.45
UpgradeAssetMethod · 0.45

Calls 4

IsDisposedFunction · 0.85
DisposeFunction · 0.85
ClearDeleteMethod · 0.45
ClearMethod · 0.45

Tested by

no test coverage detected