mirror of
https://github.com/linux-man/LoveFrames.git
synced 2024-11-26 05:14:21 +00:00
Add tree:RemoveNode
This commit is contained in:
parent
2e0b3a2feb
commit
dd5ae7d519
@ -288,6 +288,21 @@ function newobject:AddNode(text)
|
|||||||
|
|
||||||
end
|
end
|
||||||
|
|
||||||
|
--[[---------------------------------------------------------
|
||||||
|
- func: RemoveNode(id)
|
||||||
|
- desc: removes a node from the object
|
||||||
|
--]]---------------------------------------------------------
|
||||||
|
function newobject:RemoveNode(id)
|
||||||
|
|
||||||
|
for k, v in ipairs(self.children) do
|
||||||
|
if k == id then
|
||||||
|
v:Remove()
|
||||||
|
break
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
end
|
||||||
|
|
||||||
--[[---------------------------------------------------------
|
--[[---------------------------------------------------------
|
||||||
- func: GetVerticalScrollBody()
|
- func: GetVerticalScrollBody()
|
||||||
- desc: gets the object's vertical scroll body
|
- desc: gets the object's vertical scroll body
|
||||||
|
Loading…
Reference in New Issue
Block a user