Terrain Problem

Blitz3D Forums/Blitz3D Beginners Area/Terrain Problem

AuzingLG(Posted 2004) [#1]
Hello!
My terrain doesn't appear!

Here the terrain type:

[CODE]Type lvterr
Field obj
Field tex
End Type[/CODE]

And the creation:

[CODE]ter.lvterr = New lvterr
ter\obj = LoadTerrain(path$+"GFX\TERRAIN\"+ReadLine(lfile))
ter\tex = LoadTexture(path$+"GFX\TERRAIN\"+ReadLine(lfile))
EntityTexture ter\obj, ter\tex
x = ReadLine(lfile)
y = ReadLine(lfile)
z = ReadLine(lfile)
PositionEntity ter\obj,x,y,z[/CODE]

and (a part of) the content of "lfile":

[CODE]test.bmp
test.bmp
0
-1
0[/CODE]

I hope you can help me.


TartanTangerine (was Indiepath)(Posted 2004) [#2]
I assume you have defined a camera, set it's position and scaled the terrain??? :)