Search found 59 matches

by srcn
Sun May 14, 2017 8:08 pm
Forum: General
Topic: Fixing your bugs and issues for $5
Replies: 10
Views: 12409

Re: Fixing your bugs and issues for $5

raidho36 wrote: Tue May 02, 2017 4:02 pm fixing the absence of a function to construct a 4d rotation matrix about arbitrary hyperplane
this totally evaporated my sides :D
by srcn
Mon Feb 27, 2017 1:33 pm
Forum: Games and Creations
Topic: Made a game for my daughter.
Replies: 20
Views: 18880

Re: Made a game for my daughter.

Lovely game, I enjoyed playing it!
by srcn
Tue Jan 10, 2017 2:42 pm
Forum: Games and Creations
Topic: Menger Sponge Explorer
Replies: 41
Views: 31728

Re: Menger Sponge Explorer

demoscene is not dead :D
by srcn
Fri Dec 30, 2016 2:08 pm
Forum: Games and Creations
Topic: Depths of Limbo - Roguelike Shooter
Replies: 71
Views: 40287

Re: Depths of Limbo - Roguelike Shooter

Looks great so far and gives me the feels of a fast paced 'binding of isaac'. I hope it will be as successful too!
by srcn
Fri Dec 16, 2016 7:25 pm
Forum: Libraries and Tools
Topic: [Tool] Animeye - Spritesheet Viewer
Replies: 2
Views: 3511

Re: [Tool] Animeye - Spritesheet Viewer

Can this be used with anim8? Something like this would be pretty useful to me. I used anim8 but had some problems, probably was an old version, just copy pasted it from an old project. So then used my small imitation of it. But planning to port it to anim8 since it is stable and offers more features.
by srcn
Fri Dec 16, 2016 1:58 pm
Forum: Libraries and Tools
Topic: [Tool] Animeye - Spritesheet Viewer
Replies: 2
Views: 3511

[Tool] Animeye - Spritesheet Viewer

During LD37 my friend who was working on animations told me he would be more productive if only he had a tool to view his spritesheet animations. So I wrote a small tool for him to help him, then decided to work some more on it and make it a better tool. So there I present you Animeye, very first to...
by srcn
Fri Dec 16, 2016 1:16 am
Forum: Support and Development
Topic: How do I create a file watcher
Replies: 8
Views: 6544

Re: How do I create a file watcher

Yes, I don't know how efficient these functions are, but I recommend using them only when you need to as opposed to every second. Are you trying to create an anti cheat for a game your working on? I'm working on a 2D sprite animation viewer, and want to update the animation as user edits and saves ...
by srcn
Thu Dec 15, 2016 10:17 pm
Forum: Support and Development
Topic: How do I create a file watcher
Replies: 8
Views: 6544

Re: How do I create a file watcher

I don't see what's so wrong with getLastModified other than the potential for it to be spoofed. Alternatively, you can hash the file and the other person's file and compare the two. You can use love.filesystem.getDirectoryItems() to check to see if all of the right files that should be there are th...
by srcn
Wed Dec 14, 2016 11:32 am
Forum: Games and Creations
Topic: LD37 Game - DarkRoom
Replies: 7
Views: 6358

Re: LD37 Game - DarkRoom

Interesting and different game, in a good way. You have managed to make a game that looks and feels very coherent, and solid. The writing is good and the idea is great :) It is worth playing already, but you should definatly keep working on it. Let me know when theres an updated version, would love...
by srcn
Tue Dec 13, 2016 10:56 pm
Forum: Support and Development
Topic: How do I create a file watcher
Replies: 8
Views: 6544

How do I create a file watcher

Hi all! I tried searching for file watcher for lua but could not come up with any useful info so far. Does anyone know how to write a watcher to listen if a file changed, and created or deleted in a directory? All I can do so far is checking getLastModified with a timer, but I don't find it efficient.