Mojo2 canvas clear alpha

Monkey Forums/Monkey Programming/Mojo2 canvas clear alpha

Hezkore(Posted 2016) [#1]
I'm trying to draw one canvas above another canvas, but I need the top canvas to be transparent so the bottom canvas is visible.
However the canvas.Clear alpha parameter doesn't seem to work?


Jesse(Posted 2016) [#2]
did you use :
Canvas.Clear(0,0,0,0)
or just:
canvas.Clear(0,0,0)

the top one is the one you should have used.