├── .gitignore ├── BackgroundGenerator ├── 100x100.png ├── 100x100.png.import ├── BackgroundGenerator.gd ├── BackgroundGenerator.tscn ├── BigStar.gd ├── BigStar.tscn ├── Colorscheme.tres ├── Nebulae.shader ├── Nebulae.tres ├── Planet.gd ├── Planet.tscn ├── StarParticles.tres ├── StarStuff.shader ├── StarStuff.tres ├── stars-special.png ├── stars-special.png.import ├── stars.png └── stars.png.import ├── GUI ├── ColorPickerButton.tscn ├── Font.tres ├── FontSmall.tres ├── FontSmaller.tres ├── GUI.gd ├── GUI.tscn ├── SchemeSelectButton.gd ├── SchemeSelectButton.tscn ├── Theme.tres ├── empty.png ├── empty.png.import ├── grabber-highlight.png ├── grabber-highlight.png.import ├── grabber.png ├── grabber.png.import ├── slkscre.ttf ├── transparent.png └── transparent.png.import ├── LICENSE ├── README.md ├── addons └── HTML5FileExchange │ ├── HTML5FileExchange.gd │ ├── plugin.cfg │ └── plugin.gd ├── default_env.tres ├── icon.png ├── icon.png.import └── project.godot /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deep-Fold/PixelSpace/HEAD/.gitignore -------------------------------------------------------------------------------- /BackgroundGenerator/100x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deep-Fold/PixelSpace/HEAD/BackgroundGenerator/100x100.png -------------------------------------------------------------------------------- /BackgroundGenerator/100x100.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deep-Fold/PixelSpace/HEAD/BackgroundGenerator/100x100.png.import -------------------------------------------------------------------------------- /BackgroundGenerator/BackgroundGenerator.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deep-Fold/PixelSpace/HEAD/BackgroundGenerator/BackgroundGenerator.gd -------------------------------------------------------------------------------- /BackgroundGenerator/BackgroundGenerator.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deep-Fold/PixelSpace/HEAD/BackgroundGenerator/BackgroundGenerator.tscn -------------------------------------------------------------------------------- /BackgroundGenerator/BigStar.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deep-Fold/PixelSpace/HEAD/BackgroundGenerator/BigStar.gd -------------------------------------------------------------------------------- /BackgroundGenerator/BigStar.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deep-Fold/PixelSpace/HEAD/BackgroundGenerator/BigStar.tscn -------------------------------------------------------------------------------- /BackgroundGenerator/Colorscheme.tres: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deep-Fold/PixelSpace/HEAD/BackgroundGenerator/Colorscheme.tres -------------------------------------------------------------------------------- /BackgroundGenerator/Nebulae.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deep-Fold/PixelSpace/HEAD/BackgroundGenerator/Nebulae.shader -------------------------------------------------------------------------------- /BackgroundGenerator/Nebulae.tres: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deep-Fold/PixelSpace/HEAD/BackgroundGenerator/Nebulae.tres -------------------------------------------------------------------------------- /BackgroundGenerator/Planet.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deep-Fold/PixelSpace/HEAD/BackgroundGenerator/Planet.gd -------------------------------------------------------------------------------- /BackgroundGenerator/Planet.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deep-Fold/PixelSpace/HEAD/BackgroundGenerator/Planet.tscn -------------------------------------------------------------------------------- /BackgroundGenerator/StarParticles.tres: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deep-Fold/PixelSpace/HEAD/BackgroundGenerator/StarParticles.tres -------------------------------------------------------------------------------- /BackgroundGenerator/StarStuff.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deep-Fold/PixelSpace/HEAD/BackgroundGenerator/StarStuff.shader -------------------------------------------------------------------------------- /BackgroundGenerator/StarStuff.tres: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deep-Fold/PixelSpace/HEAD/BackgroundGenerator/StarStuff.tres -------------------------------------------------------------------------------- /BackgroundGenerator/stars-special.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deep-Fold/PixelSpace/HEAD/BackgroundGenerator/stars-special.png -------------------------------------------------------------------------------- /BackgroundGenerator/stars-special.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deep-Fold/PixelSpace/HEAD/BackgroundGenerator/stars-special.png.import -------------------------------------------------------------------------------- /BackgroundGenerator/stars.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deep-Fold/PixelSpace/HEAD/BackgroundGenerator/stars.png -------------------------------------------------------------------------------- /BackgroundGenerator/stars.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deep-Fold/PixelSpace/HEAD/BackgroundGenerator/stars.png.import -------------------------------------------------------------------------------- /GUI/ColorPickerButton.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deep-Fold/PixelSpace/HEAD/GUI/ColorPickerButton.tscn -------------------------------------------------------------------------------- /GUI/Font.tres: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deep-Fold/PixelSpace/HEAD/GUI/Font.tres -------------------------------------------------------------------------------- /GUI/FontSmall.tres: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deep-Fold/PixelSpace/HEAD/GUI/FontSmall.tres -------------------------------------------------------------------------------- /GUI/FontSmaller.tres: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deep-Fold/PixelSpace/HEAD/GUI/FontSmaller.tres -------------------------------------------------------------------------------- /GUI/GUI.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deep-Fold/PixelSpace/HEAD/GUI/GUI.gd -------------------------------------------------------------------------------- /GUI/GUI.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deep-Fold/PixelSpace/HEAD/GUI/GUI.tscn -------------------------------------------------------------------------------- /GUI/SchemeSelectButton.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deep-Fold/PixelSpace/HEAD/GUI/SchemeSelectButton.gd -------------------------------------------------------------------------------- /GUI/SchemeSelectButton.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deep-Fold/PixelSpace/HEAD/GUI/SchemeSelectButton.tscn -------------------------------------------------------------------------------- /GUI/Theme.tres: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deep-Fold/PixelSpace/HEAD/GUI/Theme.tres -------------------------------------------------------------------------------- /GUI/empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deep-Fold/PixelSpace/HEAD/GUI/empty.png -------------------------------------------------------------------------------- /GUI/empty.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deep-Fold/PixelSpace/HEAD/GUI/empty.png.import -------------------------------------------------------------------------------- /GUI/grabber-highlight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deep-Fold/PixelSpace/HEAD/GUI/grabber-highlight.png -------------------------------------------------------------------------------- /GUI/grabber-highlight.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deep-Fold/PixelSpace/HEAD/GUI/grabber-highlight.png.import -------------------------------------------------------------------------------- /GUI/grabber.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deep-Fold/PixelSpace/HEAD/GUI/grabber.png -------------------------------------------------------------------------------- /GUI/grabber.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deep-Fold/PixelSpace/HEAD/GUI/grabber.png.import -------------------------------------------------------------------------------- /GUI/slkscre.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deep-Fold/PixelSpace/HEAD/GUI/slkscre.ttf -------------------------------------------------------------------------------- /GUI/transparent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deep-Fold/PixelSpace/HEAD/GUI/transparent.png -------------------------------------------------------------------------------- /GUI/transparent.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deep-Fold/PixelSpace/HEAD/GUI/transparent.png.import -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deep-Fold/PixelSpace/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deep-Fold/PixelSpace/HEAD/README.md -------------------------------------------------------------------------------- /addons/HTML5FileExchange/HTML5FileExchange.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deep-Fold/PixelSpace/HEAD/addons/HTML5FileExchange/HTML5FileExchange.gd -------------------------------------------------------------------------------- /addons/HTML5FileExchange/plugin.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deep-Fold/PixelSpace/HEAD/addons/HTML5FileExchange/plugin.cfg -------------------------------------------------------------------------------- /addons/HTML5FileExchange/plugin.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deep-Fold/PixelSpace/HEAD/addons/HTML5FileExchange/plugin.gd -------------------------------------------------------------------------------- /default_env.tres: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deep-Fold/PixelSpace/HEAD/default_env.tres -------------------------------------------------------------------------------- /icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deep-Fold/PixelSpace/HEAD/icon.png -------------------------------------------------------------------------------- /icon.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deep-Fold/PixelSpace/HEAD/icon.png.import -------------------------------------------------------------------------------- /project.godot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deep-Fold/PixelSpace/HEAD/project.godot --------------------------------------------------------------------------------