LeshaInc
LeshaInc
This code will slowly eat all available memory: ```rust loop { let a = #{}; a.a = a; // if you comment this line, everything will be fine } ```...
# Objective Implements #9216 ## Solution - Replace `DiagnosticId` by `DiagnosticPath`. It's pre-hashed using `const-fnv1a-hash` crate, so it's possible to create path in const contexts. --- ## Changelog - Replaced...
# Objective It's useful to have access to render pipeline statistics, since they provide more information than FPS alone. For example, the number of drawn triangles can be used to...
It would be nice to support non-uniform cost pathfinding. For instance, agents would be able to avoid crossing water or other difficult terrain. I don't know much about the algorithm...