- Add deltaTime of player bar
   - Add top jumper animation
This commit is contained in:
Hugo Bourgeon
2024-08-22 19:03:55 +02:00
parent fb3bb34e8b
commit 3d6da466b1
64 changed files with 2870 additions and 64 deletions

16
site/real_game/node_modules/stats/test/run generated vendored Executable file
View File

@ -0,0 +1,16 @@
#!/bin/sh
export NODE_ENV=test
echo
for file in $@; do
printf "\033[90m ${file#test/}\033[0m "
node $file 2> /tmp/stderr && echo "\033[36m✓\033[0m"
code=$?
if test $code -ne 0; then
echo "\033[31m✖\033[0m"
cat /tmp/stderr >&2
exit $code
fi
done
echo