-
Simple custom command to remove a cell from an array.
Usage testample:
local testArr1 = {'a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k'} local testArr2 = {1, 2, 3, 4, 5, 6, 7, 8, 9} local result1 = CC_ArrayRemove(testArr1, 4) local result2 = CC_ArrayRemove(testArr2, 4) local result3 = CC_ArrayRemove(testArr1, 1) local result4 = CC_ArrayRemove(testArr2, #testArr2) Log(result1) -- missing 'd' Log(result2) -- missing '4' Log(result3) -- missing 'a' Log(result4) -- missing '9'