| 189 | |
| 190 | protected: |
| 191 | void set(const ::Model& model) { |
| 192 | transform = model.transform; |
| 193 | |
| 194 | meshCount = model.meshCount; |
| 195 | materialCount = model.materialCount; |
| 196 | meshes = model.meshes; |
| 197 | materials = model.materials; |
| 198 | meshMaterial = model.meshMaterial; |
| 199 | |
| 200 | skeleton.boneCount = model.skeleton.boneCount; |
| 201 | skeleton.bones = model.skeleton.bones; |
| 202 | skeleton.bindPose = model.skeleton.bindPose; |
| 203 | currentPose = model.currentPose; |
| 204 | boneMatrices = model.boneMatrices; |
| 205 | } |
| 206 | }; |
| 207 | } // namespace raylib |
| 208 |
nothing calls this directly
no outgoing calls
no test coverage detected