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
AS3: mHelperImage.scaleX = mHelperImage.scaleY = charLocation.scale;
JS: this.mHelperImage.set_scaleX(this.mHelperImage.set_scaleY(charLocation.scale));
Expected JS: this.mHelperImage.set_scaleY(charLocation.scale); this.mHelperImage.set_scaleX(this.mHelperImage.get_scaleY());
There is cases where it looks like this: eatParticleToTrack.scaleX = eatParticleToTrack.scaleY = Math.random() * 0.3 + 0.3;
Where the right side needs to be evaluated only once then set across both left side expressions.
The text was updated successfully, but these errors were encountered:
pending get/set properties
Sorry, something went wrong.
No branches or pull requests
AS3:
mHelperImage.scaleX = mHelperImage.scaleY = charLocation.scale;
JS:
this.mHelperImage.set_scaleX(this.mHelperImage.set_scaleY(charLocation.scale));
Expected JS:
this.mHelperImage.set_scaleY(charLocation.scale);
this.mHelperImage.set_scaleX(this.mHelperImage.get_scaleY());
There is cases where it looks like this:
eatParticleToTrack.scaleX = eatParticleToTrack.scaleY = Math.random() * 0.3 + 0.3;
Where the right side needs to be evaluated only once then set across both left side expressions.
The text was updated successfully, but these errors were encountered: