瀏覽代碼

REVIEWED: Model scale #1700

pull/1707/head
raysan5 4 年之前
父節點
當前提交
7b37caa96c
共有 1 個檔案被更改,包括 1 行新增1 行删除
  1. +1
    -1
      src/models.c

+ 1
- 1
src/models.c 查看文件

@ -4330,7 +4330,7 @@ static void InitGLTFBones(Model* model, const cgltf_data* data)
currentTransform->rotation = QuaternionMultiply(parentTransform->rotation, currentTransform->rotation);
currentTransform->translation = Vector3RotateByQuaternion(currentTransform->translation, parentTransform->rotation);
currentTransform->translation = Vector3Add(currentTransform->translation, parentTransform->translation);
currentTransform->scale = Vector3Multiply(parentTransform->scale, parentTransform->scale);
currentTransform->scale = Vector3Multiply(currentTransform->scale, parentTransform->scale);
completedBones[i] = true;
numberCompletedBones++;
}

Loading…
取消
儲存