Skip to content
Snippets Groups Projects
Commit 25dbc8c2 authored by Per Lindgren's avatar Per Lindgren
Browse files

toml

parent ca5b1a57
No related branches found
No related tags found
No related merge requests found
{ {
"cSpell.ignoreWords": [ "cSpell.ignoreWords": [
"fixed", "fixed",
"gamepad",
"timestep", "timestep",
"vsync" "vsync"
] ]
......
...@@ -10,9 +10,12 @@ bevy = { version = "0.5.0", features = ["dynamic"] } ...@@ -10,9 +10,12 @@ bevy = { version = "0.5.0", features = ["dynamic"] }
# bevy_ecs_tilemap = { git = "https://github.com/perlindgren/bevy_ecs_tilemap", branch = "rotate", version = "0.4.1", features = ["tiled_map"]} # bevy_ecs_tilemap = { git = "https://github.com/perlindgren/bevy_ecs_tilemap", branch = "rotate", version = "0.4.1", features = ["tiled_map"]}
# bevy_ecs_tilemap = { git = "https://github.com/perlindgren/bevy_ecs_tilemap", branch = "tiled_animation", version = "0.4.0", features = ["tiled_map"]} # bevy_ecs_tilemap = { git = "https://github.com/perlindgren/bevy_ecs_tilemap", branch = "tiled_animation", version = "0.4.0", features = ["tiled_map"]}
# bevy_ecs_tilemap = { git = "https://github.com/perlindgren/bevy_ecs_tilemap", branch = "animation_and_rotation", version = "0.4.1", features = ["tiled_map"]} # bevy_ecs_tilemap = { git = "https://github.com/perlindgren/bevy_ecs_tilemap", branch = "animation_and_rotation", version = "0.4.1", features = ["tiled_map"]}
bevy_ecs_tilemap = { path = "../bevydev/bevy_ecs_tilemap", features = [ bevy_ecs_tilemap = { git = "https://github.com/perlindgren/bevy_ecs_tilemap", branch = "tiled_parallax", version = "0.4.1", features = [
"tiled_map", "tiled_map",
] } ] }
# bevy_ecs_tilemap = { path = "../bevydev/bevy_ecs_tilemap", features = [
# "tiled_map",
# ] }
rand = "0.8.4" rand = "0.8.4"
env_logger = "0.9" env_logger = "0.9"
log = "0.4" log = "0.4"
......
...@@ -87,6 +87,8 @@ StarAwan date 2021-08-10 (approximately). ...@@ -87,6 +87,8 @@ StarAwan date 2021-08-10 (approximately).
## Some platform specific tips ## Some platform specific tips
---
### Win10 ### Win10
When developing under Win10, you need git [https://git-scm.com/downloads](https://git-scm.com/downloads). Gitbash comes with a shell/terminal. Alacritty is a another (fast) terminal, that uses the GPU for rendering. Under the hood it defaults to powershell. When developing under Win10, you need git [https://git-scm.com/downloads](https://git-scm.com/downloads). Gitbash comes with a shell/terminal. Alacritty is a another (fast) terminal, that uses the GPU for rendering. Under the hood it defaults to powershell.
...@@ -99,6 +101,12 @@ In powershell you set environment variables through `$Env:<NAME> = "<VALUE>"`. T ...@@ -99,6 +101,12 @@ In powershell you set environment variables through `$Env:<NAME> = "<VALUE>"`. T
You may also use this to set log level. You may also use this to set log level.
#### Gamepad input
Current `gilrs` supports only Xinput (XBOX) devices, thus if you want to use PS4/PS5 controllers, you need to emulate an Xinput device. To this end, DS4Windows supports both wired and wireless (BT).
## Thanks ## Thanks
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment