Search found 32 matches

by Snake174rus
Fri Nov 14, 2014 5:00 pm
Forum: Support and Development
Topic: Love2D Windows, Android, Flash (test) exporter
Replies: 25
Views: 20090

Re: Love2D Windows, Android, Flash (test) exporter

It's will be posted later.
Just unpack this archive in folder with program.

It's one bug founded. Need set version "0.9.1" (without quotes) in Settings->Game tab in Version field.
by Snake174rus
Fri Nov 14, 2014 3:17 am
Forum: Support and Development
Topic: Love2D Windows, Android, Flash (test) exporter
Replies: 25
Views: 20090

Re: Love2D Windows, Android, Flash (test) exporter

Version 0.2 crashes on startup. I'm sorry. I forget put some plugins needed for Qt5. It's will be posted later. The first time I work with Qt5 and I don't know all of the details of this version. Usually compile programs on VirtualBox which is a 32 bit windows and Qt4. This time I had to build on a...
by Snake174rus
Thu Nov 13, 2014 6:47 pm
Forum: Support and Development
Topic: Love2D Windows, Android, Flash (test) exporter
Replies: 25
Views: 20090

Re: Love2D Windows, Android, Flash (test) exporter

Version 0.2 (15.1 Mb without data folder)

Added settings for file conf.lua (create if not exist)

Image
by Snake174rus
Wed Nov 12, 2014 2:43 pm
Forum: Support and Development
Topic: Trouble understanding classes
Replies: 15
Views: 10063

Re: Trouble understanding classes

I'm use HUMP classes
May see here
here
or here
And more and more ...
by Snake174rus
Tue Nov 11, 2014 5:24 am
Forum: Support and Development
Topic: Love2D Windows, Android, Flash (test) exporter
Replies: 25
Views: 20090

Re: Love2D Windows, Android, Flash (test) exporter

Program delete apk file because can't find zipalign tool. After (and before too) signing and aligning, I receive a blackscreen and game has crashes to android menu. Can you run apk in emulator and type here logcat? May be you are using in the project some specific library like a Loveframes? And if y...
by Snake174rus
Mon Nov 10, 2014 8:00 am
Forum: Support and Development
Topic: Love2D Windows, Android, Flash (test) exporter
Replies: 25
Views: 20090

Re: Love2D Windows, Android, Flash (test) exporter

Program without delete, sign and align android files. Can you insert log message here?
by Snake174rus
Thu Nov 06, 2014 3:08 am
Forum: Support and Development
Topic: Smoothly rotate to face the cursor
Replies: 15
Views: 13823

Re: Smoothly rotate to face the cursor

Insert this code in update function: local mousePos = vector( love.mouse.getX(), love.mouse.getY() ) local dir = self.pos - mousePos local targetAngle = -math.atan2( dir.x, dir.y ) / (math.pi / 180) local curAngle = self.top_angle if curAngle < 0 then curAngle = curAngle + 360 end if targetAngle < 0...
by Snake174rus
Fri Oct 31, 2014 9:45 am
Forum: Support and Development
Topic: Love2D Windows, Android, Flash (test) exporter
Replies: 25
Views: 20090

Re: Love2D Windows, Android, Flash (test) exporter

SiENcE wrote:Could you make a github repository where people can access the project code?
Лови: Sources
by Snake174rus
Thu Oct 30, 2014 4:54 am
Forum: Support and Development
Topic: Love2D Windows, Android, Flash (test) exporter
Replies: 25
Views: 20090

Re: Love2D Windows, Android, Flash (test) exporter

Hi All! I make new version of this programm. Changes add Android 2.3.3 add Linux remove Flash interface now not freeze when export running For export to Android need installed Android SDK and API (10, 12 and 15) and Android 4.4.2 API 19. For correct work paths should not contains spaces. For export ...
by Snake174rus
Fri Aug 29, 2014 2:06 am
Forum: Support and Development
Topic: Love2D Windows, Android, Flash (test) exporter
Replies: 25
Views: 20090

Re: Love2D Windows, Android, Flash (test) exporter

It's nice to see new programs, but we have the existing superior distribution creator already: https://github.com/MisterDA/love-release or see more here: http://www.ambience.sk/lua-love2d-game-distribution/ Thanks for links. Looks nice. Since you're using Qt to develop this, can you make the Linux ...