#1
|
|||
|
|||
onactionend
Hi,
moving to Vizard 3 from Vizard 2.5 onactionend seems to work differntly: Old working code: def onactionend(object,action): if object == screenWall and action == viz.MOVE: putGraphOnScreenWall() viz.callback(viz.ACTION_END_EVENT,onactionend) New code, not working yet: def onactionend(e): print 'end',e.object,e.action if e.object is screenWall and e.action is viz.MOVE: putGraphOnScreenWall() viz.callback(viz.ACTION_END_EVENT,onactionend) What to do? Best, Johannes |
Thread Tools | |
Display Modes | Rate This Thread |
|
|
Similar Threads | ||||
Thread | Thread Starter | Forum | Replies | Last Post |
Do you know how to send a value for 'pool' to the onActionEnd function? | ghazanfar | Vizard | 1 | 03-22-2007 10:25 AM |