all repos — RPG @ master

Fully functional 3D turn based role playing game coded in C# and base Unity.

.vscode/launch.json (view raw)

 1{
 2    // Use IntelliSense to learn about possible attributes.
 3    // Hover to view descriptions of existing attributes.
 4    // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
 5    "version": "0.2.0",
 6    "configurations": [
 7        {
 8            "name": "Unity Editor",
 9            "type": "unity",
10            "path": "/d:/Progetti/UnityProjects/dio/RPGTest/Library/EditorInstance.json",
11            "request": "launch"
12        },
13        {
14            "name": "Windows Player",
15            "type": "unity",
16            "request": "launch"
17        },
18        {
19            "name": "OSX Player",
20            "type": "unity",
21            "request": "launch"
22        },
23        {
24            "name": "Linux Player",
25            "type": "unity",
26            "request": "launch"
27        },
28        {
29            "name": "iOS Player",
30            "type": "unity",
31            "request": "launch"
32        },
33        {
34            "name": "Android Player",
35            "type": "unity",
36            "request": "launch"
37        },
38        {
39            "name": "Xbox One Player",
40            "type": "unity",
41            "request": "launch"
42        },
43        {
44            "name": "PS4 Player",
45            "type": "unity",
46            "request": "launch"
47        },
48        {
49            "name": "SwitchPlayer",
50            "type": "unity",
51            "request": "launch"
52        }
53    ]
54}