前提・実現したいこと
vscodeを使用して、pyxelのゲームや音楽を作成したいと思いました。
黒い画面(ゲームができる)を表示させたい。
main.pyのファイル内とtasks.json
import pyxel class App: def __init__(self): pyxel.init(160, 120) pyxel.run(self.update, self.draw) def update(self): pass def draw(self): pass App() { // See https://go.microsoft.com/fwlink/?LinkId=733558 // for the documentation about the tasks.json format "version": "2.0.0", "tasks": [ { "label": "echo", "type": "shell", "command": "echo Hello", "problemMatcher": [], "group": { "kind": "build", "isDefault": true } } ] }
試したこと
VSCODE内の拡張機能
・Python
・YAML
・AnacondaExtention Park
Pythonに必要なアプリ
anaconda navigator
をダウンロードは完了済みです。
補足情報(FW/ツールのバージョンなど)
http://www.lancarse.co.jp/blog/?p=2576
このサイトでやろうとしていました。
tasks.json までうまくいきましたが、、”ビルドタスクを構成する…” を開いてみてpythonが出るはずなのですが、echoと出てしまいます。どうしたらよいのかわかりません。
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。