How to manually read GLTF files

I’m currently working on a game engine, and one very important part of that is being able to import 3D models. And at the moment GLTF files are a great method for doing that due to their open-source nature. There’s also the benefit that a good bit of GLTF data is human-readable, allowing us to…

How to use a camera’s output as a texture in AFrame

Here is a quick example so you can see what I mean: ^you can move with wasd^ loosely based on this example here. Code here: <script src=”https://aframe.io/releases/0.8.0/aframe.min.js”></script> <script>      AFRAME.registerComponent(‘spectator’,{           ‘schema’: {                canvas: {                     type: ‘string’,…

How To Teleport In The Mobile Version of Aframe

So far I have not seen teleportation used in any mobile VR experiences, and I don’t see why. We should be using it more, I don’t know about you but I prefer being able to control my own moment instead of being along for the ride. But that’s why I made this tutorial about my favorite method: Waypoints They are my…