void Move_x_Command(string[] param)
    {
        int   char_index    = OldVSNController.GetInstance().charList.GetCharIdByParam(param[0]);
        float anim_time     = float.Parse(param[1]);
        float destination_x = float.Parse(param[2]);

        screen.SetMovement_x(char_index, anim_time, destination_x);
    }