mirror of
https://github.com/raysan5/raylib.git
synced 2025-09-18 17:28:15 +00:00
Renamed SUPPORT_MOUSE_CURSOR_NATIVE -> SUPPORT_MOUSE_CURSOR_POINT
This commit is contained in:
@@ -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();
|
||||
|
Reference in New Issue
Block a user