Search found 202 matches
- Tue Mar 07, 2017 12:14 am
- Forum: Libraries and Tools
- Topic: newton [PhysicsEditor exporter + loader]
- Replies: 1
- Views: 4122
- Thu Jan 12, 2017 10:21 pm
- Forum: Support and Development
- Topic: Update physics World in another Thread
- Replies: 11
- Views: 11545
Re: Update physics World in another Thread
I found the main critical problem.
Functions in http://www.love2d.org/wiki/World:setCallbacks works only in one thread and they cant pass to another.
Same for http://www.love2d.org/wiki/Fixture:setUserData and http://www.love2d.org/wiki/Body:setUserData if userData is table or function (pointer).
Functions in http://www.love2d.org/wiki/World:setCallbacks works only in one thread and they cant pass to another.
Same for http://www.love2d.org/wiki/Fixture:setUserData and http://www.love2d.org/wiki/Body:setUserData if userData is table or function (pointer).
- Wed Sep 14, 2016 8:22 pm
- Forum: Libraries and Tools
- Topic: 2D Navmesh
- Replies: 8
- Views: 10451
Re: 2D Navmesh
I found interesting code, wich help me build navmesh, thanks to Alexar:
https://github.com/AlexarJING/box2dhelp ... 187e299726
https://github.com/AlexarJING/box2dhelp ... 187e299726
- Wed Sep 14, 2016 1:29 pm
- Forum: Libraries and Tools
- Topic: Alexar's Physics Editor(APE)
- Replies: 59
- Views: 66269
Re: [lib] Box2D Helper
WOW OoOAlexar wrote:new update: destructible terrain.
I will try use this in my 2d navmesh: viewtopic.php?f=5&t=81229#p203666
- Tue Sep 13, 2016 8:01 am
- Forum: Libraries and Tools
- Topic: Alexar's Physics Editor(APE)
- Replies: 59
- Views: 66269
Re: [lib] Box2D Helper
Alexar, keep doing, don't stop, cool
- Mon Sep 12, 2016 4:36 pm
- Forum: Libraries and Tools
- Topic: sandsmas - A LÖVE Editor
- Replies: 20
- Views: 42861
Re: sandsmas - A LÖVE Editor
EntranceJew, keep going please, don't stop, awesome !!!
- Wed Sep 07, 2016 7:58 pm
- Forum: General
- Topic: hotline miami?
- Replies: 15
- Views: 11412
Re: hotline miami?
Yes it is possible, but hard.
I make top down shooter like Hotline:
I make top down shooter like Hotline:
- Wed Sep 07, 2016 7:45 pm
- Forum: General
- Topic: Curve editor (Third-party software, not LOVE)
- Replies: 2
- Views: 4246
Re: Curve editor (Third-party software, not LOVE)
[update] Exported file format
- Sun Sep 04, 2016 2:06 pm
- Forum: Support and Development
- Topic: Update physics World in another Thread
- Replies: 11
- Views: 11545
Re: Update physics World in another Thread
Found multithreading C++ Box2d library: https://github.com/skitzoid/Box2D-MT
- Tue Aug 30, 2016 9:48 am
- Forum: Support and Development
- Topic: Update physics World in another Thread
- Replies: 11
- Views: 11545
Re: Update physics World in another Thread
The problem is that checking "isLocked" is not enough, as right after you "ask" whether it is locked, the other thread may also check and then both are still attempting to do stuff at the same time. You will need to use Channel:supply/demand to actually lock threads while workin...