@pac Here’s an example of switching screens. Slide the switch to switch screens.
function setup()
parameter.boolean("switch",false)
end
function draw()
background(0)
if switch then
screen2()
else
screen1()
end
end
function screen1()
background(223, 171, 154, 255)
fill(255, 0, 0, 255)
text("Screen1",WIDTH/2,HEIGHT-200)
sprite("Planet Cute:Character Horn Girl",WIDTH/2,HEIGHT/2)
end
function screen2()
background(169, 222, 188, 255)
fill(255, 0, 0, 255)
text("Screen2",WIDTH/2,HEIGHT-200)
sprite("Small World:Court",WIDTH/2,HEIGHT/2)
end
Comments
@pac Here’s an example of switching screens. Slide the switch to switch screens.
Dave you are amazing at telling what I have wrong.
It works now thank you some much.
So I have one thing that I don’t know how to do but would like to and kind of need to know. How do you make a triangle plane?
Thanks Pac
One more thing for now... How do you make material for the 3D object.
I got a few more questions. How do you save and load 3D files in codea.
It’s okay if you don’t know I will work one it the only problem I will have is the data safe metality that apple has.