Search found 491 matches

by baconhawka7x
Mon Aug 11, 2014 9:45 pm
Forum: Games and Creations
Topic: Zömbies
Replies: 10
Views: 8795

Re: Zömbies

The gameplay is amazing, and the art is absolutely fantastic! Good job dude!
by baconhawka7x
Mon Aug 11, 2014 3:43 am
Forum: Libraries and Tools
Topic: Asterithmic - Visual Art in Love
Replies: 2
Views: 2876

Re: Asterithmic - Visual Art in Love

Awesome :o
by baconhawka7x
Tue Jul 15, 2014 6:18 pm
Forum: Games and Creations
Topic: Starbreak
Replies: 12
Views: 9689

Re: Starbreak

I like it a lot! Good feeling gameplay and super awesome art. Nice job.
by baconhawka7x
Tue Jul 15, 2014 4:44 am
Forum: General
Topic: Code Doodles!
Replies: 196
Views: 260240

Re: Code Doodles!

Made a doodle to "enlarge" pixels. It's a nice little "illusion". It doesn't only converts them in the screen but also saves the resulting image. There's an image by default, but you can add a new image on "%appdata%/LOVE/ImageConverter". It must be named "oldimag...
by baconhawka7x
Sat Jul 12, 2014 5:14 pm
Forum: Libraries and Tools
Topic: Beelieve Soundtrack
Replies: 3
Views: 2504

Beelieve Soundtrack

I decided to release the music in my upcoming game Beelieve as a free sountrack. I spent a lot of time working on these songs, and I hope you guys like them! Also just a reminder, if anyone needs some music for any of their projects I will work for free! Listen Here: https://soundcloud.com/isol8/set...
by baconhawka7x
Thu Jul 03, 2014 11:09 am
Forum: Libraries and Tools
Topic: Love Fiddle - A tool for sharing Love snippets on the web
Replies: 27
Views: 15304

Re: Love Fiddle - A tool for sharing Love snippets on the we

SouL wrote:
baconhawka7x wrote:Something I just made: http://lovefiddle.com/15c6c7fa79d094d56 ... ff0e7b35ca
Hey! It's really cool! :awesome:

With your permission, I'll save that code, I really liked it a lot :ultraglee:

Haha, yeah go for it.
by baconhawka7x
Wed Jul 02, 2014 10:01 am
Forum: General
Topic: how does one learn to develop?
Replies: 6
Views: 4410

Re: how does one learn to develop?

Let me start by saying that it's good you're looking at source code and are interested in that stuff, but don't obsess over comparing your code to others. If you're looking at a multi-file project, someone else's code is almost always going to be difficult to comprehend. I started getting into devel...
by baconhawka7x
Tue Jul 01, 2014 6:09 pm
Forum: General
Topic: If you were to create a programming language...
Replies: 42
Views: 21614

Re: If you were to create a programming language...

Kingdaro wrote:I love Lua's simplicity, so I wouldn't really change anything about it. The only thing I truly want is assignment operators. This is annoying:

Code: Select all

self.longVariable = self.longVariable + 1
This is less annoying:

Code: Select all

self.longVariable += 1
I totally agree.