Search found 33 matches

by conman420
Sat Sep 06, 2008 10:10 am
Forum: General
Topic: Can we get a game release section?
Replies: 3
Views: 8735

Re: Can we get a game release section?

Woo

Thanks a lot it is so much easier to find games now :)
by conman420
Fri Sep 05, 2008 10:20 pm
Forum: Support and Development
Topic: Making an image face a point
Replies: 2
Views: 2707

Re: Making an image face a point

Use this math:

Code: Select all

	local x2, y2 = position
	local x1, y1 = position
       local ang = math.atan2(y2 - y1, x2 - x1) * 180 / math.pi
We need lua syntaxing code boxes!
by conman420
Fri Sep 05, 2008 9:46 pm
Forum: Games and Creations
Topic: Unnamed cat game
Replies: 12
Views: 17662

Re: Unnamed cat game

Also the clouds seem a little weird how they just spin around.
by conman420
Fri Sep 05, 2008 9:35 pm
Forum: Games and Creations
Topic: Unnamed cat game
Replies: 12
Views: 17662

Re: Unnamed cat game

heh I played this earlier :D

Fun game.
by conman420
Thu Sep 04, 2008 3:16 pm
Forum: Games and Creations
Topic: A simple side scrolling shooter game.
Replies: 4
Views: 10229

Re: A simple side scrolling shooter game.

It is pretty simple :)

A - go backwards

D - go forwards

Space - jump

click - shoot

I'm quite proud of the bullet/gun code :D
by conman420
Thu Sep 04, 2008 2:17 pm
Forum: General
Topic: Can we get a game release section?
Replies: 3
Views: 8735

Can we get a game release section?

Just a thought, instead of having people release games in general I think it would be better if we had a seperate section for game releases.

Just a thought :) it would be easier to find games that have been released.
by conman420
Wed Sep 03, 2008 6:10 pm
Forum: Games and Creations
Topic: A simple side scrolling shooter game.
Replies: 4
Views: 10229

Re: A simple side scrolling shooter game.

Yeah the smiley faces start tunnelling, I presume it is because there are too many collisions happening, I am not sure.

Also sometimes parts of the terrain disapear, I think this may be the physics engine cleaning things up it thinks are un-needed.
by conman420
Wed Sep 03, 2008 5:56 pm
Forum: Games and Creations
Topic: A simple side scrolling shooter game.
Replies: 4
Views: 10229

A simple side scrolling shooter game.

Hi this is my second game I've made with love, you basically have to shoot wave after wave of smilies. It is mainly a test game but I plan to add more things like health packs and new enemy classes. There a few bugs, which are probably to do with me overloading the physics engine :lol: but I'm tryin...
by conman420
Wed Sep 03, 2008 4:30 pm
Forum: Support and Development
Topic: A more object-oriented approach?
Replies: 16
Views: 9140

Re: A more object-oriented approach?

rude wrote:Then here's a tip for you:

Code: Select all

graphics = love.graphics
graphics.draw( ... )
^^
touché good sir.
by conman420
Tue Sep 02, 2008 11:04 pm
Forum: Support and Development
Topic: A more object-oriented approach?
Replies: 16
Views: 9140

Re: A more object-oriented approach?

I would prefer it if we didn't have to have love in front of every function ;)

It just seems a bi long winded to have to do love.graphics.draw when graphics.draw would be a lot quicker.

But I'm just being picky :v