提交 20029be1 编写于 作者: A alteredq

CSS3DRenderer: added quick and dirty billboard option.

Not ideal because our object.lookAt flips orientation.
上级 83cb27ec
......@@ -7,6 +7,8 @@ THREE.CSS3DObject = function ( element ) {
THREE.Object3D.call( this );
this.billboard = false;
this.element = element;
this.element.style.position = "absolute";
this.element.style.WebkitTransformStyle = 'preserve-3d';
......@@ -153,6 +155,8 @@ THREE.CSS3DRenderer = function () {
var element = object.element;
if ( object.billboard ) object.lookAt( camera.position );
style = getObjectCSSMatrix( object.matrixWorld );
/*
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册