├── .gitignore ├── Demo.tscn ├── LICENSE.md ├── README.md ├── addons └── ascii-shader │ ├── AsciiRenderer.tscn │ ├── ascii.gdshader │ ├── character_map.png │ └── character_map.png.import ├── default_env.tres ├── icon.png ├── icon.png.import ├── project.godot ├── screenshot.png └── screenshot.png.import /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kb173/godot-ascii-shader/HEAD/.gitignore -------------------------------------------------------------------------------- /Demo.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kb173/godot-ascii-shader/HEAD/Demo.tscn -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kb173/godot-ascii-shader/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kb173/godot-ascii-shader/HEAD/README.md -------------------------------------------------------------------------------- /addons/ascii-shader/AsciiRenderer.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kb173/godot-ascii-shader/HEAD/addons/ascii-shader/AsciiRenderer.tscn -------------------------------------------------------------------------------- /addons/ascii-shader/ascii.gdshader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kb173/godot-ascii-shader/HEAD/addons/ascii-shader/ascii.gdshader -------------------------------------------------------------------------------- /addons/ascii-shader/character_map.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kb173/godot-ascii-shader/HEAD/addons/ascii-shader/character_map.png -------------------------------------------------------------------------------- /addons/ascii-shader/character_map.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kb173/godot-ascii-shader/HEAD/addons/ascii-shader/character_map.png.import -------------------------------------------------------------------------------- /default_env.tres: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kb173/godot-ascii-shader/HEAD/default_env.tres -------------------------------------------------------------------------------- /icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kb173/godot-ascii-shader/HEAD/icon.png -------------------------------------------------------------------------------- /icon.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kb173/godot-ascii-shader/HEAD/icon.png.import -------------------------------------------------------------------------------- /project.godot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kb173/godot-ascii-shader/HEAD/project.godot -------------------------------------------------------------------------------- /screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kb173/godot-ascii-shader/HEAD/screenshot.png -------------------------------------------------------------------------------- /screenshot.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kb173/godot-ascii-shader/HEAD/screenshot.png.import --------------------------------------------------------------------------------