You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* chore: First pass.
* Pin bevy to 0.14.2 and migrate rhai asset loader future
* roll back nightly version to try generating with it
* typo
* fix stack overflow and improve logging in bootstrapping, build bootstrap into nearest target
* bump rust version for codegen
* typo
* fix issues with file loader
* generate new providers
* add uuid dependency
* ignore TypeId as a proxy
* re-generate bevy_reflect
* fix missing GetTypeRegistration bounds (this is good to have anyway)
* fix compilation errors in examples
* add wsl exports
* formatting
* fix clippy warnings
* more clippy fixes
* fix macro tests
* fix macro test
---------
Co-authored-by: Shane Celis <shane.celis@gmail.com>
To run the main codegen process, use the following command:
19
19
20
20
```bash
21
-
cargo +nightly-2024-01-24 bevy-api-gen generate
21
+
cargo +nightly-2024-05-20 bevy-api-gen generate
22
22
```
23
23
24
-
This will perform all parts of the process and generate meta as well as .rs files for each crate in your workspace in your `/target/plugin-nightly-2024-01-24/bevy_api_gen` directory
24
+
This will perform all parts of the process and generate meta as well as .rs files for each crate in your workspace in your `/target/plugin-nightly-2024-05-20/bevy_api_gen` directory
25
25
26
26
## Collect
27
27
28
28
After generating all the files, you can 'collect' them in a mod.rs file like so:
29
29
30
30
```bash
31
-
cargo +nightly-2024-01-24 bevy-api-gen collect
31
+
cargo +nightly-2024-05-20 bevy-api-gen collect
32
32
```
33
33
34
34
## List Types
35
35
36
36
To see a list of all `Reflect` implementing types in your workspace run:
0 commit comments