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

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

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

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

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

            return(command);
        }