├── 3RD_PARTY.md ├── AUTHORS.md ├── CHANGELOG.md ├── CREDITS.md ├── LICENSE.txt ├── README.md ├── ivoyager_override.cfg ├── project.godot └── template ├── gui ├── navigation_panel.tscn ├── pale_blue_dot.png ├── pale_blue_dot.png.import ├── pbd_splash_screen.gd ├── pbd_splash_screen.gd.uid ├── pbd_splash_screen.tscn └── selection_panel.tscn ├── jupiter-icon-128.png ├── jupiter-icon-128.png.import ├── preinitializer.gd ├── preinitializer.gd.uid ├── units.gd ├── units.gd.uid ├── universe.gd ├── universe.gd.uid └── universe.tscn /3RD_PARTY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivoyager/project_template/HEAD/3RD_PARTY.md -------------------------------------------------------------------------------- /AUTHORS.md: -------------------------------------------------------------------------------- 1 | # I, Voyager Authors 2 | 3 | ## Creator and Lead Programmer 4 | 5 | Charlie Whitifield 6 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivoyager/project_template/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CREDITS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivoyager/project_template/HEAD/CREDITS.md -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivoyager/project_template/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivoyager/project_template/HEAD/README.md -------------------------------------------------------------------------------- /ivoyager_override.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivoyager/project_template/HEAD/ivoyager_override.cfg -------------------------------------------------------------------------------- /project.godot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivoyager/project_template/HEAD/project.godot -------------------------------------------------------------------------------- /template/gui/navigation_panel.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivoyager/project_template/HEAD/template/gui/navigation_panel.tscn -------------------------------------------------------------------------------- /template/gui/pale_blue_dot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivoyager/project_template/HEAD/template/gui/pale_blue_dot.png -------------------------------------------------------------------------------- /template/gui/pale_blue_dot.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivoyager/project_template/HEAD/template/gui/pale_blue_dot.png.import -------------------------------------------------------------------------------- /template/gui/pbd_splash_screen.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivoyager/project_template/HEAD/template/gui/pbd_splash_screen.gd -------------------------------------------------------------------------------- /template/gui/pbd_splash_screen.gd.uid: -------------------------------------------------------------------------------- 1 | uid://l5m7do0p2sni 2 | -------------------------------------------------------------------------------- /template/gui/pbd_splash_screen.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivoyager/project_template/HEAD/template/gui/pbd_splash_screen.tscn -------------------------------------------------------------------------------- /template/gui/selection_panel.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivoyager/project_template/HEAD/template/gui/selection_panel.tscn -------------------------------------------------------------------------------- /template/jupiter-icon-128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivoyager/project_template/HEAD/template/jupiter-icon-128.png -------------------------------------------------------------------------------- /template/jupiter-icon-128.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivoyager/project_template/HEAD/template/jupiter-icon-128.png.import -------------------------------------------------------------------------------- /template/preinitializer.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivoyager/project_template/HEAD/template/preinitializer.gd -------------------------------------------------------------------------------- /template/preinitializer.gd.uid: -------------------------------------------------------------------------------- 1 | uid://b8pqgihehnah5 2 | -------------------------------------------------------------------------------- /template/units.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivoyager/project_template/HEAD/template/units.gd -------------------------------------------------------------------------------- /template/units.gd.uid: -------------------------------------------------------------------------------- 1 | uid://ceqj2b3v48ds0 2 | -------------------------------------------------------------------------------- /template/universe.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivoyager/project_template/HEAD/template/universe.gd -------------------------------------------------------------------------------- /template/universe.gd.uid: -------------------------------------------------------------------------------- 1 | uid://do4tlylce2vud 2 | -------------------------------------------------------------------------------- /template/universe.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ivoyager/project_template/HEAD/template/universe.tscn --------------------------------------------------------------------------------