mirror of
https://github.com/edubart/otclient.git
synced 2025-12-24 00:47:10 +01:00
new script engine, and things maybe be bugged for a while
This commit is contained in:
@@ -10,7 +10,10 @@ void UIButton::onInputEvent(const InputEvent& event)
|
||||
} else if(event.type == EV_MOUSE_LUP && m_state == ButtonDown) {
|
||||
m_state = ButtonUp;
|
||||
if(getRect().contains(event.mousePos)) {
|
||||
g_dispatcher.addTask(boost::bind(&ScriptObject::callScriptTableField, shared_from_this(), "onClick", 0));
|
||||
LuaObjectPtr me = asLuaObject();
|
||||
g_dispatcher.addTask([me] {
|
||||
me->callField("onClick");
|
||||
});
|
||||
}
|
||||
} else if(event.type == EV_MOUSE_MOVE && m_state != ButtonDown) {
|
||||
if(isMouseOver())
|
||||
|
||||
Reference in New Issue
Block a user