test.b3d problem

Blitz3D Forums/Blitz3D Beginners Area/test.b3d problem

Atomic Duck(Posted 2004) [#1]
Hi everyone,

I've recently bought Blitz 3D and Maplet.
Now, when I want to run the "test.bb"-file (a test-environment in Maplet) it says "entity does not exist"

While rummaging through dozens of topics about B3D and/or Maplet, I get the feeling that you need some kind of BB-file.

Is this correct? If so,what is the name and where can I find it?

Thanks :)


Beaker(Posted 2004) [#2]
You just need to use:
level = LoadMesh("test.b3d")
OR
level = LoadAnimMesh("test.b3d")

If level is 0 after the attempt to load then the file is either missing, corrupt, illegal, or you don't have the latest version on Blitz3D.

You can check this with:
If level=0 Then RunTimeError "Error: level not loaded"