public static NotesShowTimeCommand FromString(string[] split) { var command = new NotesShowTimeCommand() { StartValue = S2VXUtils.StringToFloat(split[2]), EndValue = S2VXUtils.StringToFloat(split[4]), }; return(command); }
public static ApproachesThicknessCommand FromString(string[] split) { var command = new ApproachesThicknessCommand() { StartValue = S2VXUtils.StringToFloat(split[2]), EndValue = S2VXUtils.StringToFloat(split[4]), }; return(command); }
public static GridAlphaCommand FromString(string[] split) { var command = new GridAlphaCommand() { StartValue = S2VXUtils.StringToFloat(split[2]), EndValue = S2VXUtils.StringToFloat(split[4]), }; return(command); }
public static HoldNotesOutlineThicknessCommand FromString(string[] split) { var command = new HoldNotesOutlineThicknessCommand() { StartValue = S2VXUtils.StringToFloat(split[2]), EndValue = S2VXUtils.StringToFloat(split[4]), }; return(command); }
public static CameraRotateCommand FromString(string[] split) { var command = new CameraRotateCommand() { StartValue = S2VXUtils.StringToFloat(split[2]), EndValue = S2VXUtils.StringToFloat(split[4]), }; return(command); }