Basic Object Building Tutorial by ipaclansite

Pages: (1/1)

ipaclansite:

Basic Object Building Tutorial by Kevin

Ok so there's not much of a use if you can create a route but cant create objects. Here's a little tutorial on how to get you started.



The picture says alot of things :)

When we're done with this we can now put this into notepad.

Code:
--
[meshbuilder]
vertex 0,0,0
vertex 0,4,0
vertex 4,4,0
vertex 4,0,0
face 0,1,2,3
--
Now save it with a b3d file extension, and we'll have a flat face, when we see it in BVE or Structure Viewer. Now we can add some color to the face.
Code:
--
[meshbuilder]
vertex 0,0,0
vertex 0,4,0
vertex 4,4,0
vertex 4,0,0
face 0,1,2,3
color 255,0,0
--
So now what we get a red flat face. The color is in R,G,B format. You can find the values of these colors using Paint by double clicking on the color you want in the color pallete and click Define custom color. Look for the Red,Blue,Green values, and put it in the b3d file. We dont use the Z-axis since, we simply dont :) . Anyway, I hope you learned something in this tutorial,and thanks for reading! Check out the next object building tutorial!

Credits to Joe for giving me a basic idea on how to create objects!


Pages: (1/1)