#1
|
|||
|
|||
IVEx file extenstion unrecognised.
Can anyone assist? I am currently learning vizard using the teacher in a book tutorial and experiencing a problem with images that have an IVEx extenstion , vizard 3.0 currently installed in my desktop cannot recognise the file extension.
This is the code I was running: The original code is on page 27 of "Vizard Teacher in a book" import viz viz.go() #Put the viewpoint in a good point to see the texture squad viz.MainView.setPosition(0,.68,-1.3) #Add a model and grab one of its children to put textures on model = viz.add('art/window.IVEx') window = model.getChild('glass') Here is the error shown by vizard: Traceback (most recent call last): File "<string>", line 11, in ? File "Modelling.py", line 8, in ? model = viz.add('art/window.IVEx') File "C:\Program Files\WorldViz\Vizard30/python\viz.py", line 8320, in add raise ValueError, 'Unrecognized file extension: '+fileType ValueError: Unrecognized file extension: IVEX Could you please advise me how to go about enabling Vizard to recognise the IVEx file extension. |
#2
|
|||
|
|||
These are encrypted files not meant to be edited or used in other programs. If you want to use the resource in another Vizard script don't include the x in the file extension. For example:
Code:
import viz viz.go() window = viz.add('art/window.ive', pos = [0,1,3]) |
#3
|
|||
|
|||
Hi JJeff I am still getting the same error :
Loading File: art/window.ive Warning: could not find file "art/window.ive" ** Load Time: 0.34 seconds ** ERROR: Failed to load 'art/window.ive' |
Thread Tools | |
Display Modes | Rate This Thread |
|
|
Similar Threads | ||||
Thread | Thread Starter | Forum | Replies | Last Post |
problems with output to a text file within executable | Saz | Vizard | 1 | 07-01-2009 11:01 AM |
Problem generating exe file | Anfo | Vizard | 1 | 11-17-2008 04:21 PM |
Read file....many issues | Uttama_vizard | Vizard | 9 | 07-08-2008 02:16 PM |
File Management | Uttama_vizard | Vizard | 2 | 07-01-2008 09:44 AM |
file input | vsully | Vizard | 1 | 12-21-2004 10:51 PM |