Making a 3D editor would be difficult. The editor would actually be GE with global map moving and an added Z axis. The script would mabey be like this, Keydown UP,
- Code: Select all
z = z - 5;
(for moving forward) Keydown DOWN,
- Code: Select all
z = z + 5;
to go backward. To jump it would be, Keydown SPACE,
- Code: Select all
yvelocity = - 5;
, Keydown RIGHT,
- Code: Select all
x = x + 5;
Keydown LEFT,
- Code: Select all
x = x - 5;
These would be the simple moving codes. There would also be an added axis for anything that needs axis info, such as MOVE TO, and CREATE ACTOR. Mabey with Makslane's new job, he'd learn how to make 3D editors with the developers.