├── .gitattributes ├── .gitignore ├── Camera2D.gd ├── LICENSE ├── Main.gd ├── Main.tscn ├── README.md ├── default_env.tres ├── icon.png ├── icon.png.import ├── image.png ├── image.png.import ├── images ├── Background_Tile.tscn ├── Grass-Albedo.png ├── Grass-Albedo.png.import ├── Grass-Normal.png.import ├── Grass-Normal_256.png ├── Grass-Normal_256.png.import ├── Grass-Normal_512.png ├── Grass-Normal_512.png.import ├── light_1024.png ├── light_1024.png.import ├── light_256.png ├── light_256.png.import ├── light_512.png └── light_512.png.import └── project.godot /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheDuriel/Godot-2DLights-Benchmark/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheDuriel/Godot-2DLights-Benchmark/HEAD/.gitignore -------------------------------------------------------------------------------- /Camera2D.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheDuriel/Godot-2DLights-Benchmark/HEAD/Camera2D.gd -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheDuriel/Godot-2DLights-Benchmark/HEAD/LICENSE -------------------------------------------------------------------------------- /Main.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheDuriel/Godot-2DLights-Benchmark/HEAD/Main.gd -------------------------------------------------------------------------------- /Main.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheDuriel/Godot-2DLights-Benchmark/HEAD/Main.tscn -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheDuriel/Godot-2DLights-Benchmark/HEAD/README.md -------------------------------------------------------------------------------- /default_env.tres: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheDuriel/Godot-2DLights-Benchmark/HEAD/default_env.tres -------------------------------------------------------------------------------- /icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheDuriel/Godot-2DLights-Benchmark/HEAD/icon.png -------------------------------------------------------------------------------- /icon.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheDuriel/Godot-2DLights-Benchmark/HEAD/icon.png.import -------------------------------------------------------------------------------- /image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheDuriel/Godot-2DLights-Benchmark/HEAD/image.png -------------------------------------------------------------------------------- /image.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheDuriel/Godot-2DLights-Benchmark/HEAD/image.png.import -------------------------------------------------------------------------------- /images/Background_Tile.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheDuriel/Godot-2DLights-Benchmark/HEAD/images/Background_Tile.tscn -------------------------------------------------------------------------------- /images/Grass-Albedo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheDuriel/Godot-2DLights-Benchmark/HEAD/images/Grass-Albedo.png -------------------------------------------------------------------------------- /images/Grass-Albedo.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheDuriel/Godot-2DLights-Benchmark/HEAD/images/Grass-Albedo.png.import -------------------------------------------------------------------------------- /images/Grass-Normal.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheDuriel/Godot-2DLights-Benchmark/HEAD/images/Grass-Normal.png.import -------------------------------------------------------------------------------- /images/Grass-Normal_256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheDuriel/Godot-2DLights-Benchmark/HEAD/images/Grass-Normal_256.png -------------------------------------------------------------------------------- /images/Grass-Normal_256.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheDuriel/Godot-2DLights-Benchmark/HEAD/images/Grass-Normal_256.png.import -------------------------------------------------------------------------------- /images/Grass-Normal_512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheDuriel/Godot-2DLights-Benchmark/HEAD/images/Grass-Normal_512.png -------------------------------------------------------------------------------- /images/Grass-Normal_512.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheDuriel/Godot-2DLights-Benchmark/HEAD/images/Grass-Normal_512.png.import -------------------------------------------------------------------------------- /images/light_1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheDuriel/Godot-2DLights-Benchmark/HEAD/images/light_1024.png -------------------------------------------------------------------------------- /images/light_1024.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheDuriel/Godot-2DLights-Benchmark/HEAD/images/light_1024.png.import -------------------------------------------------------------------------------- /images/light_256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheDuriel/Godot-2DLights-Benchmark/HEAD/images/light_256.png -------------------------------------------------------------------------------- /images/light_256.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheDuriel/Godot-2DLights-Benchmark/HEAD/images/light_256.png.import -------------------------------------------------------------------------------- /images/light_512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheDuriel/Godot-2DLights-Benchmark/HEAD/images/light_512.png -------------------------------------------------------------------------------- /images/light_512.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheDuriel/Godot-2DLights-Benchmark/HEAD/images/light_512.png.import -------------------------------------------------------------------------------- /project.godot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheDuriel/Godot-2DLights-Benchmark/HEAD/project.godot --------------------------------------------------------------------------------