Increased max bones to 200

This commit is contained in:
Antoine Pilote
2023-09-06 18:48:51 -04:00
parent 3dc97cafa7
commit 62017e0bd8

View File

@@ -13,7 +13,7 @@ uniform mat4 u_Model;
uniform mat4 u_View;
uniform mat4 u_Projection;
const int MAX_BONES = 100;
const int MAX_BONES = 200;
const int MAX_BONES_INFLUENCE = 4;
uniform mat4 u_FinalBonesMatrice[MAX_BONES];