Skip to content

Commit

Permalink
Merge pull request #9 from thomsen85/early-bevy-impl
Browse files Browse the repository at this point in the history
Bevy impl first version done
  • Loading branch information
CJGutz committed May 20, 2023
2 parents d7da90a + 7386696 commit a1fe0ba
Show file tree
Hide file tree
Showing 47 changed files with 1,404 additions and 347 deletions.
Binary file modified .DS_Store
Binary file not shown.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ on:
- main

jobs:
test_phaser:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
Expand Down
165 changes: 127 additions & 38 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 3 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,9 @@ edition = "2021"
[dependencies]
bevy = { version = "0.10.1", features = ["dynamic_linking"] }
bevy_egui = "0.20.3"
chrono = "0.4.24"
egui_extras = "0.21.0"
rand = "0.8.5"

# Enable a small amount of optimization in debug mode
[profile.dev]
Expand Down
Binary file added assets/fonts/roboto.ttf
Binary file not shown.
56 changes: 28 additions & 28 deletions assets/gjerdrum.gltf

Large diffs are not rendered by default.

5 changes: 5 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
<html>
<head>
<link data-trunk rel="scss" href="path/to/index.scss"/>
</head>
</html>
3 changes: 1 addition & 2 deletions src/main.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
mod simulation;
mod visualization;

fn main() {
visualization::main();
simulation::main();
}
Loading

0 comments on commit a1fe0ba

Please sign in to comment.