Почему я загружаю карту у меня нет стен и потолка?
вот код
Graphics3D 800,600,32,2
SetBuffer BackBuffer()
cam=CreateCamera()
Ground = LoadMesh ("map.3ds")
PositionEntity(Ground , 0 , 0 , 0)
EntityType(Ground , CT_PLANE)
RotateMesh(Ground , 0 , 0 , 0)
ScaleMesh(Ground , 2 , 2 , 2)
EntityColor(Ground , 255 , 255 , 255)
While Not KeyDown( 1 )
mxs#=mxs#+(MouseXSpeed()/5.0)
mys#=mys#+(MouseYSpeed()/5.0)
RotateEntity cam,mys#,-mxs#,0
MoveMouse width/2,height/2
MoveMouse GraphicsWidth()*0.5,GraphicsHeight()*0.5
; move camera forwards/backwards/left/right with cursor keys
If KeyDown(200)=True Then MoveEntity cam,0,0,.2 ; move camera forward
If KeyDown(20

=True Then MoveEntity cam,0,0,-.2 ; move camera back
If KeyDown(205)=True Then MoveEntity cam,.2,0,0 ; move camera left
If KeyDown(203)=True Then MoveEntity cam,-.2,0,0 ; move camera right
RenderWorld
Flip
Wend
End