This commit is contained in:
yuni 2024-03-31 19:49:59 +02:00
parent 2214790e53
commit d10817bcb9
2 changed files with 23 additions and 9 deletions

View file

@ -20,6 +20,7 @@ Key features:
- Space: stop moving
- AWSD: accelerate
- Shift and Ctrl: accelerate up and down
- JKLUIO: mouseless camera rotation
- e: open communication channel to nearby astronauts
- t: toggle music (NOTE: currently no music is included in the git repo)
- m: mute sound effects
@ -28,15 +29,6 @@ Key features:
- f: toggle 3rd person view
- TAB: toggle augmented reality overlay (HUD, low-light amplifier)
Extra key bindings for mouseless playing:
- j: look left
- i: look up
- k: look down
- l: look right
- u: rotate left
- o: rotate right
# System Requirements
- Screen, keyboard

22
doc/scripts/pack.sh Executable file
View file

@ -0,0 +1,22 @@
#!/bin/sh
set -e
VERSION=0.4.0
TMPPATH=ZIP_TMP_PATH
mkdir "$TMPPATH"
cd "$TMPPATH"
SRCPATH="outfly_v$VERSION"
mkdir "$SRCPATH"
cp ../README.md "$SRCPATH"
cp ../target/x86_64-pc-windows-gnu/release/outfly.exe "$SRCPATH"
zip -v -r -9 ../"outfly_v${VERSION}_windows.zip" "$SRCPATH"
rm "$SRCPATH"/outfly.exe
cp ../target/release/outfly "$SRCPATH"
zip -v -r -9 ../"outfly_v${VERSION}_linux.zip" "$SRCPATH"
cd ..
rm -rf "$TMPPATH"