Skip to content

Commit

Permalink
f
Browse files Browse the repository at this point in the history
  • Loading branch information
Andrei Barsan committed Dec 18, 2011
1 parent 199c6fc commit cac20ae
Show file tree
Hide file tree
Showing 6 changed files with 4 additions and 24 deletions.
Binary file modified fanta-is-awesome/bin/com/siegedog/hava/engine/Node.class
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added fanta-is-awesome/data/img/sprites/bear.psd
Binary file not shown.
27 changes: 4 additions & 23 deletions fanta-is-awesome/src/com/siegedog/hava/engine/Node.java
Expand Up @@ -97,30 +97,11 @@ public void update(float delta) {

public void dispose() // WOOOOOOOOOOOOOOOOOOOT
{
if(parent != null)
{
try
{
parent.wait();
}
catch (Exception e)
{
return;
}
parent.removeNode(this);
}

parent.removeNode(this);
if(this instanceof RenderNode2D)
{
try
{
renderNodes.wait();
}
catch (Exception e)
{
return;
}
renderNodes.remove(this);

{
renderNodes.remove(this);
}
}

Expand Down
Expand Up @@ -56,7 +56,6 @@ public PlatformerEntityNode(float x, float y, float w, float h) {

//AIInputNode tmpINode = new AIInputNode();
//tmpINode.setAI(new LulzyAINode());

//addNode(inputNode = tmpINode);
setPosition(x, y);
track = body.getPosition();
Expand Down

0 comments on commit cac20ae

Please sign in to comment.