△環境
OS Windows10(Home)
エディター VsCode
言語 Python
"【Pythonでゲームを作ろう!】レトロな2Dゲームを作ってみた!
(https://dev.classmethod.jp/articles/gamedev-with-python-pyxel1/)"を、教材にして学習しています。
1,「コード」をコピー
2,「ターミナル」実行結果、エラー発生。
エラー文 ”pyxel error: cannot load image 'c:\Users\genki\OneDrive\繝・せ繧ッ繝医ャ繝予Python\assets\cat_16x16.png' in 'LoadImage'”
3,解決の模索として、エラー文を検索して色々試みましたが、悉く駄目でした。(但し、自身の無能力による未消化が主です)
ご教授お願い致します。
import pyxel
class App:
def init(self):
pyxel.init(160, 120, caption="Hello Pyxel")
pyxel.image(0).load(0, 0, "assets/cat_16x16.png")
pyxel.run(self.update, self.draw)
def update(self):
if pyxel.btnp(pyxel.KEY_Q):
pyxel.quit()
def draw(self):
pyxel.cls(0)
pyxel.blt(75, 45, 0, 0, 0, 16, 16)
App()
回答2件
あなたの回答
tips
プレビュー