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
最佳答案
假设您在images文件夹中有Volume1.png,它应该可以工作。检查图像的名称确实是Volume1而不是volume1,因为Ren'Py对大写和小写都很挑剔。
测试是否可以显示图像:显示Volume1。如果问题仍然存在,请将该文件重命名为其他名称,因为VolumeN可能是一个保留字。
关于compiler-errors - 无法找到图像(使用Atom编码以在Ren'py Visual Novel Engine中创建Visual Novel),我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/60888816/