Input C3D file

Hello, I am trying to input my C3D file into Anybody by following the code below but It doesn’t show on the model.
I think those code is right because when I changed another C3D file (from Anybody tutorial - pendulum.c3d), it does work.
Thank you for your help.

Main = {

// The actual body model goes in this folder
AnyFolder MyModel = {

// Global Reference Frame
AnyFixedRefFrame GlobalRef = {
 
};  // Global reference frame

};

AnyInputC3D SQ =
{
FileName = “LMS_squat-01.c3d”;
ReadAllDataOnOff = On;
ConstructChartOnOff = Off;
MarkerRGB = {0.65, 0.65, 0.65};
};

AnyBodyStudy MyStudy = {
AnyFolder &Model = .MyModel;
Gravity = {0.0, -9.81, 0.0};
AnyIntVar FirstFrame = Main.SQ.Header.FirstFrameNo;
AnyIntVar LastFrame = Main.SQ.Header.LastFrameNo;
tStart = FirstFrame/Main.SQ.Header.VideoFrameRate+2Kinematics.ApproxVelAccPerturb;
tEnd = LastFrame/Main.SQ.Header.VideoFrameRate-2
Kinematics.ApproxVelAccPerturb;
};

}; // Main

Hi,

Please try to use ‘ConstructModelOnOff’ option as On in your AnyInputC3D class instance.

Best regards,
Moonki