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

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

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

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

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

            return(command);
        }