- Messages
- 42
- Country

Hi all,
I am trying to create a simobject to place a land able aircraft carrier at a location I specify. I have managed to inject the model no issues, however, I go to land and sink though the deck. The object has a land able deck when created by the sim itself but not when I create it.
Any help would be appreciated
Thanks,
Scott
I am trying to create a simobject to place a land able aircraft carrier at a location I specify. I have managed to inject the model no issues, however, I go to land and sink though the deck. The object has a land able deck when created by the sim itself but not when I create it.
C#:
Init.Airspeed = 0;
Init.Altitude = 0;
Init.Heading = Convert.ToDouble(model_data["hdg"]);
Init.Latitude = Convert.ToDouble(model_data["lat"]);
Init.Longitude = Convert.ToDouble(model_data["lon"]);
Init.Bank = 0;
Init.Pitch = 0;
Init.OnGround = 1;
if (simconnect == null)
{
OpenSimConnectConnection();
}
simconnect.AICreateSimulatedObject(model_data["title"], Init, DATA_REQUESTS.REQUEST_AI);
Any help would be appreciated
Thanks,
Scott

