Import a 3D JSON object in Babylon.js 2.0
Example of importing a 3D JSON object in Babylon.js 2.0.
BABYLON.SceneLoader.ImportMesh("", "3d/", "myMesh.babylon", scene, function (newMeshes) {
lumberMan = newMeshes[0];
lumberMan.scaling.x = 3;
lumberMan.scaling.y = 3;
lumberMan.scaling.z = 3;
lumberMan.rotation.x = 2*Math.PI;
lumberMan.rotation.z = Math.PI/ 0.75;
lumberMan.position.z = 35;
lumberMan.position.y = -40;
});