Search found 17 matches

by reno57
Sat Feb 24, 2018 8:28 pm
Forum: General
Topic: Collision detection using Mask
Replies: 2
Views: 2520

Re: Collision detection using Mask

Thanks pigmeno. I will look at your code.
by reno57
Sat Feb 24, 2018 4:39 pm
Forum: General
Topic: Collision detection using Mask
Replies: 2
Views: 2520

Collision detection using Mask

Hi all, I'm trying to know if there is a possible way to do a collision detection using bitmap masks to achieve a pixel perfect collision system without to much calculations. According to what i've seen in the forum, it seems that love2D can't manage bitmap mask. If it's true, do you know another wa...
by reno57
Wed May 10, 2017 6:17 am
Forum: Support and Development
Topic: Perfectly smooth scrolling
Replies: 5
Views: 5481

Re: Perfectly smooth scrolling

thanks for your advice, i will have a try
by reno57
Sun May 07, 2017 3:43 pm
Forum: Support and Development
Topic: Perfectly smooth scrolling
Replies: 5
Views: 5481

Perfectly smooth scrolling

Hello, I'm creating a 2d game with an multi-directionnal scrolling. I implement it using a quite common feature called a camera that can translate the background when the player moves. This kind of camera system is decribed in many tutorials in the forum My issue, is that i dream of a perfectly smoo...
by reno57
Mon Jan 30, 2017 8:22 pm
Forum: General
Topic: Looking for fast and simple OOP library
Replies: 4
Views: 5120

Re: Looking for fast and simple OOP library

Thanks Positive07, to share your experience about OOP library.
by reno57
Sun Jan 22, 2017 10:58 pm
Forum: General
Topic: Looking for fast and simple OOP library
Replies: 4
Views: 5120

Looking for fast and simple OOP library

Hello, For my project i use an OOP library : GitHub - rxi/classic: Tiny class module for Lua. I realized that there is others libraries like : GitHub - kikito/middleclass : A simple OOP library for Lua. As i'm looking for a fast and easy to use OOP library, do you think my choice is right ? or, may ...
by reno57
Fri Jan 06, 2017 10:50 pm
Forum: General
Topic: Post-0.10.0 feature wishlist
Replies: 177
Views: 91496

Re: Post-0.10.0 feature wishlist

First, i would like to say that love2D is very well designed, it is well balanced between easy access and power of game creation.
I don't use it since a long time, but the thing i miss the most is a basic GUI support to design my own game editor and tool.
by reno57
Fri Dec 23, 2016 9:07 pm
Forum: General
Topic: Problem with saving files to disk
Replies: 8
Views: 5203

Re: Problem with saving files to disk

And the winner is SLIME !
Thanks you for the this useful peace of information, indeed i see the file in the directory you mentioned.
Thanks a lot :) subject is closed.
by reno57
Fri Dec 23, 2016 4:52 pm
Forum: General
Topic: Problem with saving files to disk
Replies: 8
Views: 5203

Re: Problem with saving files to disk

I see..., in the wiki they speak about this location :
Mac: /Users/user/Library/Application Support/LOVE
But i didn't find it.
Moreover, i also try to find the file with the file search engine i can't find it also.
I think the file is even not created but i don't know why.
by reno57
Fri Dec 23, 2016 4:29 pm
Forum: General
Topic: Problem with saving files to disk
Replies: 8
Views: 5203

Problem with saving files to disk

Hi all, I'm presently working on filesystem, and i have some problems to save data on the disk using the love.filesystem i made a basic exemple : function save() local f = love.filesystem.newFile("test.txt") f:open("w") f:write("test") f:close() end When i run the funct...