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

Method Load

Source/Engine/Animations/Graph/AnimGraph.Base.cpp:40–55  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

38}
39
40bool AnimGraphBase::Load(ReadStream* stream, bool loadMeta)
41{
42 ASSERT(_graph);
43 _rootNode = nullptr;
44 BucketsCountSelf = 0;
45 BucketsCountTotal = 0;
46 BucketsStart = _graph->_bucketsCounter;
47
48 // Base
49 if (VisjectGraph::Load(stream, loadMeta))
50 return true;
51
52 BucketsCountTotal += BucketsCountSelf;
53
54 return false;
55}
56
57void AnimGraphBase::Clear()
58{

Callers 1

LoadSubGraphMethod · 0.45

Calls 1

LoadFunction · 0.50

Tested by

no test coverage detected