View Single Post
  #4  
Old 01-11-2011, 04:40 PM
farshizzo farshizzo is offline
WorldViz Team Member
 
Join Date: Mar 2003
Posts: 2,849
If your script does not require a unique instance for each table, then you can clone all the tables.
Code:
for i in range(tables_number):
	tables.append(viz.add('src/obj/table.flt',cache=viz.CACHE_CLONE))
Reply With Quote