I installed cocos2d for python and the samples worked well
But when I move the python file into the folder that I selected in the visual studio code, it's only saying that it cannot find the module named cocos.
I guess I need to change the setting in the launch.json but I don't know how.
I'll just upload the part of my launch.json file.
{
"version": "0.2.0",
"configurations": [
{
"name": "Python",
"type": "python",
"request": "launch",
"stopOnEntry": true,
"pythonPath": "C:/Users/Sanghun/AppData/Local/Programs/Python/Python35-32/python.exe",
"program": "${file}",
"debugOptions": [
"WaitOnAbnormalExit",
"WaitOnNormalExit",
"RedirectOutput"
]
},