Remove
api.physics.Remove(table, index)
Removes an item from a table at a specific index, without altering the original table. The modified table is returned by the function.
Parameters:
Name
Type
Description
table
table
The original table for the item to be removed from.
index
int
The index of the item to be removed from the table.
Returns:
Type
Descriptioon
table
A new table, modified from the original table to be without a specific item.
Example:
Remove a string from an array-style table of descriptive attributes, with a 50% chance of not removing it.
Last updated