├── .gitignore ├── LICENSE ├── README.md ├── icon.png ├── project.godot ├── scenes ├── example_basic.tscn ├── example_with_bloom.tscn └── game.tscn ├── screenshots ├── supermarioworld.png └── supermarioworld.png.import └── shaders └── crt-geom.tres /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qarlosh/Godot-crt-geom-shader/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qarlosh/Godot-crt-geom-shader/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qarlosh/Godot-crt-geom-shader/HEAD/README.md -------------------------------------------------------------------------------- /icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qarlosh/Godot-crt-geom-shader/HEAD/icon.png -------------------------------------------------------------------------------- /project.godot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qarlosh/Godot-crt-geom-shader/HEAD/project.godot -------------------------------------------------------------------------------- /scenes/example_basic.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qarlosh/Godot-crt-geom-shader/HEAD/scenes/example_basic.tscn -------------------------------------------------------------------------------- /scenes/example_with_bloom.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qarlosh/Godot-crt-geom-shader/HEAD/scenes/example_with_bloom.tscn -------------------------------------------------------------------------------- /scenes/game.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qarlosh/Godot-crt-geom-shader/HEAD/scenes/game.tscn -------------------------------------------------------------------------------- /screenshots/supermarioworld.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qarlosh/Godot-crt-geom-shader/HEAD/screenshots/supermarioworld.png -------------------------------------------------------------------------------- /screenshots/supermarioworld.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qarlosh/Godot-crt-geom-shader/HEAD/screenshots/supermarioworld.png.import -------------------------------------------------------------------------------- /shaders/crt-geom.tres: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qarlosh/Godot-crt-geom-shader/HEAD/shaders/crt-geom.tres --------------------------------------------------------------------------------