Famo.us has now released the new Famous Engine (v0.5.0). It has a whole new architecture in how to build 3D transforms.
The prior (v0.3.5) API created a context and on that context you would setPerspective
.
var mainContext = Engine.createContext();
mainContext.setPerspective(1000);
What is the new way of setting perspective for the Famous Engine?
I found the answer. The new engine has introduced a
Camera