1
0
Fork 0

Rename Node.clear() to Node.clearValue(), because that's the name that we

use on the C++ side.
This commit is contained in:
mfranz 2008-11-22 12:05:01 +00:00
parent b3032f63c7
commit 75470bf31d

View file

@ -29,7 +29,7 @@ var Node = {
setDoubleValue : func _setDoubleValue(me._g, arg),
unalias : func _unalias(me._g, arg),
alias : func(n) _alias(me._g, [isa(n, Node) ? n._g : n]),
clear : func _alias(me._g, [_globals()]) and _unalias(me._g, []),
clearValue : func _alias(me._g, [_globals()]) and me.unalias(),
getPath : func {
var (name, index, parent) = (me.getName(), me.getIndex(), me.getParent());