ChipmunkSharp icon indicating copy to clipboard operation
ChipmunkSharp copied to clipboard

Support for windows

Open blakat opened this issue 8 years ago • 3 comments

There doesn't seem to be a working method in this release to compile chipmunk 2d into windows .dll file's. Can this please be addressed? My project will be splintered if I can't get this engine compiled for Windows.

blakat avatar Jan 20 '17 20:01 blakat

The library was written using Visual Studio and windows.. it must be compiled without problem... I need more info or logs to figure out your problem.

netonjm avatar Apr 01 '17 11:04 netonjm

Requires Microsoft.Xna.Framework, which is not supported in Windows 10. Chipmunkv7Example.sln doesn't compile due to Error CS0115 'chainsLayer.OnEnter()': no suitable method found to override Chipmunkv7Example D:\GitExternal\ChipmunkSharp\examples\ChipmunkExample\Common\Layers\chainsLayer.cs 38

bsn-iam avatar Aug 11 '18 12:08 bsn-iam

The physics base library doesn't have any dependence. You only need to create your own provider for the rendering.

The code is very old... and was very prototyped and is not much friendly to include new providers (that's one of the things I am working on)

https://github.com/netonjm/ChipmunkSharp/issues/6

In the example project, I use for rendering CocosSharp/CocosXNA which uses XNA under the hood ( there is also included a tool to generate resources). The bad news: these frameworks are no longer maintained... and because of this, the examples will not work (but the physics library will do).

That's because I need to update the examples... and probably move the library to use NetStandard to make it compatible with NetCore too.

netonjm avatar Feb 26 '19 23:02 netonjm