Starfire Loader

Can anyone tell me how to use the starfire loader?? i got error for locating the .3ds…this is the code i use in my program…it ask me to check the name and path of the .3ds…actually where is the correct place i have to put those .3ds files???

Inspector3DS loader = new Inspector3DS(“model.3ds”);

im still new in starfire loader…can give me find simple code for only let me know how to load those .3ds in java only…thanks lot

This will look for the file in the users ‘current’ directory when the app is running. Might be home or something IDE specific.

Better use a well-formed URL. As an example, lookup out starfire handling on

http://cvs.sourceforge.net/viewcvs.py/drts/projects/threed/java3d/core/java/de/hardcode/threed/objects/FiledObjectLoader.java

with the URLProvider stuff here

http://cvs.sourceforge.net/viewcvs.py/drts/projects/util/java/de/hardcode/util/

Usage examples here:

http://cvs.sourceforge.net/viewcvs.py/drts/projects/flyingguns/resource/java/com/flyingguns/data/objects/

http://cvs.sourceforge.net/viewcvs.py/drts/projects/flyingguns/core/client/java/com/flyingguns/database/

Checkout the source and lookout for usages of those classes.