In the MSFS 2024 WASM documentation, there’s a note about a new update callback in standalone modules:
Standalone modules now have an update callback to avoid having a SimConnect connection used only for this purpose
There is no further documentation on this callback that I can see. I have tried the following with no success, but it was a complete guess so I didn’t really expect it to work!
extern "C" MSFS_CALLBACK void module_update( float dTime )
{
std::cout << "module_update";
}
Can we get some clarity and documentation on how to make use of this functionality please?