Skip to content
This repository has been archived by the owner on Nov 8, 2022. It is now read-only.

Latest commit

 

History

History
75 lines (59 loc) · 1.22 KB

README.md

File metadata and controls

75 lines (59 loc) · 1.22 KB

AgarEdu

Agar.io clone in Godot Engine for educational purposes

godot-ci export

Файл настроек выглядит так:

{
 "coins": {
  "DOGE": 0.8,
  "ETH": 0.95
 },

 "coin_value": {
  "DOGE": 0.001,
  "ETH": 0.1,
  "BTC": 0.5
 },

 "options": {
  "kWt_min": 15,
  "kWt_max": 40,
  "score_min": 0.5,
  "score_max": 5,
  "coin_ammount": 500,
  "game_scale": 3,
  "speed": 1.0,
  "music": true
 }
}

только в одну строчку

В Windows он находится в %appdata%\Godot\app_userdata\AgarEdu\data.json или в %APPDATA%\AgarEdu\data.json

В Linux в ~/.local/share/godot/app_userdata/AgarEdu/data.json

А в macOS ~/Library/Application Support/Godot/app_userdata/AgarEdu/data.json

  • Шанс выпадения монет:
"coins": {
  "DOGE": 0.8,
  "ETH": 0.95
}
  • Стоимость монет:
"coin_value": {
  "DOGE": 0.001,
  "ETH": 0.1,
  "BTC": 0.5
}
  • Разные опции:
 "options": {
  "kWt_min": 15,
  "kWt_max": 40,
  "score_min": 0.5,
  "score_max": 5,
  "coin_ammount": 500,
  "game_scale": 3,
  "speed": 1.0,
  "music": true
 }