Search found 2 matches

by jcmoyer
Wed Apr 22, 2015 4:26 pm
Forum: General
Topic: Obligatory Ludum Dare 32 thread
Replies: 30
Views: 15952

Re: Obligatory Ludum Dare 32 thread

Hey there. I've been taking part in LDs for a while now using LOVE, here's my compo entry this time around.

EDIT: Post mortem

Image
by jcmoyer
Sat Feb 01, 2014 7:17 am
Forum: General
Topic: How do people create their .loves and .exes? (Discussion)
Replies: 13
Views: 7077

Re: How do people create their .loves and .exes? (Discussion

My approach is similar to #4 except I have an intermediary step where I copy all the source code into a staging directory, then run it through luajit's bytecode compiler. Roughly: rm -rf $STAGE && mkdir $STAGE # copy things to the staging directory find . -name "*.lua" -not -path &...