diff options
Diffstat (limited to 'o3d/samples/o3djs/simple.js')
-rw-r--r-- | o3d/samples/o3djs/simple.js | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/o3d/samples/o3djs/simple.js b/o3d/samples/o3djs/simple.js index a02e84d..8bb729b 100644 --- a/o3d/samples/o3djs/simple.js +++ b/o3d/samples/o3djs/simple.js @@ -421,10 +421,12 @@ o3djs.simple.SimpleInfo.prototype.createSphere = function(radius, * Loads a scene from a URL. * TODO: Implement * @param {string} url Url of scene to load. - * @return {!o3djs.simple.Scene} A Javascript object to manage th scene. + * @return {!o3djs.simple.Scene} A Javascript object to manage the scene. */ o3djs.simple.SimpleInfo.prototype.loadScene = function(url) { - throw('not implemented'); + if (true) { + throw('not implemented'); + } return null; }; |