Closed mgerhardy closed 2 years ago
Linking the issue from my project: https://github.com/mgerhardy/vengi/issues/113
I wonder whether it's related to the qsort
not being stable and the model_index
not being unique?
Thanks for filing the issue. Can you confirm that with the qsort removed that you get the expected behavior? If so, I'd just be inclined to remove that. Otherwise, I will have to investigate deeper when I get a bit of time.
Yes, without the qsort
it works fine for me.
Great, in that case I think we should just remove the sort. Callers can always do this step themselves if they require it.
Closing as this has been addressed with this commit: https://github.com/jpaver/opengametools/commit/1eb03035e95ae9405a21d214dac747921d965ec4
The order of models that I hand over to
ogt_vox_write_scene
is changed inogt_vox_read_scene
. It would be nice if I could disable this feature with a flag.