Search found 94 matches

by Green_Hell
Sat Aug 30, 2008 6:03 pm
Forum: General
Topic: Hot Debian LÖVE
Replies: 14
Views: 6203

Re: Hot Debian LÖVE

Miriam released official debian packages. :D

:!: :!: :!: CELEBRATE :!: :!: :!:

However, it might take some time before they'll be available in repositories.
Until then she provides them for us here http://users.alioth.debian.org/~miriam/love/
by Green_Hell
Sat Aug 30, 2008 3:16 pm
Forum: Support and Development
Topic: Bases of Elements
Replies: 16
Views: 7434

Re: Bases of Elements

This may be a stupid question, but why do you need this? As usual. I'm trying to do something what LÖVE isn't designed for. :roll: The problem is that I can't do it in a different language or a tool-kit. I'll probably write a specification and post it here on the forum hoping that somebody else wil...
by Green_Hell
Fri Aug 29, 2008 10:00 pm
Forum: Support and Development
Topic: Bases of Elements
Replies: 16
Views: 7434

Re: Bases of Elements

textometry.png I need to be able to draw text somewhere and know where are the last pixels of the drawn line on all 4 sides. Sizes I need and I think I have them are in Fuchsia. Not sure about Height. Size, which I need, to be able to set base wherever I want is Lime Green. c1, c2, c3, c4 are corne...
by Green_Hell
Fri Aug 29, 2008 6:22 pm
Forum: Support and Development
Topic: Bases of Elements
Replies: 16
Views: 7434

Re: Bases of Elements

I hope you are aware of drawf: love.graphics.drawf( string, x, y, limit, align ) Isn't solution. Still draws somewhere. I can't explain what I need. :( So, here is the official question: shall X,Y point to the bottom left corner of the text or the top left or perhaps the center by default? Don't kn...
by Green_Hell
Fri Aug 29, 2008 3:41 pm
Forum: General
Topic: LÖVE 0.4.0
Replies: 14
Views: 10008

Re: LÖVE 0.4.0

Well Done :!:

I didn't expect it, but I'm glad you kept backwards compatibility. :)

GDOL: Advice. Link to demo directory and logos directory from the main site.
by Green_Hell
Wed Aug 27, 2008 11:45 pm
Forum: Support and Development
Topic: Bases of Elements
Replies: 16
Views: 7434

Re: Bases of Elements

mike wrote:This redoing is coming in a few years, so be patient.
I don't expect anything else. I just want to know how I can count x0 y0 from it. :(

Code: Select all

If not (you know how) then
  post(".")
end
:)
by Green_Hell
Wed Aug 27, 2008 11:38 pm
Forum: Support and Development
Topic: Request: Love Logos.
Replies: 27
Views: 9303

Re: Request: Love Logos.

qubodup wrote:Don't lower yourself to *that* ;)
I do not. I have SVG import to GIMP so I can JPG it for myself but, we should think of other peoples needs.
by Green_Hell
Wed Aug 27, 2008 8:55 pm
Forum: Support and Development
Topic: Bases of Elements
Replies: 16
Views: 7434

Bases of Elements

Where are bases of elements? I mean where are x0 and y0? Image and Animation have base in the center and method setCenter() Where is in text? base.png I need to be able to do three things: 1. Count width of whole text line ( works Font:getWidth( line ) ) 2. Count height of whole text line ( Font:get...
by Green_Hell
Wed Aug 27, 2008 8:16 pm
Forum: Support and Development
Topic: How to change font size dynamically?
Replies: 3
Views: 6846

Re: How to change font size dynamically?

that will return true 60 times a second, and overflow your stack (apparently) That's why I use love.timer.sleep(50) Problem is that I need to increase font size by holding the key and also be able to increase precisely by one click. The program above is debug program not my real program. :( Anyway....
by Green_Hell
Wed Aug 27, 2008 1:43 pm
Forum: Support and Development
Topic: How to change font size dynamically?
Replies: 3
Views: 6846

How to change font size dynamically?

I tried this but only result is memory leak(not a right expression). -- change font size dynamically, debug program function load() -- load font for the first time my_font_size = 12 my_font = love.graphics.newFont("DejaVuSans.ttf", my_font_size) end function update(dt) if love.keyboard.isD...