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
AssetManager
numConnections
1
AssetManager: Setting numConnections will result in numConnections always being 1. This is due to the Setter using a MathUtil.min:
MathUtil.min
public function set numConnections(value:int):void { _numConnections = MathUtil.min(1, value); }
I would think that it was ment to be MathUtil.max to use the highest injected value, but never go below "1".
MathUtil.max
The text was updated successfully, but these errors were encountered:
Oh my! Good find, @2jfw. I clearly never tested that. 🙉
I'll fix that - thanks a lot for pointing me at it. 👍
Sorry, something went wrong.
Awesome, much appreciated, Daniel! 👍
Also, many thanks for still taking care of as3 Starling! ❤
7402f4b
I just committed the fix, @2jfw! Thanks again - for making me aware of this, and for the nice words. 😁
No branches or pull requests
AssetManager
:Setting
numConnections
will result innumConnections
always being1
.This is due to the Setter using a
MathUtil.min
:I would think that it was ment to be
MathUtil.max
to use the highest injected value, but never go below "1".The text was updated successfully, but these errors were encountered: