Search found 5 matches

by VinnieH01
Sat Mar 14, 2015 10:12 pm
Forum: General
Topic: Create one large image out of many small ones?
Replies: 6
Views: 2664

Re: Create one large image out of many small ones?

You can use [wiki]ImageData:paste[/wiki], if you're in ImageData land. You could draw them to a [wiki]Canvas[/wiki], if you want the more efficient route. If you've got a spritesheet and want to recombine them into a drawable, you could also look at [wiki]SpriteBatch[/wiki]. If you just have a lot ...
by VinnieH01
Sat Mar 14, 2015 10:08 pm
Forum: General
Topic: Fullscreen window appears in a weird way.
Replies: 5
Views: 1745

Fullscreen window appears in a weird way.

Instead of the window just appearing like window mode, The fullscreen windows blends to the screen in a weird way. How can I change this?
by VinnieH01
Sat Mar 14, 2015 6:52 pm
Forum: General
Topic: Create one large image out of many small ones?
Replies: 6
Views: 2664

Create one large image out of many small ones?

Is it posible to create a drawable object out of some other drawable objects? And How would I do it?
by VinnieH01
Wed Feb 04, 2015 2:44 pm
Forum: General
Topic: Choppy player movement
Replies: 7
Views: 6656

Re: Choppy player movement

Thanks for all the replies.. I acully think this is a bug in löve with integrated graphics cards, I've sent my game to several computers and it choppy on everyone and then a look a bit closer and everyone of them had integrated graphics cards :? Do you think this is the issue and if so do you think ...
by VinnieH01
Tue Feb 03, 2015 4:04 pm
Forum: General
Topic: Choppy player movement
Replies: 7
Views: 6656

Choppy player movement

Hi, Ive got a playerX, playerY, playerSpeed variable. When I draw the player I put the playerX and playerY variable as the coordinates then I add speed to them in the update function like this playerX = playerX + playerSpeed * dt The problem is that when you move the movement isn't really smooth esp...