InitialPrefabs / UGUIDOTS

Converting UGUI to be DOTS compliant
MIT License
114 stars 12 forks source link

Optimize the Min Heap #68

Closed psuong closed 3 years ago

psuong commented 3 years ago

I made a naive implementation to test out my idea for building dynamic text in order, a minified heap would work much better for fetching min values (log(n) vs o(n)).

psuong commented 3 years ago

Closing this issue since I moved away from a min heap in favor of sorting.