Search found 26 matches
- Tue Dec 29, 2015 3:41 am
- Forum: LÖVE-Android
- Topic: Admob Banner and Interstitial Support
- Replies: 16
- Views: 123818
Re: Admob Banner Support
i have been waiting this for long time, thanks!
- Thu Sep 17, 2015 10:11 pm
- Forum: Support and Development
- Topic: .exe game don't found the .ttf
- Replies: 5
- Views: 4352
Re: .exe game don't found the .ttf
OH, sorry hahahahaha, thanks!Nixola wrote:The file is called font.TTF. You're loading font.ttf. As Davisdude said, it's a capitalization issue.
- Thu Sep 17, 2015 9:56 pm
- Forum: Support and Development
- Topic: .exe game don't found the .ttf
- Replies: 5
- Views: 4352
Re: .exe game don't found the .ttf
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 workdavisdude wrote:Can't tell without the .love, but it's probably a capitalization error...
- Thu Sep 17, 2015 9:49 pm
- Forum: Support and Development
- Topic: .exe game don't found the .ttf
- Replies: 5
- Views: 4352
Re: .exe game don't found the .ttf
i only imported and setted the font on the code, but, okdavisdude wrote:Can't tell without the .love, but it's probably a capitalization error...
- Thu Sep 17, 2015 9:26 pm
- Forum: Support and Development
- Topic: .exe game don't found the .ttf
- Replies: 5
- Views: 4352
.exe game don't found the .ttf
i dont know why.
- Thu Sep 17, 2015 9:23 pm
- Forum: Support and Development
- Topic: about the offline documentation
- Replies: 7
- Views: 4950
Re: about the offline documentation
ChromeRobin wrote:Looks OK to me. What browser do you use?
- Wed Sep 16, 2015 4:42 pm
- Forum: Support and Development
- Topic: .exe distribution don't works
- Replies: 7
- Views: 4766
Re: .exe distribution don't works
and how i can fix that, because my .exe dont detect the game inside the .exeradgeRayden wrote:You're actually supposed to include the dlls in your distribution package, since love is dynamically linked with them.
- Wed Sep 16, 2015 5:09 am
- Forum: Support and Development
- Topic: .exe distribution don't works
- Replies: 7
- Views: 4766
.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.
- Tue Sep 15, 2015 9:25 pm
- Forum: Support and Development
- Topic: how i can do this with setColor()
- Replies: 3
- Views: 2969
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...
- Tue Sep 15, 2015 9:06 pm
- Forum: Support and Development
- Topic: how i can do this with setColor()
- Replies: 3
- Views: 2969
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...