Tell me more ×
Ask Ubuntu is a question and answer site for Ubuntu users and developers. It's 100% free, no registration required.

I sudo apt-getted (grammar ftw) LOVE2D Lua API, and when I try to run a game on my machine, it doesn't work at all. When I use a simple love.graphics.print("Hello, World!") I get a blank screen, and I try re-creating the font and this still does nothing. HOWEVER, LOVE2D still works for me on my other computer with MS-Windows 7. The Terminal output doesn't help at all, everything is showing up fine. AND, when I use a conf.lua file to manually set the title to something, it doesn't work. Would that be because of dependency errors? Or am I maybe missing a driver?

share|improve this question

2 Answers

up vote 2 down vote accepted

I just came across this googling, so I might be a bit late to the party, but it says you're using 10.04, which means that the ubuntu repositories ship a very outdated version of love.

My ppa (the official one) ppa:bartbes/love-stable provides up to 0.7.1, which, too is outdated. I have, however, heard that the dependency that was once lacking, might be available in 10.04 now, using the backports, so it might be worth grabbing a newer deb and seeing whether that works.

share|improve this answer
Thanks for your answer (I'm a little later than you :D). As of now, the guys at love.org provide a .DEB package for download, and the newest version is now in the main repositories. – user1610406 Jan 25 at 0:23

That's right, you would also have to put the coordinates, something like:

love.graphics.print("dsfdsfds",100,100)
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.