| 96 | } |
| 97 | |
| 98 | void MeshDeformation::RemoveDeformer(int32 lodIndex, int32 meshIndex, MeshBufferType type, const Function<void(const MeshBase* mesh, MeshDeformationData& deformation)>& deformer) |
| 99 | { |
| 100 | const auto key = GetKey(lodIndex, meshIndex, type); |
| 101 | _deformers[key].Unbind(deformer); |
| 102 | Dirty(lodIndex, meshIndex, type); |
| 103 | } |
| 104 | |
| 105 | void MeshDeformation::RunDeformers(const MeshBase* mesh, MeshBufferType type, GPUBuffer*& vertexBuffer) |
| 106 | { |
no test coverage detected