is there a good free landscape editor out there. i would like to know because i need to speed up my fps from the 21 i am getting now to the thirty that i set it at.
any help is appreciated.
sync on : hide mouse
sync rate 30
make matrix 1, 400.0, 200.0, 20, 20
position matrix 1, -200, 0, 0
make object box 2, 90, 30, 5 : color object 2, rgb(90, 0, 80)
position object 2, 0, 15, 160 : yrotate object 2, 90
make object box 3, 200, 30, 5 : color object 3, rgb(0, 0, 0)
position object 3, 100, 15, 0
make object box 4, 200, 30, 5 : color object 4, rgb(0, 0, 0)
position object 4, 100, 15, 200
make object box 5, 200, 30, 5 : color object 5, rgb(90, 100, 67)
position object 5, 200, 15, 100 : yrotate object 5, 90
make object box 6, 90, 30, 5 : color object 6, rgb(90, 110, 56)
position object 6, 0, 15, 45 : yrotate object 6, 90
camobj=7
make object sphere camobj, 2
hide object camobj
position camera 10, 10, 10
point camera 150, 10, 5
set camera range 1,2000
dim user(3)
user(1)=100
user(2)=50
user(3)=5
DO
health#=100
set cursor 5, 20
print user(1)
oldx#=camera position x()
oldz#=camera position z()
set cursor 5,5
print screen fps()
OldCamAngleY# = CameraAngleY#
OldCamAngleX# = CameraAngleX#
CameraAngleY# = WrapValue(CameraAngleY#+MousemoveX()*0.2)
CameraAngleX# = WrapValue(CameraAngleX#+MousemoveY()*0.2)
Yrotate camera CurveAngle(CameraAngleY#,OldCamAngleY#,10)
Xrotate camera CurveAngle(CameraAngleX#,OldCamAngleX#,10)
if upkey()=1 then move camera 10
if downkey()=1 then move camera -10
x#=camera position x()
z#=camera position z()
y#=get ground height(1,x#,z#)+10
position camera x#,y#,z#
position object camobj, x#, y#, z#
if object collision(camobj,0)
position camera oldx#,y#,oldz#
endif
SYNC
LOOP