提交 f6352fb5 编写于 作者: M Mr.doob

BabylonLoader: Robustness.

上级 72636b27
......@@ -200,8 +200,9 @@ THREE.BabylonLoader.prototype = {
}
light.name = data.name;
light.position.set( data.position[ 0 ], data.position[ 1 ], - data.position[ 2 ] );
if ( data.position ) light.position.set( data.position[ 0 ], data.position[ 1 ], - data.position[ 2 ] );
light.color.fromArray( data.diffuse );
if ( data.groundColor ) light.groundColor.fromArray( data.groundColor );
if ( data.intensity ) light.intensity = data.intensity;
objects[ data.id ] = light;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册