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
So currently the watcher configuration line looks rather like this:
config :ecstatic, :watchers, fn() -> PhysicsSim.Watchers.watchers end
And I think it might be much simpler to represent it like this:
config :ecstatic, :watchers, [PhysicsSim.Watchers]
...and then internally have Ecstatic concatenate all of the watchers from each module together (by calling watchers/0 on each)
Ecstatic
watchers/0
The text was updated successfully, but these errors were encountered:
sikanrong
No branches or pull requests
So currently the watcher configuration line looks rather like this:
And I think it might be much simpler to represent it like this:
...and then internally have
Ecstatic
concatenate all of the watchers from each module together (by callingwatchers/0
on each)The text was updated successfully, but these errors were encountered: