eric
Aug 15, 2015 - 22:11
I am trying to put my scene in a CustomView using the ui editor.
I created a CustomView
I set the Custom View Class to SceneView
Gave it a name 'toto'
I my main:
v = ui.load_view('MyUI')
totoview = v['toto']
totoview.scene = Toto() # <-- Pythonista crashes here
v.present()
Using
run(Toto(), frame_interval = 1)
works fine
Any idea on how to debug this?
Cheers