├── .gitattributes ├── .gitignore ├── Character_Cursor.gd ├── Character_Keyboard.gd ├── Character_Static.gd ├── Images ├── Scene Tree.png ├── Scene Tree.png.import ├── Screenshot.png ├── Screenshot.png.import ├── Visual Shader.png └── Visual Shader.png.import ├── Licence.md ├── MaskShader.tres ├── Readme.md ├── Reflections ├── TrackedViewport.gd └── ViewportTextureSprite.gd ├── Textures ├── Background.png ├── Background.png.import ├── Character Shadow.png ├── Character Shadow.png.import ├── Character.png ├── Character.png.import ├── Mask.png ├── Mask.png.import ├── Pirate.png ├── Pirate.png.import ├── Pirate2.png └── Pirate2.png.import ├── default_env.tres ├── icon.png ├── icon.png.import ├── pokemon.tscn └── project.godot /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McSpider/Godot-2D-Reflections/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .import 2 | 3 | -------------------------------------------------------------------------------- /Character_Cursor.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McSpider/Godot-2D-Reflections/HEAD/Character_Cursor.gd -------------------------------------------------------------------------------- /Character_Keyboard.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McSpider/Godot-2D-Reflections/HEAD/Character_Keyboard.gd -------------------------------------------------------------------------------- /Character_Static.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McSpider/Godot-2D-Reflections/HEAD/Character_Static.gd -------------------------------------------------------------------------------- /Images/Scene Tree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McSpider/Godot-2D-Reflections/HEAD/Images/Scene Tree.png -------------------------------------------------------------------------------- /Images/Scene Tree.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McSpider/Godot-2D-Reflections/HEAD/Images/Scene Tree.png.import -------------------------------------------------------------------------------- /Images/Screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McSpider/Godot-2D-Reflections/HEAD/Images/Screenshot.png -------------------------------------------------------------------------------- /Images/Screenshot.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McSpider/Godot-2D-Reflections/HEAD/Images/Screenshot.png.import -------------------------------------------------------------------------------- /Images/Visual Shader.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McSpider/Godot-2D-Reflections/HEAD/Images/Visual Shader.png -------------------------------------------------------------------------------- /Images/Visual Shader.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McSpider/Godot-2D-Reflections/HEAD/Images/Visual Shader.png.import -------------------------------------------------------------------------------- /Licence.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McSpider/Godot-2D-Reflections/HEAD/Licence.md -------------------------------------------------------------------------------- /MaskShader.tres: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McSpider/Godot-2D-Reflections/HEAD/MaskShader.tres -------------------------------------------------------------------------------- /Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McSpider/Godot-2D-Reflections/HEAD/Readme.md -------------------------------------------------------------------------------- /Reflections/TrackedViewport.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McSpider/Godot-2D-Reflections/HEAD/Reflections/TrackedViewport.gd -------------------------------------------------------------------------------- /Reflections/ViewportTextureSprite.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McSpider/Godot-2D-Reflections/HEAD/Reflections/ViewportTextureSprite.gd -------------------------------------------------------------------------------- /Textures/Background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McSpider/Godot-2D-Reflections/HEAD/Textures/Background.png -------------------------------------------------------------------------------- /Textures/Background.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McSpider/Godot-2D-Reflections/HEAD/Textures/Background.png.import -------------------------------------------------------------------------------- /Textures/Character Shadow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McSpider/Godot-2D-Reflections/HEAD/Textures/Character Shadow.png -------------------------------------------------------------------------------- /Textures/Character Shadow.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McSpider/Godot-2D-Reflections/HEAD/Textures/Character Shadow.png.import -------------------------------------------------------------------------------- /Textures/Character.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McSpider/Godot-2D-Reflections/HEAD/Textures/Character.png -------------------------------------------------------------------------------- /Textures/Character.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McSpider/Godot-2D-Reflections/HEAD/Textures/Character.png.import -------------------------------------------------------------------------------- /Textures/Mask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McSpider/Godot-2D-Reflections/HEAD/Textures/Mask.png -------------------------------------------------------------------------------- /Textures/Mask.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McSpider/Godot-2D-Reflections/HEAD/Textures/Mask.png.import -------------------------------------------------------------------------------- /Textures/Pirate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McSpider/Godot-2D-Reflections/HEAD/Textures/Pirate.png -------------------------------------------------------------------------------- /Textures/Pirate.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McSpider/Godot-2D-Reflections/HEAD/Textures/Pirate.png.import -------------------------------------------------------------------------------- /Textures/Pirate2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McSpider/Godot-2D-Reflections/HEAD/Textures/Pirate2.png -------------------------------------------------------------------------------- /Textures/Pirate2.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McSpider/Godot-2D-Reflections/HEAD/Textures/Pirate2.png.import -------------------------------------------------------------------------------- /default_env.tres: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McSpider/Godot-2D-Reflections/HEAD/default_env.tres -------------------------------------------------------------------------------- /icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McSpider/Godot-2D-Reflections/HEAD/icon.png -------------------------------------------------------------------------------- /icon.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McSpider/Godot-2D-Reflections/HEAD/icon.png.import -------------------------------------------------------------------------------- /pokemon.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McSpider/Godot-2D-Reflections/HEAD/pokemon.tscn -------------------------------------------------------------------------------- /project.godot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/McSpider/Godot-2D-Reflections/HEAD/project.godot --------------------------------------------------------------------------------