Search found 16 matches
- Tue Jun 30, 2020 10:43 am
- Forum: Support and Development
- Topic: math.clamp?
- Replies: 18
- Views: 34698
Re: math.clamp?
Here is my own version, actually found it on the web and it was meant for a lower level language where you could convert bool to int : function clamp(x, a, b) --a is lower bound, b is upper bound because why not ? local function int(bool) if bool then return 1 end return 0 end return a * int(x < a) ...
- Tue Aug 13, 2019 10:17 am
- Forum: Support and Development
- Topic: Love2d shader
- Replies: 1
- Views: 2707
Love2d shader
Hello everyone,
I was just wondering if the "Texel(Image texture, vec2 coords)" method did bilinear interpolation of the color when "coords" landed between 4 pixels or if it just chose the color of the closest neighbour ?
Thanks for answering
I was just wondering if the "Texel(Image texture, vec2 coords)" method did bilinear interpolation of the color when "coords" landed between 4 pixels or if it just chose the color of the closest neighbour ?
Thanks for answering
- Thu Aug 08, 2019 7:59 am
- Forum: General
- Topic: What collision detection are you using ?
- Replies: 1
- Views: 4048
What collision detection are you using ?
Hello everybody, I am curious to know what collision detection algorithm you are using. Is it simply AABB ? Or maybe you are using SAT ? Or even JGK ? Another one maybe ? And if you are using a library, could you tell me (if you know it) what collision detection algorithm it uses ? It would also be ...
- Sat Dec 22, 2018 12:54 pm
- Forum: Games and Creations
- Topic: ItsyRealm - 3D single-player RPG
- Replies: 40
- Views: 132852
Re: ItsyRealm - 3D single-player RPG
Thanks !
- Sun Dec 16, 2018 1:21 pm
- Forum: Games and Creations
- Topic: ItsyRealm - 3D single-player RPG
- Replies: 40
- Views: 132852
Re: ItsyRealm - 3D single-player RPG
Why a *.exe file ? Don't you want linux users (as me) to try out your probably amazing game ?
- Sun Dec 16, 2018 1:18 pm
- Forum: General
- Topic: LoveéD and udp socket
- Replies: 6
- Views: 8693
Re: LoveéD and udp socket
His computer ports ?
- Sun Dec 09, 2018 3:24 pm
- Forum: General
- Topic: LoveéD and udp socket
- Replies: 6
- Views: 8693
Re: LoveéD and udp socket
Does my friend need to open his ports on his internet box so I can communicate with him without being on the same network ?
- Sun Dec 02, 2018 2:48 pm
- Forum: General
- Topic: LoveéD and udp socket
- Replies: 6
- Views: 8693
LoveéD and udp socket
Hello everyone, I've been trying to to send data via udp to a friend, but he dosen't receive anything. I don't know if it is because of the ip address (his looks like 192.168.*.*, is that the address where i should send the data to ?) or the port (he set his to 87**). Could someone show me an exampl...
- Sun Dec 02, 2018 2:39 pm
- Forum: General
- Topic: Getting into networking
- Replies: 6
- Views: 6898
Re: Getting into networking
Could you please post the fix if you found one ?
- Wed Nov 07, 2018 12:07 pm
- Forum: Support and Development
- Topic: Share a Shader!
- Replies: 328
- Views: 621479
Re: Share a Shader!
I have created another shader, this time a fractal. Left mouse button is to place a fractal, backspace to reset graphics, return (enter) to reset frames, space to pause/unpause and scrolling makes it evolve faster or slower. I hope you will have fun playing around with it ! :) Fractal.love Here's a ...