Skip to content

Commit

Permalink
WIP: kinda works? Y is still inverted though
Browse files Browse the repository at this point in the history
  • Loading branch information
ozkriff committed Mar 24, 2024
1 parent bc2a790 commit 27dc614
Show file tree
Hide file tree
Showing 7 changed files with 20 additions and 7 deletions.
5 changes: 3 additions & 2 deletions Cargo.lock

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

22 changes: 17 additions & 5 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,22 +14,34 @@ members = ["zcomponents", "zgui", "zscene"]

[package.metadata.android]
assets = "assets/"
res = "android_res"
icon = "@mipmap/ic_launcher"
build_targets = [ "armv7-linux-androideabi", "aarch64-linux-android", "i686-linux-android", "x86_64-linux-android" ]
version_code = 6

# android_version = 33
target_sdk_version = 33

[package.metadata.android.activity_attributes]
"android:exported" = "true"
"android:screenOrientation" = "userLandscape"

[dependencies]
ron = "0.8"
ron = "0.8.1"
log = "0.4"
env_logger = "0.10"
derive_more = { version = "0.99", features = ["from"] } # TODO: https://github.com/ozkriff/zemeroth/issues/251
serde = { version = "1.0", features = ["derive"] }
serde = { version = "1.0.197", features = ["derive"] }
num = { version = "0.4", default-features = false }
ui = { path = "zgui", package = "zgui" }
zscene = { path = "zscene" }
zcomponents = { path = "zcomponents" }
rand = { version = "0.8", default-features = false, features = ["alloc"] }
quad-rand = { version = "0.2", features = ["rand"] }
mq = { package = "macroquad", version = "0.4.0" }
rand = { version = "0.8.3", default-features = false, features = ["alloc"] }
quad-rand = { version = "0.2.1", features = ["rand"] }
mq = { package = "macroquad", version = "0.4.2" }
heck = "0.4.1"
once_cell = "1.6"
bumpalo = "=3.4.0"

[dev-dependencies]
pretty_assertions = "1.3"
Binary file added android_res/mipmap-hdpi/ic_launcher.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added android_res/mipmap-mdpi/ic_launcher.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added android_res/mipmap-xhdpi/ic_launcher.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added android_res/mipmap-xxhdpi/ic_launcher.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added android_res/mipmap-xxxhdpi/ic_launcher.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 27dc614

Please sign in to comment.