-
-
Notifications
You must be signed in to change notification settings - Fork 4.4k
Open
Labels
A-AssetsLoad files from disk to use for things like images, models, and soundsLoad files from disk to use for things like images, models, and soundsC-Code-QualityA section of code that is hard to understand or changeA section of code that is hard to understand or changeC-DependenciesA change to the crates that Bevy depends onA change to the crates that Bevy depends on
Description
The fast majority of the cases only need a locally unique id and not a universally unique id as they are never serialized or imported. Using a counter in those cases would likely be faster than generating a random number. It may also allow reducing the size from 128bit to 64bit. There are a couple of user facing uuid's like type uuid's that actually need to be universally unique. For them we should keep using uuid's or consider switching to random 128bit integers that are not necessarily valid uuid's.
MatrixDev
Metadata
Metadata
Assignees
Labels
A-AssetsLoad files from disk to use for things like images, models, and soundsLoad files from disk to use for things like images, models, and soundsC-Code-QualityA section of code that is hard to understand or changeA section of code that is hard to understand or changeC-DependenciesA change to the crates that Bevy depends onA change to the crates that Bevy depends on