WorldViz User Forum  

Go Back   WorldViz User Forum > Vizard

 
 
Thread Tools Rate Thread Display Modes
Prev Previous Post   Next Post Next
  #2  
Old 06-10-2008, 11:00 AM
farshizzo farshizzo is offline
WorldViz Team Member
 
Join Date: Mar 2003
Posts: 2,849
The most optimal change would be to clone the existing model. However, changing the appearance of one object will affect all its clones. If you want to make unique appearance changes to each model, then the second best thing is to make a copy of the existing model. Here is sample code that will add 50 objects of the same file using the clone technique:
Code:
for x in range(50):
    model = viz.add('model.wrl',cache=viz.CACHE_CLONE)
Here is similar code that will add 50 objects of the same file using the copy technique:
Code:
for x in range(50):
    model = viz.add('model.wrl',cache=viz.CACHE_COPY)
Reply With Quote
 


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
trouble loading vrml files generated by ProE tavaksai Vizard 12 12-09-2008 12:11 PM
Loading .3ds-Files without interrupting Program flow Stefan Vizard 10 06-08-2005 05:44 PM
Error when playing wav files...? vjonshih Vizard 1 05-23-2005 01:21 PM
loading large wav files in vizard tommahhh Vizard 1 05-16-2005 04:23 PM
Including Files that Include Other Files vjosh Vizard 1 09-21-2004 05:44 PM


All times are GMT -7. The time now is 04:15 AM.


Powered by vBulletin® Version 3.8.7
Copyright ©2000 - 2025, vBulletin Solutions, Inc.
Copyright 2002-2023 WorldViz LLC