Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Convenient Methods for Accessing the World Directly Through &World #292

Open
zicklag opened this issue Jan 7, 2024 · 0 comments
Open

Convenient Methods for Accessing the World Directly Through &World #292

zicklag opened this issue Jan 7, 2024 · 0 comments
Labels
good first issue Good for newcomers help wanted Extra attention is needed

Comments

@zicklag
Copy link
Member

zicklag commented Jan 7, 2024

Right now the only ergonomic way to modify the world is through systems, which take component and resource parameters. This results in a large number of function parameters, which, while helpful for multi-threaded system scheduling later, isn't needed in all cases and is potentially annoying.

There are also times where you want to be able to modify the world more easily outside of a system.

What we want to do is create an ergonomic way to access and modify the world directly on the &World, without having to create or run systems to do it. This will help in situations where you want to just take a &World parameter in a system, and when you want to modify the world outside of a system.

@zicklag zicklag added help wanted Extra attention is needed good first issue Good for newcomers labels Jan 7, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
good first issue Good for newcomers help wanted Extra attention is needed
Projects
None yet
Development

No branches or pull requests

1 participant