diff options
Diffstat (limited to 'src/entities.hpp')
| -rw-r--r-- | src/entities.hpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/entities.hpp b/src/entities.hpp index bdcb3eb..41ae7fd 100644 --- a/src/entities.hpp +++ b/src/entities.hpp @@ -27,10 +27,10 @@ struct EntityType { VkDescriptorPool vkDescriptorPool = VK_NULL_HANDLE; uint32_t startingInstanceCount = 1024; struct Importer_GLTF { - int16_t AccessorIndexVertex = -1; - int16_t AccessorIndexNormal = -1; - int16_t AccessorIndexUV = -1; - int16_t AccessorIndexIndex = -1; + int16_t AccessorIndexVertex = 0; + int16_t AccessorIndexNormal = 1; + int16_t AccessorIndexUV = 2; + int16_t AccessorIndexIndex = 3; } Importer_GLTF; struct { btCollisionShape *shape = nullptr; |
