无法找到图像(在 Ren'py 视觉小说引擎中使用 Atom 编写视觉小说代码)
Unable to find Image (Coding in Atom for Visual Novel Creation in Ren'py Visual Novel Engine)
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
假设图像文件夹中有 Volume1.png,它应该可以工作。检查图像的名称确实是 Volume1 而不是 volume1,因为 Ren'Py 对大小写非常挑剔。
测试是否可以显示图片:show Volume1。如果问题仍然存在,请将文件重命名为其他名称,因为 VolumeN 可能是保留字。
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
假设图像文件夹中有 Volume1.png,它应该可以工作。检查图像的名称确实是 Volume1 而不是 volume1,因为 Ren'Py 对大小写非常挑剔。
测试是否可以显示图片:show Volume1。如果问题仍然存在,请将文件重命名为其他名称,因为 VolumeN 可能是保留字。