Difference between two tables as a table
问题 IN SHORT t1 = {1,3,5,7,9} t2 = {1,2,3,4,5,6,7,8,9} result wanted: t3 = {2,4,6,8} LONG EXPLANATION I have a list of objects in a scene, and I have a list of all objects not in the scene. I am trying to write a simple bit of code that will allow me to add objects to the scene but make sure that it does not load an object that has already been loaded. So I can say something like.... SafeAdd (2, currentOBJlist, notLoadedOBJList) and have the app load in 2 random objects from "notLoadedOBJList"