Skip to content
New issue

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

TMXImageLayer的构造函数存在bug #32

Open
hm365x opened this issue Jan 10, 2018 · 0 comments
Open

TMXImageLayer的构造函数存在bug #32

hm365x opened this issue Jan 10, 2018 · 0 comments

Comments

@hm365x
Copy link

hm365x commented Jan 10, 2018

以下两句会将_opacity和visible的默认值设置错误, 分别为NaN, false
this._opacity = (typeof +data.attributes.opacity !== "undefined") ? +data.attributes.opacity : 1;
this.visible = (typeof +data.attributes.visible !== "undefined") ? Boolean(+data.attributes.visible) : true;
应改为和TMXLayer一样
this._opacity = (typeof data.attributes.opacity !== "undefined") ? parseFloat(data.attributes.opacity) : 1;
this.visible = (typeof data.attributes.visible !== "undefined") ? Boolean(+data.attributes.visible) : true;

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant