Search found 60 matches

by vladgalay
Sun Jul 29, 2012 7:44 am
Forum: Games and Creations
Topic: [Development Alpha 1.22] Flyer Alpha 1.20
Replies: 22
Views: 15367

Re: [Game] Flyer Alpha 1.00

Now i'm trying to do simple AI. For now, there is one rotating bot - DKR-55, with two laser cannons and good shields. And when you are in front of that bot, he stops rotating =)

Image
by vladgalay
Sun Jul 29, 2012 6:28 am
Forum: Games and Creations
Topic: Scroller
Replies: 12
Views: 6118

Re: Scroller

The scrolling looks sorta bad right now, any advice on how to make it better? Why do you think it looks bad? I think it's quite good =) The game itself is interesting, just make more levels and some sort of power-up's or death traps, and game would be totally awesome. Also: background music is a bi...
by vladgalay
Sat Jul 28, 2012 10:37 pm
Forum: Games and Creations
Topic: [Development Alpha 1.22] Flyer Alpha 1.20
Replies: 22
Views: 15367

Re: [Game] Flyer Alpha 1.00

Topic updated with new version of the game, and some artworks even =)
by vladgalay
Mon Feb 27, 2012 5:58 pm
Forum: Games and Creations
Topic: [Development Alpha 1.22] Flyer Alpha 1.20
Replies: 22
Views: 15367

Re: [Game] Flyer Alpha 1.00

When I press shoot, only one ship shoots, and it's not mine =( That's strange. What version of LOVE 2D do you have? If you were trying to obfuscate your code, I can remove the attached love file. I packed the game into one executable file because i wanted to make the process of launching LOVE game ...
by vladgalay
Mon Feb 27, 2012 5:23 pm
Forum: Games and Creations
Topic: [Development Alpha 1.22] Flyer Alpha 1.20
Replies: 22
Views: 15367

Re: [Game] Flyer Alpha 1.00

I don't like Esc for fullscreen, as I usually use it to exit programs or menus. So, in next version, F button will be for fullscreen mode =) but I found a bit confusing that when I press shoot, all the ships shoot. I have done that because now ships(they are bots =)) haven't got AI =) Anyway, nice ...
by vladgalay
Mon Feb 27, 2012 4:33 pm
Forum: Games and Creations
Topic: [Development Alpha 1.22] Flyer Alpha 1.20
Replies: 22
Views: 15367

[Development Alpha 1.22] Flyer Alpha 1.20

http://img-fotki.yandex.ru/get/6402/19531213.6/0_6d86d_614631d7_M Version: Alpha 1.20 That's me again, with my top-down space shooter. Eventually, first level is not in open space, but in training center on Mars. Don't worry, there will be open space levels =) Features: No bots AI! No normal levels...
by vladgalay
Sun Jan 29, 2012 7:21 pm
Forum: Support and Development
Topic: [Problem] How to set an image alpha parameter?
Replies: 7
Views: 4406

Re: [Problem] How to set an image alpha parameter?

tentus wrote:For that we get into Quads. You create a quad using love.graphics.newQuad, and then draw it using love.graphics.drawq. A quick note, the top left of an image starts at 0,0, unlike a lot of Lua (most things in Lua and Love start at 1).

Edit: ninja'd. :(
Thanks again!
by vladgalay
Sun Jan 29, 2012 7:09 pm
Forum: Support and Development
Topic: [Problem] How to set an image alpha parameter?
Replies: 7
Views: 4406

Re: [Problem] How to set an image alpha parameter?

Again, my question. Here is an image:

Image

How can i draw a part of that image from 0,0 to 128,128?
by vladgalay
Sun Jan 29, 2012 5:20 pm
Forum: Support and Development
Topic: [Problem] How to set an image alpha parameter?
Replies: 7
Views: 4406

Re: [Problem] How to set an image alpha parameter?

Before using love.graphics.draw , use love.graphics.setColor with all four parameters.The fourth one is alpha, so to make the image transparent, make it 0. For fully visible, use 255. Everything in between is semi-transparent. Be sure to use setColor again after the image to reset to full opacity! ...
by vladgalay
Sun Jan 29, 2012 5:03 pm
Forum: Support and Development
Topic: [Problem] How to set an image alpha parameter?
Replies: 7
Views: 4406

[Problem] How to set an image alpha parameter?

Sorry for my bad English, i am Russian =)

How can i set an PNG image alpha parameter to make it disappear/appear on the screen?