Search found 4 matches

by IS2511
Wed Dec 25, 2019 7:44 pm
Forum: General
Topic: LÖVE 11.3 released!
Replies: 49
Views: 1143267

Re: LÖVE 11.3 released!

slime wrote: Sun Nov 17, 2019 4:13 pm It looks like there's different truetype font hinting used in the two screenshots.
It may be the problem, how can I check? / Fix?
Thanks :з
by IS2511
Sun Nov 17, 2019 1:51 pm
Forum: General
Topic: LÖVE 11.3 released!
Replies: 49
Views: 1143267

Re: LÖVE 11.3 released!

The font rendering is changed in the new release from 11.2? 11.2: https://love2d.org/imgmirrur/CjvXPij.png 11.3: https://love2d.org/imgmirrur/8jW6ty7.png I can't find any mention of this and how to go back. It seems like "nearest" rendering is enabled, but it's "linear". I don't ...
by IS2511
Mon Nov 11, 2019 6:11 pm
Forum: Libraries and Tools
Topic: love-timer | A small timer lib
Replies: 2
Views: 5364

Re: love-timer | A small timer lib

Not a fan of the deepcopy inside the constructor, why don't you initialize the variables here ? I though about creating a table inside .new(), but I really wanted to keep functions and variables separated and I like C++ style class declaration. (My main language is C++). Initializing inside .new() ...
by IS2511
Fri Nov 08, 2019 9:26 pm
Forum: Libraries and Tools
Topic: love-timer | A small timer lib
Replies: 2
Views: 5364

love-timer | A small timer lib

(New to the forum) I noticed I was writing similar bits of code every time I wanted to keep track of time and so the idea came to me. This is just a small library I wrote to optimize timekeeping in my code. I'm interested if this is how OOP looks on lua and if I'm doing it right, any suggestions/com...