├── .gitignore ├── Character.gd ├── LICENSE ├── README.md ├── ShaderTestScreen.tscn ├── addons └── crt_shader │ ├── CRTFrame.png │ ├── CRTFrame.png.import │ ├── CRTShader.gdshader │ ├── ShaderScreen.material │ ├── crt_screen.gd │ ├── crt_shader.gd │ ├── icon.png │ ├── icon.png.import │ └── plugin.cfg ├── character.png ├── character.png.import ├── default_env.tres ├── project.godot ├── samples ├── sample.png ├── sample.png.import ├── withshader.png └── withshader.png.import ├── shaderIcon.png ├── shaderIcon.png.import ├── white.png └── white.png.import /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henriquelalves/SimpleGodotCRTShader/HEAD/.gitignore -------------------------------------------------------------------------------- /Character.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henriquelalves/SimpleGodotCRTShader/HEAD/Character.gd -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henriquelalves/SimpleGodotCRTShader/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henriquelalves/SimpleGodotCRTShader/HEAD/README.md -------------------------------------------------------------------------------- /ShaderTestScreen.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henriquelalves/SimpleGodotCRTShader/HEAD/ShaderTestScreen.tscn -------------------------------------------------------------------------------- /addons/crt_shader/CRTFrame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henriquelalves/SimpleGodotCRTShader/HEAD/addons/crt_shader/CRTFrame.png -------------------------------------------------------------------------------- /addons/crt_shader/CRTFrame.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henriquelalves/SimpleGodotCRTShader/HEAD/addons/crt_shader/CRTFrame.png.import -------------------------------------------------------------------------------- /addons/crt_shader/CRTShader.gdshader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henriquelalves/SimpleGodotCRTShader/HEAD/addons/crt_shader/CRTShader.gdshader -------------------------------------------------------------------------------- /addons/crt_shader/ShaderScreen.material: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henriquelalves/SimpleGodotCRTShader/HEAD/addons/crt_shader/ShaderScreen.material -------------------------------------------------------------------------------- /addons/crt_shader/crt_screen.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henriquelalves/SimpleGodotCRTShader/HEAD/addons/crt_shader/crt_screen.gd -------------------------------------------------------------------------------- /addons/crt_shader/crt_shader.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henriquelalves/SimpleGodotCRTShader/HEAD/addons/crt_shader/crt_shader.gd -------------------------------------------------------------------------------- /addons/crt_shader/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henriquelalves/SimpleGodotCRTShader/HEAD/addons/crt_shader/icon.png -------------------------------------------------------------------------------- /addons/crt_shader/icon.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henriquelalves/SimpleGodotCRTShader/HEAD/addons/crt_shader/icon.png.import -------------------------------------------------------------------------------- /addons/crt_shader/plugin.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henriquelalves/SimpleGodotCRTShader/HEAD/addons/crt_shader/plugin.cfg -------------------------------------------------------------------------------- /character.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henriquelalves/SimpleGodotCRTShader/HEAD/character.png -------------------------------------------------------------------------------- /character.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henriquelalves/SimpleGodotCRTShader/HEAD/character.png.import -------------------------------------------------------------------------------- /default_env.tres: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henriquelalves/SimpleGodotCRTShader/HEAD/default_env.tres -------------------------------------------------------------------------------- /project.godot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henriquelalves/SimpleGodotCRTShader/HEAD/project.godot -------------------------------------------------------------------------------- /samples/sample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henriquelalves/SimpleGodotCRTShader/HEAD/samples/sample.png -------------------------------------------------------------------------------- /samples/sample.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henriquelalves/SimpleGodotCRTShader/HEAD/samples/sample.png.import -------------------------------------------------------------------------------- /samples/withshader.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henriquelalves/SimpleGodotCRTShader/HEAD/samples/withshader.png -------------------------------------------------------------------------------- /samples/withshader.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henriquelalves/SimpleGodotCRTShader/HEAD/samples/withshader.png.import -------------------------------------------------------------------------------- /shaderIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henriquelalves/SimpleGodotCRTShader/HEAD/shaderIcon.png -------------------------------------------------------------------------------- /shaderIcon.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henriquelalves/SimpleGodotCRTShader/HEAD/shaderIcon.png.import -------------------------------------------------------------------------------- /white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henriquelalves/SimpleGodotCRTShader/HEAD/white.png -------------------------------------------------------------------------------- /white.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henriquelalves/SimpleGodotCRTShader/HEAD/white.png.import --------------------------------------------------------------------------------