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
To run the main codegen process, use the following command:
19
19
20
20
```bash
21
-
cargo +nightly-2024-05-20 bevy-api-gen generate
21
+
cargo +nightly-2024-11-05 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-05-20/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-11-05/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-05-20 bevy-api-gen collect
31
+
cargo +nightly-2024-11-05 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