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
Related to code review #259:
Is there any unnecessary coupling? (e.g., by passing large objects to constructors, or exposing unnecessary properties/functions)
The constructor API for WaveGeneratorNode and its subclasses is too broad. Notes:
WaveGeneratorNode
@param {WavesScreenModel} model
LighterGeneratorNode
model.lightScene
SoundGeneratorNode
model.soundScene
WaterGeneratorNode
model.waterScene
The text was updated successfully, but these errors were encountered:
Pass scenes where appropriate and remove unused parameter, see #286
738368c
Proposed fix committed, please review.
Sorry, something went wrong.
👍 Closing.
pixelzoom
No branches or pull requests
Related to code review #259:
The constructor API for
WaveGeneratorNode
and its subclasses is too broad. Notes:WaveGeneratorNode
does not use@param {WavesScreenModel} model
, that parameter can be deleted.LighterGeneratorNode
does not require the entire model, onlymodel.lightScene
.SoundGeneratorNode
does not require the entire model, onlymodel.soundScene
WaterGeneratorNode
does not require the entire model, onlymodel.waterScene
The text was updated successfully, but these errors were encountered: