Omnomer, i would start out with getting the views set up, i myself am working on a editor heres some simple code for a 4 camera view, i haven't added the actual correct views yet.
`by Commico Inc. (shatter productions)
`please give credit if used.
SYNC ON
SYNC RATE 30
MAKE CAMERA 1
MAKE CAMERA 2
MAKE CAMERA 3
MAKE CAMERA 4
SET CAMERA VIEW 1, 0, 0, 300, 300
SET CAMERA VIEW 2, 300, 0, 600, 300
SET CAMERA VIEW 3, 0, 300, 300, 600
SET CAMERA VIEW 4, 300, 300, 600, 600
MAKE OBJECT cube 1,1
`MAKE OBJECT sphere 2,1
do
text 0,0, "Top (1)"
text 300,0,"Bottom (2)"
text 0,300, "Front (3)"
text 300,300,"Back (4)"
line 0,300,600,300
line 300,0,300,600
CONTROL CAMERA USING ARROWKEYS 1,1,1
CONTROL CAMERA USING ARROWKEYS 2,1,1
CONTROL CAMERA USING ARROWKEYS 3,1,1
CONTROL CAMERA USING ARROWKEYS 4,1,1
sync
LOOP
My software never has bugs. It just develops random features.