Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我的项目结构是:
assets -- image -- my_image.png scene -- start.lua main.lua
从 start.lua,我想显示 my_image.png,imagePath 是“../assets/image/my_image.png”,但它失败了。当然,我可以从项目根目录做到这一点。在子文件夹中,它不是。请指教。
该路径与源文件无关。尝试使用与 in 相同的路径start.lua,main.lua即“assets/image/my_image.png”。
start.lua
main.lua
您可以简单地将图像放在任何 lua 文件中,例如在“main.lua”中,您可以放入:
local img = display.newImage("assets/image/my_image.png",x,y)
现在如果你想把它放在你的 start.lua 中没有问题。