мммм....
НЕ РАБОТАЕТ
Graphics3D 800,600,32,2
SetBuffer BackBuffer()
CreateWorld("jumpcity.3ds")
;===============================================================================$$MAIN LOOP$$
Repeat
CreatePlayer(11,1,11)
;main
UpdateWorld()
RenderWorld()
Flip
;end_main
Until KeyHit(1)=1
End
;==============================================================================*END MAIN LOOP****
;==============================================================================$$FUNCTIONS$$
Function CreatePlayer(x#=0,y#=0,z#=0)
user=CreateCube()
EntityColor user,255,0,0
cam=CreateCamera()
PositionEntity user,x#,y#,z#
PositionEntity cam,x#,y#,z#-5
End Function
Function CreateWorld(level)
light=CreateLight()
plane=CreatePlane()
map=LoadMesh(level)
End Function
;===============================================================================*END FUNCTIONS****