We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3ae3a0c commit 78bdb83Copy full SHA for 78bdb83
2 files changed
loader/include/Geode/utils/ObjectDestroyedEvent.hpp
loader/src/loader/ScriptEngine.cpp
@@ -10,10 +10,6 @@ namespace geode {
10
// Javascript engine is called without needing to change m_nLuaID
11
return cocos2d::ccScriptType::kScriptTypeJavascript;
12
}
13
-
14
- void removeScriptObjectByCCObject(CCObject* object) {
15
- ObjectDestroyedEvent(object).send();
16
- }
17
18
int executeNodeEvent(CCNode* node, int action) {
19
NodeEvent(node, static_cast<NodeEventType>(action)).send();
@@ -25,6 +21,7 @@ namespace geode {
25
21
return -1;
26
22
27
23
24
+ void removeScriptObjectByCCObject(CCObject* object) {}
28
void removeScriptHandler(int handler) {}
29
int reallocateScriptHandler(int handler) { return -1; }
30
int executeString(const char* codes) { return -1; }
0 commit comments