Search found 26 matches

by vitail
Tue Dec 29, 2015 3:41 am
Forum: LÖVE-Android
Topic: Admob Banner and Interstitial Support
Replies: 16
Views: 88169

Re: Admob Banner Support

i have been waiting this for long time, thanks!
by vitail
Thu Sep 17, 2015 10:11 pm
Forum: Support and Development
Topic: .exe game don't found the .ttf
Replies: 5
Views: 3567

Re: .exe game don't found the .ttf

Nixola wrote:The file is called font.TTF. You're loading font.ttf. As Davisdude said, it's a capitalization issue.
OH, sorry hahahahaha, thanks!
by vitail
Thu Sep 17, 2015 9:56 pm
Forum: Support and Development
Topic: .exe game don't found the .ttf
Replies: 5
Views: 3567

Re: .exe game don't found the .ttf

davisdude wrote:Can't tell without the .love, but it's probably a capitalization error...
if i debug dragging my folder to a love launcher shortcut it works, but the game in a .love or a .exe extension don't work
by vitail
Thu Sep 17, 2015 9:49 pm
Forum: Support and Development
Topic: .exe game don't found the .ttf
Replies: 5
Views: 3567

Re: .exe game don't found the .ttf

davisdude wrote:Can't tell without the .love, but it's probably a capitalization error...
i only imported and setted the font on the code, but, ok
by vitail
Thu Sep 17, 2015 9:26 pm
Forum: Support and Development
Topic: .exe game don't found the .ttf
Replies: 5
Views: 3567

.exe game don't found the .ttf

i dont know why.

Image
by vitail
Thu Sep 17, 2015 9:23 pm
Forum: Support and Development
Topic: about the offline documentation
Replies: 7
Views: 4380

Re: about the offline documentation

Robin wrote:Looks OK to me. What browser do you use?
Chrome
by vitail
Wed Sep 16, 2015 4:42 pm
Forum: Support and Development
Topic: .exe distribution don't works
Replies: 7
Views: 4110

Re: .exe distribution don't works

radgeRayden wrote:You're actually supposed to include the dlls in your distribution package, since love is dynamically linked with them.
and how i can fix that, because my .exe dont detect the game inside the .exe
by vitail
Wed Sep 16, 2015 5:09 am
Forum: Support and Development
Topic: .exe distribution don't works
Replies: 7
Views: 4110

.exe distribution don't works

i maked a little game in love, the game in a .love launcher runs perfect, but, if i change it to .exe(i readed the documentation about it) with the cmd etc, etc, no detects a game, and i need to put all the .dll to run the .exe.

Image
by vitail
Tue Sep 15, 2015 9:25 pm
Forum: Support and Development
Topic: how i can do this with setColor()
Replies: 3
Views: 2463

Re: how i can do this with setColor()

Just set the color back to white. love.graphics.setColor(255, 255, 255, 255) nice, thanks and now why don't draw the love.graphics.print? love.graphics.draw(bg.img, 0, 0); love.graphics.setColor(0,0,0,255) love.graphics.setFont(mainFont) -- select the main font love.graphics.print("Score: &quo...
by vitail
Tue Sep 15, 2015 9:06 pm
Forum: Support and Development
Topic: how i can do this with setColor()
Replies: 3
Views: 2463

how i can do this with setColor()

i want to print a text with a black color but if i want to restore the colors for the sprites(to keep the original colors) how i can do this with love.graphics.setColor(r,g,b,a)??? function love.draw() love.graphics.setColor(0,0,0,100) love.graphics.setFont(mainFont) -- select the main font love.gra...