Search found 167 matches

by farvardin
Sun Feb 15, 2009 10:00 pm
Forum: Libraries and Tools
Topic: CAMERA: scrolling and scaling
Replies: 50
Views: 40627

Re: CAMERA: scrolling and scaling

I don't know what to say, it's so impressive and smooth...
by farvardin
Thu Feb 12, 2009 6:55 pm
Forum: Games and Creations
Topic: Introducing Frock, a flying chicken flocking simulation
Replies: 8
Views: 6301

Re: Introducing Frock, a flying chicken flocking simulation

some people are really talented here...
Very interesting! I love flocks of birds. I've seen recently a similar one like on the video on your website...
by farvardin
Thu Feb 12, 2009 6:37 pm
Forum: General
Topic: How Did You Find (true) LÖVE?
Replies: 55
Views: 56949

Re: How Did You Find (true) LÖVE?

Randomly tried sudo pacman -S love and was surprised when it installed something, wasn't too big so I decided to check whatever it was out. Am happy that I did. or that was something and I found love on reddit. I forget which. strange, because Löve is not in the official archlinux repositories. Was...
by farvardin
Thu Feb 12, 2009 7:08 am
Forum: Support and Development
Topic: can someone help me with a piece of code?
Replies: 10
Views: 5830

Re: can someone help me with a piece of code?

I really don't like when games starts fullscreen, especially when they don't use the same resolution as my screen (most of the time). I prefer to have them windowed, and can turn them fullscreen if necessary...
by farvardin
Thu Feb 12, 2009 6:15 am
Forum: Libraries and Tools
Topic: SpriteMaker
Replies: 7
Views: 7740

Re: SpriteMaker

no offence, but I thing you can achieve something similar with the imagemagick tool (some extra options were set for a particular project, so maybe it's possible to have it simpler): montage -background "transparent" -depth 8 -type TrueColorMatte image1.png image2.png image3.png ... (or by...
by farvardin
Wed Feb 11, 2009 8:12 pm
Forum: General
Topic: Reading from, displaying, and parsing a text file
Replies: 10
Views: 10961

Re: Reading from, displaying, and parsing a text file

Endianess depends upon architecture. Linux on powerpc or sparc would behave differently from Linux (or Mac OS X) on Intel/Amd (x86).
by farvardin
Wed Feb 11, 2009 3:11 pm
Forum: General
Topic: LuaLogic, french love community
Replies: 8
Views: 9620

Re: LuaLogic, french love community

super, très bonne idée. Mais où s'inscrit-on ?
Pourquoi ne pas faire un wiki pour les cours ? Cela serait plus pratique que dans un forum non ?
by farvardin
Sun Feb 08, 2009 10:50 pm
Forum: Support and Development
Topic: Any way to add APNG?
Replies: 5
Views: 3975

Re: Any way to add APNG?

interesting. I've heard of mng, but not apng. It's great to see it's already supported into firefox!
by farvardin
Sun Feb 08, 2009 10:26 pm
Forum: General
Topic: Game Distribution & Updating
Replies: 19
Views: 10050

Re: Game Distribution & Updating

should it work on every plateform supported by Löve?
by farvardin
Sun Feb 08, 2009 7:36 pm
Forum: Support and Development
Topic: Distributing your games (making a .love file)
Replies: 278
Views: 937967

Re: Distributing your games (making a .love file)

for my part I put in my project folder a simple "make_distrib.sh" script which zip and delete extra source files, like this:

Code: Select all

zip -r ../myproject.love ./
zip -d ../myproject.love "*-src.png"
zip -d ../myproject.love "*.svg"
zip -d ../myproject.love "*.xcf"