Hi,
I'm using the Free version of DBPro and I'm learning it slowly. I'm currently playing with the Terrain commands and I am using the example shown in the Help file.
rem Make Simple Terrain
TerrainNumber=1
make terrain TerrainNumber,"land.bmp"
rem Position The Terrain
position terrain TerrainNumber, 0, 0, 1025
rem Texture terrain
ImageNumber=1
load image "grass.bmp",ImageNumber
texture terrain TerrainNumber,ImageNumber
This works fine. Is it possible to NOT tile the terrain texture? In other words set it to only tile once? For example, I have used
L3DT to create a Terrain. This program creates a Heightmap and it also creates a Texture file which textures the terrain. When I use the texture file, it is tiled on my terrain?