Open Issues Need Help
View All on GitHubAI Summary: The issue indicates that the Cargo build system is encountering duplicate source files (`lib.rs`) across multiple build targets (e.g., `android` and `desktop`). This likely stems from a misconfiguration in the `Cargo.toml` files of the examples. The solution involves reviewing the `Cargo.toml` files for each example (`SkyBox`, `PBRSpheres`, `DamagedHelmet`) and ensuring that the `lib.rs` file is correctly associated with only one build target (either `lib` or `bin`, depending on the intended functionality of the example). The `lib` target usually indicates a library, while `bin` indicates an executable.
AI Summary: Modify the Akimo Engine's StandardCameraController to allow changing settings like cursor grabbing and hiding via messages, instead of only during creation. This requires adding message handling functionality to the controller and potentially updating the engine's messaging system.