Search found 17 matches
- Sat Feb 24, 2018 8:28 pm
- Forum: General
- Topic: Collision detection using Mask
- Replies: 2
- Views: 2692
Re: Collision detection using Mask
Thanks pigmeno. I will look at your code.
- Sat Feb 24, 2018 4:39 pm
- Forum: General
- Topic: Collision detection using Mask
- Replies: 2
- Views: 2692
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...
- Wed May 10, 2017 6:17 am
- Forum: Support and Development
- Topic: Perfectly smooth scrolling
- Replies: 5
- Views: 5704
Re: Perfectly smooth scrolling
thanks for your advice, i will have a try
- Sun May 07, 2017 3:43 pm
- Forum: Support and Development
- Topic: Perfectly smooth scrolling
- Replies: 5
- Views: 5704
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...
- Mon Jan 30, 2017 8:22 pm
- Forum: General
- Topic: Looking for fast and simple OOP library
- Replies: 4
- Views: 5434
Re: Looking for fast and simple OOP library
Thanks Positive07, to share your experience about OOP library.
- Sun Jan 22, 2017 10:58 pm
- Forum: General
- Topic: Looking for fast and simple OOP library
- Replies: 4
- Views: 5434
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 ...
- Fri Jan 06, 2017 10:50 pm
- Forum: General
- Topic: Post-0.10.0 feature wishlist
- Replies: 177
- Views: 101849
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.
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.
- Fri Dec 23, 2016 9:07 pm
- Forum: General
- Topic: Problem with saving files to disk
- Replies: 8
- Views: 5448
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.
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.
- Fri Dec 23, 2016 4:52 pm
- Forum: General
- Topic: Problem with saving files to disk
- Replies: 8
- Views: 5448
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.
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.
- Fri Dec 23, 2016 4:29 pm
- Forum: General
- Topic: Problem with saving files to disk
- Replies: 8
- Views: 5448
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...