├── .gitattributes ├── .gitignore ├── LICENSE ├── README.md ├── screenshots ├── .gdignore ├── GodotWeather2D-social.png ├── GodotWeather2D.png ├── weather_collider.png ├── weather_icon.png └── weather_scene.png └── weather ├── assets ├── rain.png ├── rain.png.import ├── snow.png └── snow.png.import ├── default_env.tres ├── icon.png ├── icon.png.import ├── project.godot ├── scenes ├── sampleWeather.tscn ├── sampleWeatherCollider.tscn └── sampleWeatherUI.tscn └── src ├── Weather.gd ├── WeatherCollider.gd ├── WeatherUI.gd ├── weather.tscn ├── weatherCollider.tscn └── weatherUI.tscn /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pirachute/godot-weather-2D/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pirachute/godot-weather-2D/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pirachute/godot-weather-2D/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pirachute/godot-weather-2D/HEAD/README.md -------------------------------------------------------------------------------- /screenshots/.gdignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /screenshots/GodotWeather2D-social.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pirachute/godot-weather-2D/HEAD/screenshots/GodotWeather2D-social.png -------------------------------------------------------------------------------- /screenshots/GodotWeather2D.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pirachute/godot-weather-2D/HEAD/screenshots/GodotWeather2D.png -------------------------------------------------------------------------------- /screenshots/weather_collider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pirachute/godot-weather-2D/HEAD/screenshots/weather_collider.png -------------------------------------------------------------------------------- /screenshots/weather_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pirachute/godot-weather-2D/HEAD/screenshots/weather_icon.png -------------------------------------------------------------------------------- /screenshots/weather_scene.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pirachute/godot-weather-2D/HEAD/screenshots/weather_scene.png -------------------------------------------------------------------------------- /weather/assets/rain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pirachute/godot-weather-2D/HEAD/weather/assets/rain.png -------------------------------------------------------------------------------- /weather/assets/rain.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pirachute/godot-weather-2D/HEAD/weather/assets/rain.png.import -------------------------------------------------------------------------------- /weather/assets/snow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pirachute/godot-weather-2D/HEAD/weather/assets/snow.png -------------------------------------------------------------------------------- /weather/assets/snow.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pirachute/godot-weather-2D/HEAD/weather/assets/snow.png.import -------------------------------------------------------------------------------- /weather/default_env.tres: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pirachute/godot-weather-2D/HEAD/weather/default_env.tres -------------------------------------------------------------------------------- /weather/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pirachute/godot-weather-2D/HEAD/weather/icon.png -------------------------------------------------------------------------------- /weather/icon.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pirachute/godot-weather-2D/HEAD/weather/icon.png.import -------------------------------------------------------------------------------- /weather/project.godot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pirachute/godot-weather-2D/HEAD/weather/project.godot -------------------------------------------------------------------------------- /weather/scenes/sampleWeather.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pirachute/godot-weather-2D/HEAD/weather/scenes/sampleWeather.tscn -------------------------------------------------------------------------------- /weather/scenes/sampleWeatherCollider.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pirachute/godot-weather-2D/HEAD/weather/scenes/sampleWeatherCollider.tscn -------------------------------------------------------------------------------- /weather/scenes/sampleWeatherUI.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pirachute/godot-weather-2D/HEAD/weather/scenes/sampleWeatherUI.tscn -------------------------------------------------------------------------------- /weather/src/Weather.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pirachute/godot-weather-2D/HEAD/weather/src/Weather.gd -------------------------------------------------------------------------------- /weather/src/WeatherCollider.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pirachute/godot-weather-2D/HEAD/weather/src/WeatherCollider.gd -------------------------------------------------------------------------------- /weather/src/WeatherUI.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pirachute/godot-weather-2D/HEAD/weather/src/WeatherUI.gd -------------------------------------------------------------------------------- /weather/src/weather.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pirachute/godot-weather-2D/HEAD/weather/src/weather.tscn -------------------------------------------------------------------------------- /weather/src/weatherCollider.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pirachute/godot-weather-2D/HEAD/weather/src/weatherCollider.tscn -------------------------------------------------------------------------------- /weather/src/weatherUI.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pirachute/godot-weather-2D/HEAD/weather/src/weatherUI.tscn --------------------------------------------------------------------------------