![]() |
|
|||||||
| Controls threads Everything about controls in CoD |
| View Poll Results: Do you like to see Freetrack interface integrated in IL-2:CoD? | |||
| Yes, I like to have Freetrack interface integrated in IL-2:CoD. |
|
133 | 81.60% |
| No, I don't like to have Freetrack interface integrated in IL-2:CoD. |
|
30 | 18.40% |
| Voters: 163. You may not vote on this poll | |||
|
|
Thread Tools | Display Modes |
|
#11
|
|||
|
|||
|
I'm not a programmer, but it looks like these are output variables for 6DoF:
if (getData(pData)) { printf("Record ID: %d\n" , data.dataID); printf("Yaw: %5.2f\n" , data.yaw ); printf("Pitch: %5.2f\n" , data.pitch ); printf("Roll: %5.2f\n" , data.roll ); printf("X: %5.2f\n" , data.x ); printf("Y: %5.2f\n" , data.y ); printf("Z: %5.2f\n" , data.z ); } else { printf("Nothing returned from getData\n"); break; } } Why can't CoD hook off that? I guess it is "C" language format. |
|
|