Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/appsinacup/godot-box2d
Godot Box2D – C++ Godot Extension that integrates the Box2D physics engine.
https://github.com/appsinacup/godot-box2d
box2d box2d-physics-engine godot godot-4 godot-addon godot-plugin
Last synced: about 1 month ago
JSON representation
Godot Box2D – C++ Godot Extension that integrates the Box2D physics engine.
- Host: GitHub
- URL: https://github.com/appsinacup/godot-box2d
- Owner: appsinacup
- License: mit
- Archived: true
- Created: 2023-07-22T10:13:18.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-06-29T10:59:17.000Z (4 months ago)
- Last Synced: 2024-09-23T13:03:37.288Z (about 2 months ago)
- Topics: box2d, box2d-physics-engine, godot, godot-4, godot-addon, godot-plugin
- Language: C++
- Homepage:
- Size: 5.39 MB
- Stars: 325
- Watchers: 4
- Forks: 15
- Open Issues: 30
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- Contributing: CONTRIBUTING.md
- License: LICENSE.txt
Awesome Lists containing this project
- Awesome-Daily - Box2D Physics - in replacement for Godot Physics. (:building_construction: Software Development / Game Development)
- awesome-godot - godot-box2d - A [Box2D](https://github.com/erincatto/box2d) physics server for Godot (Godot 4.2). (Modules / 3D)
README
Godot Box2D - UNMAINTAINED
## NOTE
Currently focusing more on the [godot rapier physics](https://github.com/appsinacup/godot-rapier-physics) lib. And since this is pretty much identical in functionality with that one, but, at least at the time of writting, the rapier one has:
- Serialization thanks to rust language
- Cross platform determinism
- 2d and 3d
- API that is much closer to godot one than box2d one.
- Better safety (this one is copied after Godot Physics, and that one has a lot of raw pointers, as does this implementation)If anyone wants to continue on this or contribute, they can make a fork or ask on discord about it.
## NOTE
Currently waiting for [box2c](https://github.com/erincatto/box2c) to be released. New issues won't be fixed until then. In meantime try [rapier2d](https://github.com/appsinacup/godot-rapier-2d) physics engine.
A [Box2D](https://github.com/erincatto/box2d) physics server for [Godot Engine](https://github.com/godotengine/godot), implemented as a GDExtension.
## Table of Contents
1. [Limitations](#limitations)
2. [Differences](#differences)
3. [Supported Platforms](#supported-platforms)
4. [Installation](#installation)
5. [Features](#features)
6. [Comparison](#comparison)
7. [License](#license)## Limitations
- Missing circles and capsules skewing.
- Missing thread-safety.
- Missing double precision builds.
- Missing cross platform determinism.## Differences
- Polygons have a small skin, which can result in differences from Godot Physics. [Collision shapes behave as if they are bigger than what it should be](https://github.com/appsinacup/godot-box2d/issues/72)
## Supported Platforms
Curently the Godot Box2d addon builds for:
- Windows (x86_64, x86_32)
- macOS (x86-64 + arm64 Universal)
- Linux (x86_64)
- Android (arm64, arm32, x86_64, x86_32)
- iOS (arm64)
- Web (wasm32)## Installation
- Automatic (Recommended): Download the plugin from the official [Godot Asset Store](https://godotengine.org/asset-library/asset/2007) using the `AssetLib` tab in Godot.
- Manual: Download the [Github Release](https://github.com/appsinacup/godot-box2d/releases/latest) `godot-box2d.zip` and move only the `addons\` folder into your project `addons\` folder.After installing, go to `Advanced Settings` -> `Physics` -> `2D`. Change `Physics Engine` to `Box2D`.
Video Tutorial:
[![Tutorial](https://img.youtube.com/vi/T_vFVh5qZiY/0.jpg)](https://www.youtube.com/watch?v=T_vFVh5qZiY)
## Features
### Improved stability
- Improved physics stability in some cases with high number of rigidbodies.
- Improves polygon collision by fixing [ghost collision](https://box2d.org/posts/2020/06/ghost-collisions/).
- Improves joints by [predictive joint limits](https://box2d.org/posts/2020/04/predictive-joint-limits/).
### Determinism
Box2D is binary deterministic. Godot Box2D should also be binary deterministic, however no such tests were run yet. The newest version of Box2D, v3, will also support cross determinism. When that is done, will also add it here.
## Comparison
Watch a comparison to Godot Physics 2D and [Rapier 2D](https://github.com/appsinacup/godot-rapier-2d) physics plugin:
[![Comparison](https://img.youtube.com/vi/wgUiZ7E19eM/0.jpg)](https://www.youtube.com/watch?v=wgUiZ7E19eM)
Or read about it on [appsinacup.com/godot-physics-vs-box2d-vs-rapier2d](https://appsinacup.com/godot-physics-vs-box2d-vs-rapier2d/)
## License
The Box2D library is developed and maintained by Erin Catto and is provided under the MIT license.
All code in this repository is provided under the MIT license. See `LICENSE` for more details and `THIRDPARTY` for third-party licenses.
Based on [rburing/physics_server_box2d](https://github.com/rburing/physics_server_box2d). Many thanks to you for starting implementation on this!