初歩的な質問ですみません。pyxeleditor で作成した絵を保存して、その保存した描画を開きたいのですが、loadassetと出てきてファイルを開くことができません。これはどういうことなのでしょうか。
import pyxel
class App:
def init(self):
pyxel.init(200, 200)
pyxel.load("assets/kadai.pyー~/fit2.pyxel") def run(self): pyxel.run(self.update, self.draw) def update(self): pass def draw(self): pyxel.cls(0) pyxel.blt(80, 100, 0, 0, 0, 32, 32, 0)
App().run()
あなたの回答
tips
プレビュー