Search found 4 matches
- Sun Jun 21, 2020 7:45 pm
- Forum: Support and Development
- Topic: Help With Images
- Replies: 6
- Views: 3747
Re: Help With Images
Ok thanks for letting me know! I'm going to come back to this later because this is going to be useful! My window size is like this: version=0.6 versiondate="6/17/2020" function love.conf(t) t.window.title = "Capsule Critters v"..version t.window.width = 12*16*6 t.window.height =...
- Sat Jun 20, 2020 7:48 am
- Forum: Support and Development
- Topic: Help With Images
- Replies: 6
- Views: 3747
Re: Help With Images
ok; I'll see if I want to atempt it later then. I came from PICO-8 and in pico there's a built-in way to test the screen and super easy useing Pget and Pset. IDK thanks for anwsering!
- Fri Jun 19, 2020 2:38 pm
- Forum: Support and Development
- Topic: Help With Images
- Replies: 6
- Views: 3747
Re: Help With Images
Thanks for telling me but I figured that out yesterday.. I wasen't sure if the fourm post was verified yet though to comment that. I was wondering though how would I use this for shaders? like if I test the pixel color at a given pixel how can I use capturescreenshot to do that? But the images that ...
- Fri Jun 19, 2020 5:42 am
- Forum: Support and Development
- Topic: Help With Images
- Replies: 6
- Views: 3747
Help With Images
Hi! I'm kinda new to Löve2d and I wanted some help with figuring out how to create .pngs. I have this code: screenshotnum=0 function screenshoter(key) if input.isDown(key) then screenshotnum = screenshotnum + 1 local filename = love.window.getTitle().." "..screenshotnum..".png" i...