Exemple #1
0
        public static NotesShowTimeCommand FromString(string[] split)
        {
            var command = new NotesShowTimeCommand()
            {
                StartValue = S2VXUtils.StringToFloat(split[2]),
                EndValue   = S2VXUtils.StringToFloat(split[4]),
            };

            return(command);
        }
Exemple #2
0
        public static ApproachesThicknessCommand FromString(string[] split)
        {
            var command = new ApproachesThicknessCommand()
            {
                StartValue = S2VXUtils.StringToFloat(split[2]),
                EndValue   = S2VXUtils.StringToFloat(split[4]),
            };

            return(command);
        }
Exemple #3
0
        public static GridAlphaCommand FromString(string[] split)
        {
            var command = new GridAlphaCommand()
            {
                StartValue = S2VXUtils.StringToFloat(split[2]),
                EndValue   = S2VXUtils.StringToFloat(split[4]),
            };

            return(command);
        }
Exemple #4
0
        public static HoldNotesOutlineThicknessCommand FromString(string[] split)
        {
            var command = new HoldNotesOutlineThicknessCommand()
            {
                StartValue = S2VXUtils.StringToFloat(split[2]),
                EndValue   = S2VXUtils.StringToFloat(split[4]),
            };

            return(command);
        }
Exemple #5
0
        public static CameraRotateCommand FromString(string[] split)
        {
            var command = new CameraRotateCommand()
            {
                StartValue = S2VXUtils.StringToFloat(split[2]),
                EndValue   = S2VXUtils.StringToFloat(split[4]),
            };

            return(command);
        }