restructure app code for modularizing and organization#49
Merged
skim0119 merged 1 commit intometa2quest-integrationfrom Apr 15, 2026
Conversation
This was referenced Apr 12, 2026
Merged
Collaborator
Author
This was referenced Apr 12, 2026
Merged
843c3a4 to
9d9d51f
Compare
0f5f379 to
93e1add
Compare
9d9d51f to
6fe4b7e
Compare
6fe4b7e to
d2774b8
Compare
93e1add to
5f8d930
Compare
d2774b8 to
67d797b
Compare
Collaborator
Author
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.

TL;DR
Refactored the VR client application by extracting the main app logic into modular components with proper configuration management and state handling.
What changed?
app.jsinto a newcreateAppfactory function inapp/create_app.jsapp/config.jsfor window and runtime configuration, andapp/state.jsfor application state managemententities/rod/arm_geometry.jswith support for "segmented-pipe" and "torus-stack" representationsHow to test?
Why make this change?
This refactoring improves code maintainability and modularity by separating concerns into distinct modules. The new structure makes the codebase more testable, easier to extend, and provides better organization for configuration management and state handling. The addition of comprehensive arm geometry rendering and improved input handling enhances the VR experience functionality.