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
I am using expo-three with three.js. After updating three.js to 0.128 I get the warning:
WARN THREE.Quaternion: .inverse() has been renamed to invert().
But I have no line in my code with: .inverse()
OrbitControls uses e.g. the
var quatInverse = quat.clone().inverse();
Yes, without OrbitControlsView there is no warning!
The text was updated successfully, but these errors were encountered:
Hi, I have the same warning, did you find how to fix it ?
Sorry, something went wrong.
In the OrbitControls code rename . inverse() to .invert() and it will work
Rename inverse() to invert()
84445b4
expo/expo-three#212
No branches or pull requests
I am using expo-three with three.js.
After updating three.js to 0.128 I get the warning:
WARN THREE.Quaternion: .inverse() has been renamed to invert().
But I have no line in my code with: .inverse()
OrbitControls uses e.g. the
var quatInverse = quat.clone().inverse();
Yes, without OrbitControlsView there is no warning!
The text was updated successfully, but these errors were encountered: