Browse Source

added to ls() output

Dave Schuyler 21 years ago
parent
commit
22312f4762
1 changed files with 2 additions and 1 deletions
  1. 2 1
      panda/src/physics/forceNode.cxx

+ 2 - 1
panda/src/physics/forceNode.cxx

@@ -117,7 +117,8 @@ remove_force(int index) {
 void ForceNode::
 output(ostream &out) const {
   #ifndef NDEBUG //[
-  out<<"ForceNode";
+  PandaNode::output(out);
+  out<<" ("<<_forces.size()<<" forces)";
   #endif //] NDEBUG
 }