xml3d / xml3d.js

The WebGL/JS implementation of XML3D
Other
75 stars 25 forks source link

Unhandled value changed event in view adapter for attribute:fieldofview #121

Closed ghost closed 9 years ago

ghost commented 9 years ago

Changing the fieldOfView parameter either using viewNode.setAttribute('fieldofview', 0.9); or using viewNode.fieldOfView = 0.9; yields the following warning:

Unhandled value changed event in view adapter for attribute:fieldofview

Setting fieldofview in the .html document works as expected.

csvurt commented 9 years ago

Confirmed on 4.9.1. Apparently none of the tests we have for this checked the internal state of the renderer, only the state of the attribute and field on the element.

I've pushed a fix to the develop branch, we'll do a bugfix release later this week after we've added regression tests. Until then you could use the development build.

Thanks for the report!