Skip to content

Commit 25953d4

Browse files
Remove my dirty physics and add nphysics backend
1 parent 4e7bed0 commit 25953d4

22 files changed

+2565
-335
lines changed

Cargo.lock

Lines changed: 179 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,14 @@ Take part in this awesome adventure and help Ferris be the best ever!
99
repository = "https://github.com/Andy-Python-Programmer/CallOfFerris"
1010
edition = "2018"
1111

12+
[features]
13+
default = []
14+
debug = []
15+
1216
[dependencies]
1317
ggez = "0.5"
1418
rand = "0.7"
15-
ggez-goodies = { git = "https://github.com/ggez/ggez-goodies" }
19+
ggez-goodies = { path = "./ggez-goodies/" }
1620
nalgebra-glm = "0.9.0"
1721
gfx = "0.18.2"
22+
nphysics2d = "0.18.0"

ggez-goodies/Cargo.toml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
[package]
2+
name = "ggez-goodies"
3+
description = "Various small useful add-ons for the ggez game framework"
4+
version = "0.5.0-rc.1"
5+
repository = "https://github.com/ggez/ggez-goodies"
6+
documentation = "https://docs.rs/ggez-goodies"
7+
authors = ["Simon Heath <[email protected]>"]
8+
edition = "2018"
9+
license = "MIT"
10+
readme = "README.md"
11+
12+
13+
[dependencies]
14+
ggez = "0.5.0-rc.1"
15+
nalgebra-glm = "0.3.0"
16+
rand = "0.4"
17+
18+
[dev-dependencies]
19+
ezing = "0.2.0"

0 commit comments

Comments
 (0)