Search found 22 matches

by roggie
Sun Jul 26, 2015 3:21 pm
Forum: LÖVE-Android
Topic: Ant-Debug Build keeps failing
Replies: 1
Views: 4866

Ant-Debug Build keeps failing

I've been following the installation tutorial for linux . The tutorial seems to be for Archlinux only znd I have ubuntu so I just installed the same thing but using the ubuntu apt-get install and everything has worked. I got the Android SDK, Android NDK, Apache-ant and I have Java. But when I run an...
by roggie
Thu Jun 18, 2015 5:11 pm
Forum: General
Topic: Cloud Wrrior, Hostile Takeover & Shapes of Doom 3
Replies: 8
Views: 3775

Cloud Wrrior, Hostile Takeover & Shapes of Doom 3

So, I have now go 3 projects that I am working on. The first one, CloudWarrior, is coming out either next week or the week after. It will be released on Itch.io so keep an eye out for that. My 2nd game, Hostile Takeover, is a game that shows us the line between good & evil. It iis a platformer g...
by roggie
Mon Mar 30, 2015 7:26 pm
Forum: General
Topic: My Blog
Replies: 5
Views: 3351

Re: My Blog

The website renders a bit strangely on Windows Phone, like this: http://1drv.ms/1BAWbRi I thought I should mention it since you probably don't have a Windows Phone to test it on. That happens on my 4" Samsung Galaxy S3 mini but on a nexus 6 it scales perfectly. I think it is to do with screen ...
by roggie
Sat Mar 28, 2015 1:55 pm
Forum: General
Topic: Add file not working?
Replies: 2
Views: 1577

Add file not working?

So, I've been trying to upload my game to the love2d Projects and demos forum but it takes a long time for the page to load when I click "Add File" and when it does it says "Server not responding". I've uploaded the games to itch.io but I'd rather upload them on the forum instead...
by roggie
Sat Mar 28, 2015 1:43 pm
Forum: General
Topic: My Blog
Replies: 5
Views: 3351

Re: My Blog

WatsUp Studios wrote:Is it spelt urnet or ur-net?
It's spelled Ur-Net. It's kind of 2 words stuck together but it didn't look right so I stuck a "-" in between the 2 words.
by roggie
Fri Mar 27, 2015 10:54 pm
Forum: General
Topic: My Blog
Replies: 5
Views: 3351

My Blog

So for a while I've been working on a social blogging site. I've used it for a game development blog and I've coded it with all of the features that a good blog should have. There are a few features that I need to add to it but it's basically completed. If there are any features that you would like ...
by roggie
Tue Mar 17, 2015 2:16 pm
Forum: Games and Creations
Topic: Leprechaun VS Bears
Replies: 0
Views: 1500

Leprechaun VS Bears

So yesterday I got the idea of making a St. Patrick's day themed game. The game has a few bugs that I'm working on fixing but I need to release the game before St. Patrick's day is over. So here it is: Leprechaun VS Bears. A game where no leprechaun is safe from the evil bears. In order to live you ...
by roggie
Sun Mar 01, 2015 3:48 pm
Forum: General
Topic: Appreciation for Love2d forums
Replies: 6
Views: 4910

Appreciation for Love2d forums

Hi, in this post I would like to thank everyone in the love2d community. I also use stackoverflow and every one of my posts gets taken down after everyone on that forum gives me really offensive comments telling me that I can't code or that my question isn't constructive, I take time to make sure th...
by roggie
Sun Mar 01, 2015 3:38 pm
Forum: Support and Development
Topic: Set image width and height
Replies: 3
Views: 7300

Re: Set image width and height

Yes. function getImageScaleForNewDimensions( image, newWidth, newHeight ) local currentWidth, currentHeight = image:getDimensions() return ( newWidth / currentWidth ), ( newHeight / currentHeight ) end Then, you can do this: img = love.graphics.newImage( 'pic.png' ) -- 30 x 20 -- Say you want to ma...
by roggie
Sun Mar 01, 2015 3:09 pm
Forum: Support and Development
Topic: Set image width and height
Replies: 3
Views: 7300

Set image width and height

So, say I have an image that is 30 in width and 20 in height. Is it possible to give it a new width and height in love2d. So I could make it 100 in width and 10 in height?