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

Method Save

Source/Engine/Content/Assets/SkinnedModel.cpp:436–443  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

434}
435
436void BlendShape::Save(WriteStream& stream) const
437{
438 stream.WriteBool(UseNormals);
439 stream.WriteUint32(MinVertexIndex);
440 stream.WriteUint32(MaxVertexIndex);
441 stream.WriteUint32(Vertices.Count());
442 stream.WriteBytes(Vertices.Get(), Vertices.Count() * sizeof(BlendShapeVertex));
443}
444
445#endif
446

Callers 1

SaveMeshMethod · 0.45

Calls 4

WriteBoolMethod · 0.45
CountMethod · 0.45
WriteBytesMethod · 0.45
GetMethod · 0.45

Tested by

no test coverage detected