Type Function Object GroupObject Library display.* Return value DisplayObject Revision Release 2024.3703 Keywords remove, remove child See also object:removeSelf() display.remove() Group Programming (guide)
Remove an object from a group by either an index number or a reference to the object.
If an object is being removed (deleted), it is recommended to use object:removeSelf() or display.remove() instead.
Using this method will delete the specified child object, not simply remove it from the group. If you want to remove an object from a group, insert it into a different group, or insert it into the global stage group instead.
When an object is removed, the nil
and all properties relating to display object are removed. Thus, if there are still references to object in Lua, they will simply be references to a normal Lua table.
object:remove( indexOrChild )
Number or DisplayObject. Removes the display object specified from the group, shifting down other elements as needed. The argument is either the index position of the child within group (number) or the child display object itself.
-- Remove the second object from the group display.getCurrentStage():remove( 2 )