From 2bb4d36c43a8061ab2ede5729be23a6d2ceba2be Mon Sep 17 00:00:00 2001 From: Peter0x44 Date: Sat, 30 Oct 2021 22:43:07 +0100 Subject: [PATCH] Add missing file extensions for drag-and-drop support (#2090) --- examples/models/models_loading.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/examples/models/models_loading.c b/examples/models/models_loading.c index 0c9b702b..f13b11ef 100644 --- a/examples/models/models_loading.c +++ b/examples/models/models_loading.c @@ -74,6 +74,8 @@ int main(void) { if (IsFileExtension(droppedFiles[0], ".obj") || IsFileExtension(droppedFiles[0], ".gltf") || + IsFileExtension(droppedFiles[0], ".glb") || + IsFileExtension(droppedFiles[0], ".vox") || IsFileExtension(droppedFiles[0], ".iqm")) // Model file formats supported { UnloadModel(model); // Unload previous model