We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ec2eaae commit e478a9cCopy full SHA for e478a9c
Tools/AnyMocap/MarkerTrackingSettings.any
@@ -52,8 +52,10 @@ Main.Studies.MarkerTracking =
52
#define N_STEP_KINEMATICS round(1+(T_END-T_START)*Main.ModelSetup.C3DFileData.Header.VideoFrameRate)
53
#endif
54
55
- tStart = T_START;
56
- tEnd = T_END;
57
- nStep = N_STEP_KINEMATICS;
+ // Becarefull when overwriting these directly. It is important that
+ // timesteps match the frames and framerate of the C3D/BVH file.
+ tStart ??= T_START;
58
+ tEnd ??= T_END;
59
+ nStep ??= N_STEP_KINEMATICS;
60
61
};
0 commit comments