Renamed SUPPORT_MOUSE_CURSOR_NATIVE -> SUPPORT_MOUSE_CURSOR_POINT
This commit is contained in:
parent
942657fc7c
commit
68e408474d
3 changed files with 19 additions and 18 deletions
|
@ -4800,7 +4800,7 @@ static ModelAnimation *LoadGLTFModelAnimations(const char *fileName, int *animCo
|
|||
// output->framerate = // TODO: Use framerate instead of const timestep
|
||||
|
||||
// Name and parent bones
|
||||
for (unsigned int j = 0; j < output->boneCount; j++)
|
||||
for (int j = 0; j < output->boneCount; j++)
|
||||
{
|
||||
strcpy(output->bones[j].name, data->nodes[j].name == 0 ? "ANIMJOINT" : data->nodes[j].name);
|
||||
output->bones[j].parent = (data->nodes[j].parent != NULL) ? (int)(data->nodes[j].parent - data->nodes) : -1;
|
||||
|
@ -4812,7 +4812,7 @@ static ModelAnimation *LoadGLTFModelAnimations(const char *fileName, int *animCo
|
|||
{
|
||||
output->framePoses[frame] = RL_MALLOC(output->boneCount*sizeof(Transform));
|
||||
|
||||
for (unsigned int i = 0; i < output->boneCount; i++)
|
||||
for (int i = 0; i < output->boneCount; i++)
|
||||
{
|
||||
output->framePoses[frame][i].translation = Vector3Zero();
|
||||
output->framePoses[frame][i].rotation = QuaternionIdentity();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue