Can't load .b3d on Linux?

BlitzMax Forums/MiniB3D Module/Can't load .b3d on Linux?

jkrankie(Posted 2009) [#1]
I'm getting an "Unhandled Exception:Error reading from stream" when i try to load a .b3d file on Linux. What's going on? I've checked and the file is there...


Here's some example code:

SuperStrict
Import sidesign.minib3d

Graphics 640,480

Local testmesh:tmesh=loadmesh("cglogo.b3d")

While Not KeyHit(key_escape)
	
	turnentity testmesh,1,1,1
	renderworld()
	Flip
Wend




jkrankie(Posted 2009) [#2]
actually, i think it might be the mesh i'm trying to load. sorry...

Cheers
Charlie


jkrankie(Posted 2009) [#3]
I was trying to use an old version of MiniB3D. I updated and it works now. I actually though i had updated before, but obviously hadn't...

Cheers
Charlie