Search found 3 matches
- Thu Oct 24, 2019 2:13 pm
- Forum: Support and Development
- Topic: love.filesystem.mount() not working
- Replies: 5
- Views: 3955
Re: love.filesystem.mount() not working
I think there indeed was a miscommunication then; you do not need to have any directories inside the löve file to be able to mount into, since the actual filesystem hierarchy (including the inside of your zip file renamed to .love) and löve's virtual filesystem that it uses internally (through a li...
- Tue Oct 22, 2019 7:48 pm
- Forum: Support and Development
- Topic: love.filesystem.mount() not working
- Replies: 5
- Views: 3955
Re: love.filesystem.mount() not working
Hi and welcome to the forums. >in the love file That there is your issue; if the image is in a directory in the löve file, you just do img = love.graphics.newImage("hai/aladeen.jpeg"), because everything in the löve file is already mounted. If the hai directory was next to the löve file, ...
- Fri Oct 18, 2019 4:14 pm
- Forum: Support and Development
- Topic: love.filesystem.mount() not working
- Replies: 5
- Views: 3955
love.filesystem.mount() not working
Hi, I was just trying to display an image located outside of the .love file. The image is located in the same directory the .love file is in. In the wiki, it said something like the code below, is a way of displaying the image. Actually the exact way of displaying image is not important here, it's a...