├── .gitignore ├── LICENSE ├── README.md ├── bullet.png ├── bullet.png.import ├── default_env.tres ├── icon.png ├── icon.png.import ├── project.godot ├── resources └── test_bullet.tres ├── scenes ├── bullet.tscn └── test_scene.tscn └── scripts ├── bullet_container.gd ├── bullet_resource.gd ├── bullet_spawner_class.gd ├── for_testing ├── bullet.gd ├── main.gd ├── target.gd └── test_timer.gd └── radial_bullet_spawner.gd /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flimsy-window/gebs/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flimsy-window/gebs/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flimsy-window/gebs/HEAD/README.md -------------------------------------------------------------------------------- /bullet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flimsy-window/gebs/HEAD/bullet.png -------------------------------------------------------------------------------- /bullet.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flimsy-window/gebs/HEAD/bullet.png.import -------------------------------------------------------------------------------- /default_env.tres: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flimsy-window/gebs/HEAD/default_env.tres -------------------------------------------------------------------------------- /icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flimsy-window/gebs/HEAD/icon.png -------------------------------------------------------------------------------- /icon.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flimsy-window/gebs/HEAD/icon.png.import -------------------------------------------------------------------------------- /project.godot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flimsy-window/gebs/HEAD/project.godot -------------------------------------------------------------------------------- /resources/test_bullet.tres: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flimsy-window/gebs/HEAD/resources/test_bullet.tres -------------------------------------------------------------------------------- /scenes/bullet.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flimsy-window/gebs/HEAD/scenes/bullet.tscn -------------------------------------------------------------------------------- /scenes/test_scene.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flimsy-window/gebs/HEAD/scenes/test_scene.tscn -------------------------------------------------------------------------------- /scripts/bullet_container.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flimsy-window/gebs/HEAD/scripts/bullet_container.gd -------------------------------------------------------------------------------- /scripts/bullet_resource.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flimsy-window/gebs/HEAD/scripts/bullet_resource.gd -------------------------------------------------------------------------------- /scripts/bullet_spawner_class.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flimsy-window/gebs/HEAD/scripts/bullet_spawner_class.gd -------------------------------------------------------------------------------- /scripts/for_testing/bullet.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flimsy-window/gebs/HEAD/scripts/for_testing/bullet.gd -------------------------------------------------------------------------------- /scripts/for_testing/main.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flimsy-window/gebs/HEAD/scripts/for_testing/main.gd -------------------------------------------------------------------------------- /scripts/for_testing/target.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flimsy-window/gebs/HEAD/scripts/for_testing/target.gd -------------------------------------------------------------------------------- /scripts/for_testing/test_timer.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flimsy-window/gebs/HEAD/scripts/for_testing/test_timer.gd -------------------------------------------------------------------------------- /scripts/radial_bullet_spawner.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flimsy-window/gebs/HEAD/scripts/radial_bullet_spawner.gd --------------------------------------------------------------------------------