We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
We need to provide a way of defining systems that doesn't rely on the transformer or on handwriting system properties.
I accidentally committed some of the toying around with this I did so could be a good starting point 🤷
A systembuilder is probably the ideal way to handle this. For example:
const mySystem = system() .query([Position, Velocity]) .res(Time) .build((query, time) => { /* ... */ })
Must be well typed and extensible - probably configureable by providing an object to the system() function.
system()
const mySystem = system({mySystemParam: MySystemParam }) .mySystemParam() // Now defined and strongly typed .build()
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Describe the problem this feature solves
We need to provide a way of defining systems that doesn't rely on the transformer or on handwriting system properties.
I accidentally committed some of the toying around with this I did so could be a good starting point 🤷
Describe the solution you'd like to see
A systembuilder is probably the ideal way to handle this.
For example:
Must be well typed and extensible - probably configureable by providing an object to the
system()
function.The text was updated successfully, but these errors were encountered: