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

Editor: Fixed animation panel visibility.

上级 5ddc21ac
......@@ -4,8 +4,9 @@ Sidebar.Animation = function ( signals ) {
var possibleAnimations = {};
var container = new UI.Panel();
container.setPadding( '10px' );
container.setBorderTop( '1px solid #ccc' );
container.setPadding( '10px' );
container.setDisplay( 'none' );
container.add( new UI.Text( 'Animation' ).setColor( '#666' ) );
container.add( new UI.Break(), new UI.Break() );
......@@ -78,6 +79,8 @@ Sidebar.Animation = function ( signals ) {
if ( object.geometry && object.geometry.animation ) {
container.setDisplay( 'block' );
} else {
container.setDisplay( 'none' );
......
......@@ -26,8 +26,8 @@ Sidebar.Geometry = function ( signals ) {
var container = new UI.Panel();
container.setBorderTop( '1px solid #ccc' );
container.setDisplay( 'none' );
container.setPadding( '10px' );
container.setDisplay( 'none' );
var objectType = new UI.Text().setColor( '#666' ).setTextTransform( 'uppercase' );
container.add( objectType );
......
......@@ -19,8 +19,8 @@ Sidebar.Material = function ( signals ) {
var container = new UI.Panel();
container.setBorderTop( '1px solid #ccc' );
container.setDisplay( 'none' );
container.setPadding( '10px' );
container.setDisplay( 'none' );
container.add( new UI.Text().setValue( 'MATERIAL' ).setColor( '#666' ) );
container.add( new UI.Break(), new UI.Break() );
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册