Skip to content
This repository has been archived by the owner on Oct 25, 2021. It is now read-only.

Commit

Permalink
Switch meshes to GLTF (#95)
Browse files Browse the repository at this point in the history
* Use gltf asset for carnivore

* Fix gltf loading and convert some meshes

* Add color to the ground and add tree mesh

* Restored colors for different creatures

* Restore color of mushi
  • Loading branch information
sunreef committed Jul 16, 2019
1 parent 8e16a1c commit 1d6e4c7
Show file tree
Hide file tree
Showing 25 changed files with 805 additions and 5,542 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -10,3 +10,6 @@

# IntelliJ folder
.idea

# profiles
thread_profile*
193 changes: 193 additions & 0 deletions Cargo.lock

Large diffs are not rendered by default.

10 changes: 6 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,16 +5,18 @@ authors = []
edition = "2018"

[dependencies]
amethyst = { git = "https://github.com/amethyst/amethyst.git", rev = "2509c43", features = ["vulkan"]}
#amethyst_test = "0.2.0"
amethyst = { git = "https://github.com/amethyst/amethyst.git", rev = "2509c43", features = ["vulkan", "gltf"]}
rand = "0.6.5"
log = "0.4.6"
#amethyst-imgui = "0.3.0"
#amethyst-inspector = { git = "https://github.com/awpteamoose/amethyst-inspector.git"}
smart-default = "0.5.2"
serde = "1.0.90"
thread_profiler = "0.3.0"

# TODO: update dependencies for Amethyst newest version
#amethyst_test = "0.2.0"
#amethyst-imgui = "0.3.0"
#amethyst-inspector = { git = "https://github.com/awpteamoose/amethyst-inspector.git"}

[features]
profiler = [
"thread_profiler/thread_profiler",
Expand Down
Loading

0 comments on commit 1d6e4c7

Please sign in to comment.