Seperation of concerns: World #388
Labels
No labels
Context: Async
Context: Bug
Context: CI
Context: Dependencies
Context: Documentation
Context: Enhancement
Context: Example
Context: Macro
Context: Runtime
Difficulty: Easy
Difficulty: Hard
Difficulty: Medium
Platform: Android
Platform: Linux
Platform: Web
Platform: Windows
Platform: iOS
Platform: macOS
Type: Discussion
Type: Evaluation
Type: Tracker
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
SakulFlee/Orbital#388
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
The current implementation of
Worldis functional and efficient, but messy.We should split it up into multiple smaller parts, similar to how
ElementStorealready took out theElementpart of World.Furthermore, we should make
WorldChanges either domain specific (e.g.Element,Light,Model, etc.) or sort them into such categories inWorld.A collection of necessary
WorldChanges then should be passed down into each domain to be processed there.Additionally, this would open up
Worldto be much more async friendly as currently,World::process_world_changescannot be run asynchronous.Pre: #409
Done with v3 recode