repo: remove big_space options#39
Merged
Merged
Conversation
ChangelogNotable changes to this project will be documented in this file. 0.2.1 - 2025-07-02⚙️ Repository
📜 Full ChangelogChangelogNotable changes to this project will be documented in this file. 0.2.0 - 2025-06-27🚀 Features
♻️ Refactor
🐛 Bug Fixes
⚙️ Repository |
philiplinden
added a commit
that referenced
this pull request
Jul 2, 2025
* repo: remove big_space options * Update changelog --------- Co-authored-by: philiplinden <philiplinden@users.noreply.github.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This pull request removes the
grid_spacefeature and its associated dependencies, functionality, and configuration from thebuoy-physics,buoy-runtime, andbuoy-uicrates. The changes streamline the codebase by eliminating unused or optional features related to hierarchical grid systems and large-scale simulations.Removal of
grid_spaceFeature and DependenciesDependencies and Features:
big_spacedependency and thegrid_spacefeature fromCargo.tomlfiles across multiple crates (crates/buoy-physics/Cargo.toml,crates/buoy-runtime/Cargo.toml,crates/buoy-ui/Cargo.toml). [1] [2] [3]Codebase:
grid.rsmodule inbuoy-physics, which implemented the hierarchical grid system usingbig_space.FluidVolumeand related components, builders, and systems fromfluid_volume.rs.grid_spaceinlib.rsfiles ofbuoy-physics,buoy-runtime, andbuoy-ui. [1] [2] [3]Simplification of Camera and Debug Systems
Camera Systems:
setup_floating_camerafunction and relatedbig_space::cameralogic fromcamera.rsinbuoy-ui. The camera system now defaults to a simpler implementation. [1] [2]Debug Systems:
FloatingOriginDebugPluginand othergrid_space-related debugging tools fromdebug.rsinbuoy-ui. [1] [2]Cleanup of Related Code and Imports
Unused Imports:
big_space,uom, and othergrid_space-related modules from various files, such asforces.rsandballoon.rs. [1] [2]Feature Flags:
grid_spacefeature flag references inCargo.tomland associated conditional logic in the codebase. [1] [2] [3]These changes simplify the codebase by removing unused complexity, making it easier to maintain and reducing dependencies.