13 April, 2016

VR with AFrame vs Three.js vs Babylon.js
By: Matthew Jackson

It is hard to compare three great evolving libraries. They all grow and change, but it is good to know what is working now and what isn't. 

BabylonJS

This library probably is evolving faster than ThreeJS. It is always hard to tell, but they both don't have that many contributors besides their founders. It does look like Babylon had more updates recently and s more active community. 

It is worth noting that I did try BabylonJs a few months ago with Google Cardboard and it...

Tags: AFrame

Read More
16 February, 2016

AFrame Clickable Entities
By: Matthew Jackson

A-Frame tutorials use "document.querySelector"; however, using document.querySelectorAll, has a bug that doesn't apply. Also if you want to affect newly added objects, querySelector was having issues (Edit: It is working now).

Luckily, we have a workaround to use jQuery.

$("body").on("click","a-entity",function(){
      console.log("Clicked!");
      this.setAttribute('material', 'color',...

Tags: AFrame

Read More
1