Skip to content

Commit

Permalink
Removes debug printouts in sprite physics
Browse files Browse the repository at this point in the history
  • Loading branch information
vlidholt committed Oct 23, 2015
1 parent 5395b45 commit 5d089f9
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 0 additions & 1 deletion examples/game/test_physics.dart
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,6 @@ class TestBed extends NodeWithSize {
}

void myCallback(PhysicsContactType type, PhysicsContact contact) {
print("CONTACT type: $type");
}

bool handleEvent(SpriteBoxEvent event) {
Expand Down
2 changes: 1 addition & 1 deletion skysprites/lib/src/node.dart
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ class Node {
return _physicsWorld(parent.parent);
}
else {
print("physics not found");
assert(false);
return null;
}
}
Expand Down

0 comments on commit 5d089f9

Please sign in to comment.