Search found 5 matches

by Apprehentice
Wed Mar 18, 2015 1:05 am
Forum: Libraries and Tools
Topic: [library] Attachment - A Callback Helper Utility for LÖVE
Replies: 10
Views: 7505

Re: [library] Attachment - A Callback Helper Utility for LÖV

Hello, I forked your library and rewrite some part of code. See my pull request I also made my own lib to manage LÖVE callbacks : love modular I use a different approach. I define a passive format to export a module : We can create simple love module without my library. My library read the "ex...
by Apprehentice
Sat Mar 07, 2015 7:48 pm
Forum: Libraries and Tools
Topic: [library] Attachment - A Callback Helper Utility for LÖVE
Replies: 10
Views: 7505

Re: [library] BootyCall - A Callback Helper Utility for LÖVE

You could call it something like "attached" is something like that, if you're trying to make it love themed, since people in love can become overly attached. As a bonus, you can call hook/unhook attach/detach. not to contribute to the "bad" library names, but "hooker" ...
by Apprehentice
Sat Mar 07, 2015 6:34 pm
Forum: Libraries and Tools
Topic: [library] Attachment - A Callback Helper Utility for LÖVE
Replies: 10
Views: 7505

Re: [library] BootyCall - A Callback Helper Utility for LÖVE

T-Bone wrote:Can I be rude enough to suggest changing the name to something more family friendly?
Do you have any suggestions?
by Apprehentice
Wed Mar 04, 2015 4:37 pm
Forum: Libraries and Tools
Topic: [library] Attachment - A Callback Helper Utility for LÖVE
Replies: 10
Views: 7505

Re: [library] BootyCall - A Callback Helper Utility for LÖVE

not to sound mean, but what does this do different than creating a function to a variable? I mean: function a() print("hello") end b=a b() -- prints hello I mean that is literally what it feels that your hook does from the post. Assigns a function to a variable.Maybe I am missing a point....
by Apprehentice
Tue Mar 03, 2015 8:35 pm
Forum: Libraries and Tools
Topic: [library] Attachment - A Callback Helper Utility for LÖVE
Replies: 10
Views: 7505

[library] Attachment - A Callback Helper Utility for LÖVE

Introduction Have you ever found yourself chugging through the tedium that is callbacks? It seems that every library wants a piece of your program loop and you have to give it to them or nothing will work. For this reason, I wrote a handy utility I like to call Attachment! What is it? Attachment is...