-
Notifications
You must be signed in to change notification settings - Fork 21
Closed
Description
When you will try to update your project to use latest aframe master, here is the list of the changes needed in the different libraries so you don't need to search for all the PR I just did :)
THREE.Math was removed in threejs r141, it needs to be replaced with THREE.MathUtils
You need
- networked-aframe 0.10.0 that includes compatibility with threejs r141 networked-aframe/networked-aframe#343
- Use THREE.MathUtils.clamp to be compatible with threejs r141 diarmidmackenzie/christmas-scene#2
- threejs r141 compatibility for movement-controls c-frame/aframe-extras#377
In the meantime, you can also use:
<script src="aframe-master.min.js"></script>
<script>
THREE.Math = THREE.MathUtils;
</script>
Metadata
Metadata
Assignees
Labels
No labels