Search found 188 matches

by monolifed
Fri Sep 27, 2019 5:05 pm
Forum: Libraries and Tools
Topic: Template for using Löve as if it were not event-oriented
Replies: 16
Views: 17408

Re: Template for using Löve as if it were not event-oriented

From the image, it looks like it also optimizes the path
by monolifed
Fri Sep 27, 2019 5:04 pm
Forum: General
Topic: How to create an animation from a .png image (without quads)?
Replies: 6
Views: 5108

Re: How to create an animation from a .png image (without quads)?

move image y coord to y + 10
setColor from {1,1,1,1} to {1,1,1,0} before drawing the image

you can probably use https://github.com/kikito/tween.lua
(note: image may not appear smooth with non integer y-coord)
by monolifed
Mon Sep 23, 2019 9:25 pm
Forum: General
Topic: Distributing lua files
Replies: 21
Views: 13504

Re: Distributing lua files

It is understandable if you want to hide your code. It is really stressful when other people see your code and criticize it.
by monolifed
Thu Sep 19, 2019 10:58 am
Forum: Games and Creations
Topic: Chessboard
Replies: 39
Views: 22682

Re: Chessboard

window title can contain if black or white should move
by monolifed
Thu Sep 19, 2019 10:45 am
Forum: Support and Development
Topic: a super fast AABB collision detection ( Minkowski Sums )
Replies: 13
Views: 9556

Re: a super fast AABB collision detection ( Minkowski Sums )

Code: Select all

I come up with something smart but it is already implemented and optimized
:o
by monolifed
Thu Sep 19, 2019 10:41 am
Forum: General
Topic: Concatenation and garbage
Replies: 5
Views: 3604

Re: Concatenation and garbage

string.format looks cleaner and probably uses sprintf (which might be better than a train of luaconcats)
by monolifed
Tue Aug 27, 2019 6:55 pm
Forum: Libraries and Tools
Topic: love demos
Replies: 4
Views: 6761

Re: love demos

updated Note: I didn't create any of these. lovalanche : author: ?, license: ? metaballs : author: ?, license: ? no : author: Michael Enger, license: zlib particles : author: LOVE Development Team, license:zlib passingclouds : author: LOVE Development Team, license:zlib sinescroller : author: fleg, ...
by monolifed
Sun Jul 28, 2019 10:49 pm
Forum: Libraries and Tools
Topic: Building a Free Library of Images for Everyone
Replies: 245
Views: 707912

Re: Building a Free Library of Images for Everyone

YoungNeer wrote: I don't want to sound rude and all that but
by monolifed
Thu May 02, 2019 6:23 pm
Forum: Libraries and Tools
Topic: Lua Vector
Replies: 12
Views: 14420

Re: Lua Vector

It is not. Also it is GPL.
by monolifed
Thu Mar 14, 2019 6:19 am
Forum: General
Topic: Putting Objects Into Strings
Replies: 5
Views: 4390

Re: Putting Objects Into Strings

https://www.lua.org/manual/5.2/manual.html#pdf-tostring
you need to add __tostring metamethod to your userdata in C
or manually turn it to string in lua without using tostring