本帖最后由 guoxiaomi 于 2019-1-12 01:50 编辑  
 
在vscode里设置了两个任务用来打开编辑器和游戏~感觉可以换成这个exe了? 
{             "label": "RPG Maker VX ACE",             "type": "shell",             "command": "Game.exe",             "options": {                 "env": {                     "path": "C:\\windows\\system32"                 },                 "cwd": "client-va"             },             "args": [                 "test",                 "console"             ],             "problemMatcher": [],             "presentation": {                 "reveal": "never"             },         },         {             "label": "RPG Maker VX ACE Editor",             "type": "shell",             "command": "C:\\Program Files (x86)\\RPG Maker VX Ace\\RPGVXAce.exe",             "options": {                 "cwd": "client-va"             },             "args": [                 "Game.rvproj2"             ],             "problemMatcher": [],             "presentation": {                 "reveal": "never"             },         } 
 
 {  
            "label": "RPG Maker VX ACE",  
            "type": "shell",  
            "command": "Game.exe",  
            "options": {  
                "env": {  
                    "path": "C:\\windows\\system32"  
                },  
                "cwd": "client-va"  
            },  
            "args": [  
                "test",  
                "console"  
            ],  
            "problemMatcher": [],  
            "presentation": {  
                "reveal": "never"  
            },  
        },  
        {  
            "label": "RPG Maker VX ACE Editor",  
            "type": "shell",  
            "command": "C:\\Program Files (x86)\\RPG Maker VX Ace\\RPGVXAce.exe",  
            "options": {  
                "cwd": "client-va"  
            },  
            "args": [  
                "Game.rvproj2"  
            ],  
            "problemMatcher": [],  
            "presentation": {  
                "reveal": "never"  
            },  
        }  
 
  |