-
-
Notifications
You must be signed in to change notification settings - Fork 36
Open
Labels
Description
In MSFS 2024 there are currently 5 new SimConnect functions.
SimConnect_AICreateEnrouteATCAircraft_EX1
SimConnect_AICreateNonATCAircraft_EX1
SimConnect_AICreateParkedATCAircraft_EX1
SimConnect_AICreateSimulatedObject_EX1
SimConnect_EnumerateSimObjectsAndLiveries
Much of the code can probably be copied from the existing aICreateEnrouteATCAircraft, aICreateNonATCAircraft, aICreateParkedATCAircraft, aICreateSimulatedObject.
Remember to also add a new enum value for the Protocol enum and implement compatibility checks similar to this:
if (this._ourProtocol < Protocol.KittyHawk) throw Error(SimConnectError.BadVersion);