You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-19 14:31:59 +00:00
Fix compilation issue by updating a call to runOnGLThread that was missed by PR #37175
This commit is contained in:
@@ -288,7 +288,7 @@ public abstract class GodotPlugin {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
runOnGLThread(new Runnable() {
|
runOnRenderThread(new Runnable() {
|
||||||
@Override
|
@Override
|
||||||
public void run() {
|
public void run() {
|
||||||
nativeEmitSignal(getPluginName(), signalName, signalArgs);
|
nativeEmitSignal(getPluginName(), signalName, signalArgs);
|
||||||
|
|||||||
Reference in New Issue
Block a user