This repository has been archived by the owner on Jul 13, 2024. It is now read-only.
Some function calls fail on Uncaught RuntimeError #7
Labels
blocker
We can't move forward without that.
I found that plenty of function call fails on
Uncaught RuntimeError: null function or function signature mismatch
. The most absurd occasion I found is a call toRaylib.ColorAlpha
, which is a very simple function acceptingColor
andfloat
. It's from this example:https://disketteman.github.io/DotnetRaylibWasm/raylib.html?arg=Camera3dFree
My wild guess is that it got trimmed for whatever reason during a build, but more investigation is needed. It's possible to find what specifically failed using this approach:
emscripten-core/emscripten#16305 (comment)
No need for
EM_ASM({ Module.wasmTable = wasmTable; });
, the table is already generated by--emit-symbol-map
.The text was updated successfully, but these errors were encountered: