echo icon indicating copy to clipboard operation
echo copied to clipboard

Simple Physics Library written in Haxe

Results 9 echo issues
Sort by recently updated
recently updated
newest added

There is a bug linecasting. I added a new body at runtime, and if the world instance was passed into linecast, it would always set new bodies to 0, 0...

bug

Could there possibly be an implementation of an anchor property for bodies? Integrating the library in Top/Left anchored engines is a bit of a hassle and needs a lot of...

enhancement

Is there a sync function to check the colission between 2 bodies?

https://github.com/AustinEast/echo/blob/794b0ee616489294ad463023fcd828264460397c/echo/Line.hx#L88 Need to test and document this!

need to set up some logic/test to ensure memory is managed for the world state history. adding `IPool` integration into `History` a possible solution

enhancement

There should be Unit tests to help prevent regressions as progress on the library continue.

So I want to add a `isOnFloor` data to the body using your example ``` hxml --macro echo.Macros.add_data("isOnFloor", "Bool") ``` But when I try to access it just spits an...

enhancement

~~This PR has a good bit of cruft in it still. I just wanted to put up the code along with the extra test states that I used to debug...

Hi, I've noticed that the `contacts` variable from `CollisionData` is not really being used. So, is there any other way currently to obtain the contact point(s) from the collision of...