mirror of
https://github.com/rm-code/Graphoon.git
synced 2024-11-28 11:34:21 +00:00
Remove debug print
This commit is contained in:
parent
1681c649fb
commit
020713b4c3
@ -65,7 +65,6 @@ function Graph.new()
|
|||||||
-- @param anchor - Wether the node should be locked in place or not (optional).
|
-- @param anchor - Wether the node should be locked in place or not (optional).
|
||||||
--
|
--
|
||||||
function self:addNode( id, x, y, anchor, ... )
|
function self:addNode( id, x, y, anchor, ... )
|
||||||
print( id, x, y, anchor, parent, path, spritebatch )
|
|
||||||
assert( not nodes[id], "Node IDs must be unique." );
|
assert( not nodes[id], "Node IDs must be unique." );
|
||||||
nodes[id] = Node.new( id, x, y, anchor, ... );
|
nodes[id] = Node.new( id, x, y, anchor, ... );
|
||||||
return nodes[id];
|
return nodes[id];
|
||||||
|
Loading…
Reference in New Issue
Block a user