Search found 472 matches

by milon
Mon Dec 04, 2023 8:16 pm
Forum: Libraries and Tools
Topic: Textured Raycaster [Multiple Levels! Door Covers! Jumping!]
Replies: 71
Views: 99865

Re: Textured Raycaster [Multiple Levels! Door Covers! Jumping!]

SugarRayLua wrote: Sat Dec 02, 2023 1:07 am @4aiman,
- snip -
In case you missed it, the post you replied to was from 5 years ago. ;)

If you're interested in 3D under Love, you really should take a look at Groveburger's 3D Engine. It's still in active development, I believe.
by milon
Mon Dec 04, 2023 8:08 pm
Forum: Libraries and Tools
Topic: Lua Carousel: a programming environment for computers and mobile devices
Replies: 25
Views: 64326

Re: Lua Carousel: a programming environment for computers and mobile devices

Thanks for clarifying. :) I'm particularly curious about usability issues. Is it too fast, too slow, etc. I don't have much experience supporting the mouse wheel. Mouse wheel works great! It's exactly the right speed (at least for me), and works so well that I actually forgot at first that I was sup...
by milon
Tue Nov 28, 2023 6:23 pm
Forum: Support and Development
Topic: [solved] Animation - For Limit Must Be A Number
Replies: 10
Views: 10180

Re: [solved] Animation - For Limit Must Be A Number

I don't consider ChatGPT bad because it's "newfangled", as you might want to imply; i consider it bad because it's not reliable. I would consider a badly written manuscript full of errors documenting lua just as bad. Right. The thing people seem to forget about ChatGPT et al is that it's ...
by milon
Mon Nov 27, 2023 7:19 pm
Forum: Libraries and Tools
Topic: Lua Carousel: a programming environment for computers and mobile devices
Replies: 25
Views: 64326

Re: Lua Carousel: a programming environment for computers and mobile devices

The space on the right is available for your programs, as my examples show :) I assume it's a list of projects or files or something, but it's all empty space in your images here & on your itch page. Am I missing something? EDIT - I was thinking of using this in place of Geany, but I miss the &...
by milon
Wed Nov 08, 2023 2:36 pm
Forum: Support and Development
Topic: More filesystem questions
Replies: 5
Views: 6320

Re: More filesystem questions

Madrayken wrote: Sat Nov 04, 2023 9:56 pm Oh, so I could have basically not bothered checking! Thanks for that!
As long as you can guarantee that you have write access to the folder, yes. Otherwise your saves etc will start failing inexplicably.
by milon
Wed Nov 08, 2023 1:37 pm
Forum: Libraries and Tools
Topic: cindy - [0-255] color range in LÖVE 11
Replies: 12
Views: 16360

Re: cindy - [0-255] color range in LÖVE 11

togFox wrote: Wed Nov 08, 2023 9:31 am Am I doing something wrong by taking the colour code and dividing by 255?
Nope. That's exactly how to convert a 0..255 range to a 0..1 range. (No, I don't understand the agita here either.)
by milon
Wed Sep 20, 2023 3:36 pm
Forum: General
Topic: Offline LÖVE2D Documentation for 11.x
Replies: 5
Views: 17277

Re: Offline LÖVE2D Documentation for 11.x

Stupid question, but you'll be keeping this up to date with the wiki? Do you get notifications when the wiki has additions/changes?
by milon
Wed Sep 20, 2023 3:33 pm
Forum: General
Topic: Offline-capable LÖVE tutorial
Replies: 20
Views: 19255

Re: Offline LÖVE documentation for download

i am still a beginner in löve. (maybe, this qualifies me for this job?) Actually, yes, I think it does. I don't really remember the exact road I took in learning Lua/Love. If I wrote a guide, it would be based around what I want to know - best practices, how to achieve certain effects, how to get t...
by milon
Tue Sep 19, 2023 3:38 pm
Forum: Support and Development
Topic: Efficient Mouse Interaction and Event Handling for Objects
Replies: 14
Views: 7490

Re: Efficient Mouse Interaction and Event Handling for Objects

dusoft wrote: Tue Sep 19, 2023 3:34 pm
milon wrote: Tue Sep 19, 2023 2:02 pm Note that the hover() function is unique to each gui object. It may simply add a circular glow effect to a circular object, or it may recolor a rectangular region, etc.
Ah, I like that concept.
It quickly becomes a lot of table lookups, so localize where possible! ;)