When using scene.image to draw iconicons they appear black. Using scene.tint makes no difference. I would like them to appear blue. Any ideas?
A workaround is to use ui Buttons. But it seems overkill to use buttons just to draw a passive icon.
from scene import *
class MyScene (Scene):
def draw(self):
background(1, 1, 0)
tint(0, 0, 1)
image('ionicons-checkmark-circled-32', 300, 300)
run(MyScene())