How can I make Mesh Files without using expensive editors?
Or is it possible to create the objects in pure basic without using mesh
files?
Thanks
Mesh Files
Mesh Files
Neptune Century Inc.
Eric Butler, CEO, Lead programmer
"The road to happiness never ends..."
Eric Butler, CEO, Lead programmer
"The road to happiness never ends..."
Milkshape is only US $25 or EUR 25, not very expensive! 
Or you can use code to create from scratch!

Or you can use code to create from scratch!
Code: Select all
Result = CreateMesh(#Mesh)
Description:
Creates a new empy #Mesh. SetMeshData() can be used to build a mesh from scratch by inserting the vertices, normals, uv textures and more. If the 'Result' is 0, the mesh creation has failed. If the #NewMesh was already created, it is automatically freed and replaced by the new one.
Supported OS:
Windows, Linux
Sure
Sure it's possible to create .mesh files in Purebasic using data statements. Check out the .Mesh Editor toy I wrote. This simply changes the vertices, then exports out to hard coded data statements in a complete .pb file that runs independently of the .mesh editor program, but if you made it also change the faces and then gave it the option to add vertices and faces, you'd have a full fledged .mesh editor. And what's really cool about using data statements is that you can post your code in the message thread and everyone can get your .mesh creation without having to download seperate resources from a web hosting site, it's just all included right in your file in the data statements. But creating a .mesh editor that can make really nice models, now that would be very hard and time consuming.
Blender (www.blender.org) can create 3d models, and there's a mesh exporter script for blender on the ogre website (ogre.sourceforge.net)
PC 1:AMD Athlon XP 2000,Geforce 2 MX400 64Mb, Windows 2000 
PC 2:Intel P3 1ghz, Nvidia Vanta 16Gb, Windows 2000
Registered Purebasic User
PureBasic Game Creation Site
http://www.hypervox.co.uk/PureBasic/

PC 2:Intel P3 1ghz, Nvidia Vanta 16Gb, Windows 2000

Registered Purebasic User

PureBasic Game Creation Site
http://www.hypervox.co.uk/PureBasic/