diff --git a/fd/Graph.lua b/fd/Graph.lua index 75e3104..7d6e2c5 100644 --- a/fd/Graph.lua +++ b/fd/Graph.lua @@ -65,7 +65,6 @@ function Graph.new() -- @param anchor - Wether the node should be locked in place or not (optional). -- function self:addNode( id, x, y, anchor, ... ) - print( id, x, y, anchor, parent, path, spritebatch ) assert( not nodes[id], "Node IDs must be unique." ); nodes[id] = Node.new( id, x, y, anchor, ... ); return nodes[id];