Skip to content

Commit

Permalink
fixed #211
Browse files Browse the repository at this point in the history
  • Loading branch information
keyemkey committed Jul 7, 2013
1 parent c2698bb commit 92d4d9c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
Expand Up @@ -611,10 +611,7 @@ package awaybuilder.model
asset.type = getQualifiedClassName( obj ).split("::")[1]; asset.type = getQualifiedClassName( obj ).split("::")[1];
for each( var animationNodeBase:AnimationNodeBase in obj.animations ) for each( var animationNodeBase:AnimationNodeBase in obj.animations )
{ {
trace("animationNodeBase", animationNodeBase.name);
var animationNodeVO:AnimationNodeVO = GetAsset( animationNodeBase ) as AnimationNodeVO; var animationNodeVO:AnimationNodeVO = GetAsset( animationNodeBase ) as AnimationNodeVO;
trace("animationNodeVO", animationNodeVO.name);
trace( animationNodeVO.id );
asset.animations.addItem( new SharedAnimationNodeVO(animationNodeVO) ); asset.animations.addItem( new SharedAnimationNodeVO(animationNodeVO) );
} }
return asset; return asset;
Expand Down
Expand Up @@ -412,6 +412,7 @@
addNewItem="texturesPanel_addNewItemHandler(event)"> addNewItem="texturesPanel_addNewItemHandler(event)">
<tree:Tree id="texturesTree" dataProvider="{model.textures}" selectedItems="{selectedItems}" indentation="16" <tree:Tree id="texturesTree" dataProvider="{model.textures}" selectedItems="{selectedItems}" indentation="16"
allowMultipleSelection="true" focusSkin="mx.core.UIComponent" allowMultipleSelection="true" focusSkin="mx.core.UIComponent"
change="tree_changeHandler(event)"
mouseDown="tree_mouseDownHandler(event)" mouseDown="tree_mouseDownHandler(event)"
width="100%" height="100%"/> width="100%" height="100%"/>
</controls:LibraryCollapsiblePanel> </controls:LibraryCollapsiblePanel>
Expand All @@ -420,6 +421,7 @@
addNewItem="geometryPanel_addNewItemHandler(event)" addEnabled="true"> addNewItem="geometryPanel_addNewItemHandler(event)" addEnabled="true">
<tree:Tree id="geometryTree" dataProvider="{model.geometry}" selectedItems="{selectedItems}" indentation="16" <tree:Tree id="geometryTree" dataProvider="{model.geometry}" selectedItems="{selectedItems}" indentation="16"
allowMultipleSelection="true" focusSkin="mx.core.UIComponent" allowMultipleSelection="true" focusSkin="mx.core.UIComponent"
change="tree_changeHandler(event)"
mouseDown="tree_mouseDownHandler(event)" mouseDown="tree_mouseDownHandler(event)"
width="100%" height="100%"/> width="100%" height="100%"/>
</controls:LibraryCollapsiblePanel> </controls:LibraryCollapsiblePanel>
Expand Down

0 comments on commit 92d4d9c

Please sign in to comment.