Przeglądaj źródła

optimisation of the "bone socket" tutorial (#3864)

Less matrix operations doing.
pull/3868/head
iP 9 miesięcy temu
committed by GitHub
rodzic
commit
1fad8277a3
Nie znaleziono w bazie danych klucza dla tego podpisu ID klucza GPG: B5690EEEBB952194
1 zmienionych plików z 2 dodań i 4 usunięć
  1. +2
    -4
      examples/models/models_bone_socket.c

+ 2
- 4
examples/models/models_bone_socket.c Wyświetl plik

@ -144,10 +144,8 @@ int main(void)
Matrix matrixTransform = QuaternionToMatrix(rotate);
// Translate socket to its position in the current animation
matrixTransform = MatrixMultiply(matrixTransform, MatrixTranslate(transform->translation.x, transform->translation.y, transform->translation.z));
// Rotate socket by character angle
matrixTransform = MatrixMultiply(matrixTransform, QuaternionToMatrix(characterRotate));
// Translate socket to character position
matrixTransform = MatrixMultiply(matrixTransform, MatrixTranslate(position.x, position.y + 0.0f, position.z));
// Transform the socket using the transform of the character (angle and translate)
matrixTransform = MatrixMultiply(matrixTransform, characterModel.transform);
// Draw mesh at socket position with socket angle rotation
DrawMesh(equipModel[i].meshes[0], equipModel[i].materials[1], matrixTransform);

Ładowanie…
Anuluj
Zapisz