MCPcopy Create free account
hub / github.com/RobLoach/raylib-cpp / set

Method set

include/ModelUnmanaged.hpp:191–205  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

189
190protected:
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

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected