cleanup
This commit is contained in:
parent
2214790e53
commit
d10817bcb9
10
README.md
10
README.md
|
@ -20,6 +20,7 @@ Key features:
|
||||||
- Space: stop moving
|
- Space: stop moving
|
||||||
- AWSD: accelerate
|
- AWSD: accelerate
|
||||||
- Shift and Ctrl: accelerate up and down
|
- Shift and Ctrl: accelerate up and down
|
||||||
|
- JKLUIO: mouseless camera rotation
|
||||||
- e: open communication channel to nearby astronauts
|
- e: open communication channel to nearby astronauts
|
||||||
- t: toggle music (NOTE: currently no music is included in the git repo)
|
- t: toggle music (NOTE: currently no music is included in the git repo)
|
||||||
- m: mute sound effects
|
- m: mute sound effects
|
||||||
|
@ -28,15 +29,6 @@ Key features:
|
||||||
- f: toggle 3rd person view
|
- f: toggle 3rd person view
|
||||||
- TAB: toggle augmented reality overlay (HUD, low-light amplifier)
|
- 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
|
# System Requirements
|
||||||
|
|
||||||
- Screen, keyboard
|
- Screen, keyboard
|
||||||
|
|
22
doc/scripts/pack.sh
Executable file
22
doc/scripts/pack.sh
Executable 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"
|
Loading…
Reference in a new issue