Go to file
2021-10-09 18:48:58 +00:00
android windows vs linux 2021-10-05 17:22:01 -06:00
assets Added more sounds, and fixed an audio bug. 2021-10-06 12:22:57 -06:00
ios windows vs linux 2021-10-05 17:22:01 -06:00
lib Added comments 2021-10-09 12:32:15 -06:00
linux Upgraded the code to support Flutter SDK 2.5 and Dart 2.14. If you have previous builds please delete your build file, run 'flutter upgrade' on the stable flutter channel and also run 'flutter clean' in the project directory. 2021-09-08 15:44:12 -06:00
test first 2021-08-31 10:46:17 -06:00
web Added the Main Menu #12, Mobile Icons #18. Runner animations finished in previous commit #6. Also implemented text scaling for different devices. 2021-10-01 16:40:28 -06:00
windows Adds extra files for testing on Windows development enviornments. 2021-09-14 14:37:14 -06:00
.gitignore first 2021-08-31 10:46:17 -06:00
.metadata first 2021-08-31 10:46:17 -06:00
analysis_options.yaml Upgraded the code to support Flutter SDK 2.5 and Dart 2.14. If you have previous builds please delete your build file, run 'flutter upgrade' on the stable flutter channel and also run 'flutter clean' in the project directory. 2021-09-08 15:44:12 -06:00
flutter_01.sksl.json Added more sounds, and fixed an audio bug. 2021-10-06 12:22:57 -06:00
pubspec.lock Added connections to the firo_runner_server. Fixed a couple introduced bugs. Added flag for non tournament version of the code for Google Play/ Apple. 2021-10-08 21:50:47 -06:00
pubspec.yaml Added connections to the firo_runner_server. Fixed a couple introduced bugs. Added flag for non tournament version of the code for Google Play/ Apple. 2021-10-08 21:50:47 -06:00
README.md Update 'README.md' 2021-10-09 18:47:59 +00:00

firo_runner

An infitite runner game powered by Firo.

Getting Started

To build follow tutorials on setting up a flutter development enviornment.

Once you can build a default flutter application, you should be able to build the program.

Simply git clone this repository, and open it up in an editor of your choice whether Android Studio or Visual Code, and if you have flutter and Dart plugins installed you should be able to build for any device.

If solely using the command line

  1. set up your flutter development enviornment
  2. git clone the repository
  3. go into repository with terminal
  4. type: flutter pub get
  5. type depending on what device you are building for:
flutter build apk --bundle-sksl-path flutter_01.sksl.json --release
// or
flutter build web --web-renderer canvaskit --release

To connect to the server in tournament mode, set the variables in main.dart to the correct values of the server

const SERVER = "http://serveripaddress";
const PORT = "portnumber";

If you are not interested in playing in tournament mode, simply set the following variable to true in main.dart

const NO_TOURNAMENT = true;