PDA

View Full Version : something about button_event


haohaoxuexi1
06-27-2016, 10:15 AM
checkbox = viz.addCheckbox(pos=(0.5,0.5,0))

def onButton(obj,state):
if obj == checkbox:
if state == viz.DOWN:
print 'Checked'
else:
pass

viz.callback(viz.BUTTON_EVENT,onButton)

checkbox2 = viz.addCheckbox(pos=(0.5,0.5,0))

def onButton1(obj,state):
if obj == checkbox2:
if state == viz.DOWN:
print 'Checked'
else:
pass

viz.callback(viz.BUTTON_EVENT,onButton1)


when i write the code as above, why is the system only execute the later BUTTON_EVENT but not both of them?

haohaoxuexi1
06-27-2016, 10:15 AM
is there any way to fix it?

haohaoxuexi1
06-27-2016, 10:19 AM
if i have more than two checkbox, should I put all of them in one function?