0
While loading <'Image' u'Volume1.png'>:
  File "game/script.rpy", line 7, in script
    "Welcome."
  File "renpy/common/000window.rpy", line 98, in _window_auto_callback
    _window_show()
  File "renpy/common/000window.rpy", line 60, in _window_show
    renpy.with_statement(trans)
IOError: Couldn't find file 'Volume1.png'.

在 Atom 中运行此代码时出现此错误。我确实在文件中应该有图像。我正在用 Ren'Py 开发一部视觉小说。语言是 Python。

这是代码 -

image Volume1 = "Volume1.png"

label start:

scene Volume1

"Welcome."

return
4

1 回答 1

0

假设您在 images 文件夹中有 Volume1.png,它应该可以工作。检查图像的名称是否确实是 Volume1 而不是 volume1,因为 Ren'Py 对大小写非常挑剔。

测试您是否可以显示图像:显示 Volume1。如果问题仍然存在,请将文件重命名为其他名称,因为 VolumeN 可能是保留词。

于 2020-08-13T14:15:01.727 回答