Search found 1558 matches

by Roland_Yonaba
Tue Jun 28, 2011 1:26 pm
Forum: General
Topic: Share your Utils
Replies: 29
Views: 8971

Re: Share your Utils

Hmm...I see.. Something like... local im = love.graphics.newImage(filename) im:setFilter("nearest","nearest") function love.draw() love.graphics.draw (im,x,y,r,newX/im:getWidth(),newY/im:getHeight(),ox,oy) end I didn't know it could work that way. Thanks so much for the tip, it w...
by Roland_Yonaba
Tue Jun 28, 2011 12:19 pm
Forum: General
Topic: Share your Utils
Replies: 29
Views: 8971

Re: Share your Utils

A simple function for Image naive-resizing... Have Just written on-the-job for my project... function resizeImage(filename,newX,newY) local out = love.image.newImageData(newX,newY) local source = love.image.newImageData(filename) local w, h = source:getWidth(), source:getHeight() for x = 1,newX-1 do...
by Roland_Yonaba
Mon Jun 27, 2011 1:13 pm
Forum: General
Topic: What's everyone working on? (tigsource inspired)
Replies: 1791
Views: 1488409

Re: What's everyone working on? (tigsource inspired)

Hmm, not really. I don't think so... I have another title in mind... This is a kind of homage to Uplink Hacker Elite PC Game (By Chris Delay). Most of the gameplay will intend to reproduce part of Uplink's gameplay (not really a clone, making a clone will be a lot harder to me...) Working on this fo...
by Roland_Yonaba
Mon Jun 27, 2011 12:32 pm
Forum: General
Topic: What's everyone working on? (tigsource inspired)
Replies: 1791
Views: 1488409

Re: What's everyone working on? (tigsource inspired)

Working on a Hacker Simulator Game ...
I've just started, so ther's not so much things to show...I'm new to Love2d, and i'm going a bit slow, but i'm progressing...

Image

Image

Image
by Roland_Yonaba
Thu Jun 23, 2011 8:15 am
Forum: General
Topic: Free game resources
Replies: 168
Views: 642268

Re: Free game resources

My favourite one... The Spriter's resource
by Roland_Yonaba
Wed Jun 22, 2011 4:10 pm
Forum: General
Topic: I'm In Love With Löve...
Replies: 0
Views: 2146

I'm In Love With Löve...

Hey all, As I said in a previous topic, i'm new to this forum, and I've just discovered Löve2D framework. I've been using Lua for long, and I can say I get the basics for coding purposes. I've downloaded Löve yesterday evening, and started using this afternoon...And it is really...amazing. I've been...
by Roland_Yonaba
Wed Jun 22, 2011 11:36 am
Forum: General
Topic: Offline Documentation
Replies: 12
Views: 19599

Re: Offline Documentation

:o It was right in front of my eyes... :shock:
But, Thanks soooo much!
by Roland_Yonaba
Wed Jun 22, 2011 10:59 am
Forum: General
Topic: Offline Documentation
Replies: 12
Views: 19599

Offline Documentation

Hi All, I've been using Lua for long, and i did many homebrews for sony PSP using specific API (LuaPLayerHm, PGELua) etc. Now I'm working on a project for Windows, using Lua, and I think Löve is the best to do that. I have downloaded the latest version (0.7.2), it works fine for me, and I've already...