Search results

  1. I

    SDK Question Canot turn off RCS Thrusters, not with SetAttitudeMode and not by a for loop

    Thanks for that, but SetThrusterLevel didn't work for the RCS Thrusters. Don't know why.... But i already fixed it by disconnecting the thrusters from their fuel source, with: for (int i = 0; i < 14; i++) { SetThrusterResource(thRCS[i],0); } In this way, it works to disable also the RCS...
  2. I

    SDK Question Camerasetup for Idiots :D

    I managed it to get different cameras in my szenario with help of gattispilot. Many thanks for this!!! :cheers: I set my mesh visability to "always". Now, i press F1 and i'm inside my vessel. Here i can see the mesh in the cams positioned in (0,0,0) (Look forward, left, right -> Cam 1,2,3). If...
  3. I

    SDK Question Camerasetup for Idiots :D

    My problem is, that nothing happens. If i press "v" for the first time, i can set the standard direction of the standard cam once, eg. from z direction to x direction. But just, if i reduce my code to just 1 cam setup in the clbkConsumeBufferedKey Now, if i use my mouse to rotate the view...
  4. I

    SDK Question Camerasetup for Idiots :D

    Hey guys, can someone tell me how to set up 2 Cameras? I don't understand how it works the right way. I have no Cockpit grafics like 2D Panels or a 3D Cockpit. (Still a looong way to understand how 2D/3D Panels are working) So, for the moment I just want a 2nd camera position inside my vessel...
  5. I

    SDK Question Canot turn off RCS Thrusters, not with SetAttitudeMode and not by a for loop

    sry,just looked like it worked...doesn't work either with 0 instead of 1... But anyway it was an mistake to set in to 1.
  6. I

    SDK Question Canot turn off RCS Thrusters, not with SetAttitudeMode and not by a for loop

    ah int i=0; thy! Now the RCS Lin stops working. RCS Rot still works somehow...
  7. I

    SDK Question Canot turn off RCS Thrusters, not with SetAttitudeMode and not by a for loop

    Ah okay, so i have to think about an other way... The thought behind it, is to deactivate the control of the space ship. No Pilot, no control...and deactivating the thrusters looked like a pretty easy solution. Your idea with the current setting sounds better than mine, i'll try this. But, how...
  8. I

    SDK Question Canot turn off RCS Thrusters, not with SetAttitudeMode and not by a for loop

    Hey, i'm new to the World of Orbiter and at the moment, i'm trying to code my first own vessel. It's a Vessel3 Class based ship. This is where and how i set up my Thrusters. I did it in clbkSetClassCaps void MyVessel::clbkSetClassCaps(FILEHANDLE cfg) { ...Stuff like Empty Mass, Mesh...
Top