![]() |
|
|||||||
![]() |
|
|
Thread Tools | Rate Thread | Display Modes |
|
|
|
#1
|
|||
|
|||
|
How to input several model files and then save one output file
I would like to input several model files and then save one output file.
For example, * input : houes.ive, desk1.ive. desk2.ive and furniture1.ive and furniture2.ive * output : layout1.ive (with geometry and texture) |
|
#2
|
|||
|
|||
|
Code:
import viz
viz.go()
## Block 1 - used to create saved object
#group = viz.add(viz.GROUP)
#
#group.add('tut_ground.wrl')
#group.add('ball.wrl')
#
#group.save('foo.ive')
## Block 2 - used to load saved object
viz.add('foo.ive')
|
![]() |
|
|