diff --git a/assets/flappy/CREDITS b/assets/flappy/CREDITS index f07881c..0a85f77 100644 --- a/assets/flappy/CREDITS +++ b/assets/flappy/CREDITS @@ -1,10 +1,15 @@ +Flappy Bird +(with rewind) + A game by Elijah Voigt Playtesters: Sam Hall +Ari (gamer) Engine: Bevy Physics: Avian2D Inspired by: -Flappy Bird (2013) by Dong Nguyen +Flappy Bird (2013) +by Dong Nguyen diff --git a/assets/flappy/assets.blend b/assets/flappy/assets.blend index 426efcb..c9f6237 100644 Binary files a/assets/flappy/assets.blend and b/assets/flappy/assets.blend differ diff --git a/justfile b/justfile index 7fc32f2..774f363 100644 --- a/justfile +++ b/justfile @@ -5,8 +5,8 @@ web GAME: # base directory mkdir -p dist/{{GAME}}/assets/{{GAME}} - # wasm binar - # cargo build --bin {{GAME}} --release --target wasm32-unknown-unknown + # wasm binary + cargo build --bin {{GAME}} --release --target wasm32-unknown-unknown # wasm bindgen wasm-bindgen --no-typescript --target web \ @@ -23,10 +23,10 @@ web GAME: # Helpful shorthand to serve files serve GAME: (web GAME) - cd dist/{{GAME}} && simple-http-server + simple-http-server dist/{{GAME}} -# itchio GAME: (web GAME) -# butler push dist/{{GAME}} popgame/{{GAME}}:html5 --userversion={{VERSION}} +itchio GAME: (web GAME) + butler push dist/{{GAME}} popgame/{{GAME}}:html5 --userversion={{VERSION}} clean: rm -rf dist/*