Do you wish to change the color of the backdrops?
If so, then there is an extended version of, Color Backdrop <color>
Color Backdrop <camera>, <color>
hide mouse
make camera 1
set camera view 0,0,screen height()/2,screen width(),screen height()
set camera view 1,0,0,screen width(),screen height()/2
make object cube 1,100
position camera 0,-100,-100,-100
point camera 0,object position x(1),object position y(1),object position z(1)
position camera 1,100,100,100
point camera 1,object position x(1),object position y(1),object position z(1)
` set camera backdrops to the same color
color backdrop 0,rgb(0,0,128)
color backdrop 1,rgb(0,0,128)
do
yrotate object 1,object angle y(1)+0.1
xrotate object 1,object angle x(1)+0.1
loop
Hope this helps
Programming anything is an art, and you can't rush art.
Unless your name is Bob Ross, then you can do it in thirty minutes.