Search found 6 matches

by dudeMan
Sun Jul 22, 2018 5:33 pm
Forum: Support and Development
Topic: love.graphics.print not printing to screen!
Replies: 14
Views: 20688

Re: love.graphics.print not printing to screen!

decided to post my fix I used pre my new graphics card. Its not perfect and the sprite sheet could be better but it works. https://github.com/PhilMo6/love2dPrintWorkaround This uses anim8 to split an alphanumeric sprite sheet into quads and creates a print function that then draws the correct quads ...
by dudeMan
Sat Jun 23, 2018 4:53 pm
Forum: Support and Development
Topic: love.graphics.print not printing to screen!
Replies: 14
Views: 20688

Re: love.graphics.print not printing to screen!

Ok so just a quick update! My graphics card died, it was an older amd radeon card. Luckly I had a less beefy but newer nvidia card to replace it so had no downtime. I also noticed as soon as I got an error the next time messing with my game, that the text actully showed up on screen! So its definite...
by dudeMan
Mon Jun 04, 2018 11:45 pm
Forum: Support and Development
Topic: love.graphics.print not printing to screen!
Replies: 14
Views: 20688

Re: love.graphics.print not printing to screen!

yeah... that seems to be my exact issue. I went ahead and loaded love onto my laptop and ran it and it printed just fine! Seems to be a system specific issue. Any thoughts on what if anything i can do to help find the issue?
by dudeMan
Mon Jun 04, 2018 4:12 pm
Forum: Support and Development
Topic: love.graphics.print not printing to screen!
Replies: 14
Views: 20688

Re: love.graphics.print not printing to screen!

All I get with this code is a blank window
by dudeMan
Mon Jun 04, 2018 3:12 pm
Forum: Support and Development
Topic: love.graphics.print not printing to screen!
Replies: 14
Views: 20688

Re: love.graphics.print not printing to screen!

function love.load() local font = love.graphics.newFont() love.graphics.setFont( font ,144) text = love.graphics.newText( font, 'textstring' ) end function love.update(dt) end function love.draw() love.graphics.setBackgroundColor( 1, 1, 1) love.graphics.setColor(0, 0, 0) love.graphics.draw(text, 25,...
by dudeMan
Mon Jun 04, 2018 7:20 am
Forum: Support and Development
Topic: love.graphics.print not printing to screen!
Replies: 14
Views: 20688

love.graphics.print not printing to screen!

Well iv looked and looked and i'm hoping someone can help... Iv been loving playing around with love for the last couple of weeks, made the bones of a top down shooter that's working surprisingly well! A lot of that is due to this forum and all the great posts and wiki. So onto my issue. everything ...