![]() |
|
#3
|
|||
|
|||
|
Ok thanks for the quick response. Now if I set my pillars(the blocks) like this, can I impliment the same code that was posted above into this... or do I have to construct it differently?
Code:
columns = [-20, -10, 0, 10, 20]
rows = [0, 6, 12, 18]
pillars = []
for x in columns: #creates an array of pillars
for y in rows:
pillar = OrginalPillar.copy()
pillar.translate(0+x, 0, 0+y)
pillar.setScale(1,1,1)
pillar.visible(viz.OFF)
pillars.append(pillar)
number = 0
def showPillar():
globae number
pillars[number.visible(viz.ON)
number += 1
vizact.ontimer2(.5,len(pillars)-1,showPillar)
|
|
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| retrieve Object names | Geoffrey | Vizard | 11 | 12-11-2009 05:26 AM |
| Can you link the position of a tracker to the orientation of an object? | michaelrepucci | Vizard | 1 | 09-19-2008 11:23 AM |
| Child Object Rotation | paulgoldberg | Vizard | 5 | 09-05-2006 12:33 PM |
| when collision mode is on, can i "turn it off" for an individual object? | Vdoug | Vizard | 1 | 09-22-2005 01:14 PM |
| rotate to object | jargon | Vizard | 1 | 08-08-2005 01:20 PM |