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

Method Save

Source/Engine/Animations/SceneAnimations/SceneAnimation.cpp:236–246  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

234}
235
236bool SceneAnimation::Save(const StringView& path)
237{
238 if (OnCheckSave(path))
239 return true;
240 ScopeLock lock(Locker);
241 MemoryWriteStream stream;
242 SaveData(stream);
243 BytesContainer data;
244 data.Link(ToSpan(stream));
245 return SaveTimeline(data);
246}
247
248#endif
249

Callers

nothing calls this directly

Calls 3

SaveDataFunction · 0.85
ToSpanFunction · 0.50
LinkMethod · 0.45

Tested by

no test coverage detected