| 414 | } |
| 415 | |
| 416 | void BlendShape::Load(ReadStream& stream, byte meshVersion) |
| 417 | { |
| 418 | PROFILE_MEM(GraphicsMeshes); |
| 419 | UseNormals = stream.ReadBool(); |
| 420 | stream.ReadUint32(&MinVertexIndex); |
| 421 | stream.ReadUint32(&MaxVertexIndex); |
| 422 | uint32 blendShapeVertices; |
| 423 | stream.ReadUint32(&blendShapeVertices); |
| 424 | Vertices.Resize(blendShapeVertices); |
| 425 | stream.ReadBytes(Vertices.Get(), Vertices.Count() * sizeof(BlendShapeVertex)); |
| 426 | } |
| 427 | |
| 428 | #if USE_EDITOR |
| 429 |
no test coverage detected