Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/dalexeev/defend-the-colony
https://github.com/dalexeev/defend-the-colony
Last synced: 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/dalexeev/defend-the-colony
- Owner: dalexeev
- Created: 2023-11-04T05:38:08.000Z (about 1 year ago)
- Default Branch: master
- Last Pushed: 2023-11-06T09:26:32.000Z (about 1 year ago)
- Last Synced: 2023-11-06T10:35:22.715Z (about 1 year ago)
- Language: GDScript
- Size: 51.8 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Defend the Colony
![image](screenshots/building_window.png)
**Внимание:** В настоящее время в Godot 4.x есть баг с тем, что файл
`.godot/global_script_class_cache.cfg` не заполняется автоматически (необходимо
вручную сохранить каждый файл с `class_name`). Вот правильное содержимое этого
файла для данного проекта:```
list=Array[Dictionary]([{
"base": &"Resource",
"class": &"Building",
"icon": "",
"language": &"GDScript",
"path": "res://data/building.gd"
}, {
"base": &"PanelContainer",
"class": &"BuildingView",
"icon": "",
"language": &"GDScript",
"path": "res://ui/building_view.gd"
}, {
"base": &"HBoxContainer",
"class": &"BuildingViewStat",
"icon": "",
"language": &"GDScript",
"path": "res://ui/building_view_stat.gd"
}])
```