├── .gitignore ├── LICENSE.md ├── README.md ├── assets └── maujoe.simple_wind_shader │ ├── Docs.md │ ├── LICENSE.md │ ├── README.md │ ├── demo │ ├── default_env.tres │ ├── demo.tscn │ ├── materials │ │ ├── grass_spatial.tres │ │ ├── grass_wind_1.0.tres │ │ ├── grass_wind_1.1.tres │ │ └── grass_wind_1.1_alpha_scissor.tres │ ├── models │ │ ├── .fuse_hidden0009393400000002 │ │ ├── grass.dae │ │ ├── grass.dae.import │ │ ├── grass_mesh.tscn │ │ ├── grass_render.material │ │ ├── ground.dae │ │ ├── ground.dae.import │ │ ├── ground.material │ │ └── ground.tscn │ ├── scripts │ │ ├── LICENSE.md │ │ ├── camera_control.gd │ │ └── camera_control_gui.gd │ └── textures │ │ ├── grass.png │ │ ├── grass.png.import │ │ ├── ground_normal.png │ │ └── ground_normal.png.import │ ├── icon.png │ ├── icon.png.import │ ├── screenshots │ ├── editor_settings.png │ ├── editor_settings.png.import │ ├── preview.png │ └── preview.png.import │ └── shaders │ ├── wind_shader_port.tres │ ├── wind_shader_v1.0.tres │ ├── wind_shader_v1.1.tres │ └── wind_shader_v1.1_alpha_scissor.tres └── project.godot /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaccomoLorenz/godot-simple-wind-shader/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaccomoLorenz/godot-simple-wind-shader/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaccomoLorenz/godot-simple-wind-shader/HEAD/README.md -------------------------------------------------------------------------------- /assets/maujoe.simple_wind_shader/Docs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaccomoLorenz/godot-simple-wind-shader/HEAD/assets/maujoe.simple_wind_shader/Docs.md -------------------------------------------------------------------------------- /assets/maujoe.simple_wind_shader/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaccomoLorenz/godot-simple-wind-shader/HEAD/assets/maujoe.simple_wind_shader/LICENSE.md -------------------------------------------------------------------------------- /assets/maujoe.simple_wind_shader/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaccomoLorenz/godot-simple-wind-shader/HEAD/assets/maujoe.simple_wind_shader/README.md -------------------------------------------------------------------------------- /assets/maujoe.simple_wind_shader/demo/default_env.tres: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaccomoLorenz/godot-simple-wind-shader/HEAD/assets/maujoe.simple_wind_shader/demo/default_env.tres -------------------------------------------------------------------------------- /assets/maujoe.simple_wind_shader/demo/demo.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaccomoLorenz/godot-simple-wind-shader/HEAD/assets/maujoe.simple_wind_shader/demo/demo.tscn -------------------------------------------------------------------------------- /assets/maujoe.simple_wind_shader/demo/materials/grass_spatial.tres: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaccomoLorenz/godot-simple-wind-shader/HEAD/assets/maujoe.simple_wind_shader/demo/materials/grass_spatial.tres -------------------------------------------------------------------------------- /assets/maujoe.simple_wind_shader/demo/materials/grass_wind_1.0.tres: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaccomoLorenz/godot-simple-wind-shader/HEAD/assets/maujoe.simple_wind_shader/demo/materials/grass_wind_1.0.tres -------------------------------------------------------------------------------- /assets/maujoe.simple_wind_shader/demo/materials/grass_wind_1.1.tres: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaccomoLorenz/godot-simple-wind-shader/HEAD/assets/maujoe.simple_wind_shader/demo/materials/grass_wind_1.1.tres -------------------------------------------------------------------------------- /assets/maujoe.simple_wind_shader/demo/materials/grass_wind_1.1_alpha_scissor.tres: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaccomoLorenz/godot-simple-wind-shader/HEAD/assets/maujoe.simple_wind_shader/demo/materials/grass_wind_1.1_alpha_scissor.tres -------------------------------------------------------------------------------- /assets/maujoe.simple_wind_shader/demo/models/.fuse_hidden0009393400000002: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaccomoLorenz/godot-simple-wind-shader/HEAD/assets/maujoe.simple_wind_shader/demo/models/.fuse_hidden0009393400000002 -------------------------------------------------------------------------------- /assets/maujoe.simple_wind_shader/demo/models/grass.dae: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaccomoLorenz/godot-simple-wind-shader/HEAD/assets/maujoe.simple_wind_shader/demo/models/grass.dae -------------------------------------------------------------------------------- /assets/maujoe.simple_wind_shader/demo/models/grass.dae.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaccomoLorenz/godot-simple-wind-shader/HEAD/assets/maujoe.simple_wind_shader/demo/models/grass.dae.import -------------------------------------------------------------------------------- /assets/maujoe.simple_wind_shader/demo/models/grass_mesh.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaccomoLorenz/godot-simple-wind-shader/HEAD/assets/maujoe.simple_wind_shader/demo/models/grass_mesh.tscn -------------------------------------------------------------------------------- /assets/maujoe.simple_wind_shader/demo/models/grass_render.material: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaccomoLorenz/godot-simple-wind-shader/HEAD/assets/maujoe.simple_wind_shader/demo/models/grass_render.material -------------------------------------------------------------------------------- /assets/maujoe.simple_wind_shader/demo/models/ground.dae: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaccomoLorenz/godot-simple-wind-shader/HEAD/assets/maujoe.simple_wind_shader/demo/models/ground.dae -------------------------------------------------------------------------------- /assets/maujoe.simple_wind_shader/demo/models/ground.dae.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaccomoLorenz/godot-simple-wind-shader/HEAD/assets/maujoe.simple_wind_shader/demo/models/ground.dae.import -------------------------------------------------------------------------------- /assets/maujoe.simple_wind_shader/demo/models/ground.material: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaccomoLorenz/godot-simple-wind-shader/HEAD/assets/maujoe.simple_wind_shader/demo/models/ground.material -------------------------------------------------------------------------------- /assets/maujoe.simple_wind_shader/demo/models/ground.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaccomoLorenz/godot-simple-wind-shader/HEAD/assets/maujoe.simple_wind_shader/demo/models/ground.tscn -------------------------------------------------------------------------------- /assets/maujoe.simple_wind_shader/demo/scripts/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaccomoLorenz/godot-simple-wind-shader/HEAD/assets/maujoe.simple_wind_shader/demo/scripts/LICENSE.md -------------------------------------------------------------------------------- /assets/maujoe.simple_wind_shader/demo/scripts/camera_control.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaccomoLorenz/godot-simple-wind-shader/HEAD/assets/maujoe.simple_wind_shader/demo/scripts/camera_control.gd -------------------------------------------------------------------------------- /assets/maujoe.simple_wind_shader/demo/scripts/camera_control_gui.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaccomoLorenz/godot-simple-wind-shader/HEAD/assets/maujoe.simple_wind_shader/demo/scripts/camera_control_gui.gd -------------------------------------------------------------------------------- /assets/maujoe.simple_wind_shader/demo/textures/grass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaccomoLorenz/godot-simple-wind-shader/HEAD/assets/maujoe.simple_wind_shader/demo/textures/grass.png -------------------------------------------------------------------------------- /assets/maujoe.simple_wind_shader/demo/textures/grass.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaccomoLorenz/godot-simple-wind-shader/HEAD/assets/maujoe.simple_wind_shader/demo/textures/grass.png.import -------------------------------------------------------------------------------- /assets/maujoe.simple_wind_shader/demo/textures/ground_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaccomoLorenz/godot-simple-wind-shader/HEAD/assets/maujoe.simple_wind_shader/demo/textures/ground_normal.png -------------------------------------------------------------------------------- /assets/maujoe.simple_wind_shader/demo/textures/ground_normal.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaccomoLorenz/godot-simple-wind-shader/HEAD/assets/maujoe.simple_wind_shader/demo/textures/ground_normal.png.import -------------------------------------------------------------------------------- /assets/maujoe.simple_wind_shader/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaccomoLorenz/godot-simple-wind-shader/HEAD/assets/maujoe.simple_wind_shader/icon.png -------------------------------------------------------------------------------- /assets/maujoe.simple_wind_shader/icon.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaccomoLorenz/godot-simple-wind-shader/HEAD/assets/maujoe.simple_wind_shader/icon.png.import -------------------------------------------------------------------------------- /assets/maujoe.simple_wind_shader/screenshots/editor_settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaccomoLorenz/godot-simple-wind-shader/HEAD/assets/maujoe.simple_wind_shader/screenshots/editor_settings.png -------------------------------------------------------------------------------- /assets/maujoe.simple_wind_shader/screenshots/editor_settings.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaccomoLorenz/godot-simple-wind-shader/HEAD/assets/maujoe.simple_wind_shader/screenshots/editor_settings.png.import -------------------------------------------------------------------------------- /assets/maujoe.simple_wind_shader/screenshots/preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaccomoLorenz/godot-simple-wind-shader/HEAD/assets/maujoe.simple_wind_shader/screenshots/preview.png -------------------------------------------------------------------------------- /assets/maujoe.simple_wind_shader/screenshots/preview.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaccomoLorenz/godot-simple-wind-shader/HEAD/assets/maujoe.simple_wind_shader/screenshots/preview.png.import -------------------------------------------------------------------------------- /assets/maujoe.simple_wind_shader/shaders/wind_shader_port.tres: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaccomoLorenz/godot-simple-wind-shader/HEAD/assets/maujoe.simple_wind_shader/shaders/wind_shader_port.tres -------------------------------------------------------------------------------- /assets/maujoe.simple_wind_shader/shaders/wind_shader_v1.0.tres: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaccomoLorenz/godot-simple-wind-shader/HEAD/assets/maujoe.simple_wind_shader/shaders/wind_shader_v1.0.tres -------------------------------------------------------------------------------- /assets/maujoe.simple_wind_shader/shaders/wind_shader_v1.1.tres: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaccomoLorenz/godot-simple-wind-shader/HEAD/assets/maujoe.simple_wind_shader/shaders/wind_shader_v1.1.tres -------------------------------------------------------------------------------- /assets/maujoe.simple_wind_shader/shaders/wind_shader_v1.1_alpha_scissor.tres: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaccomoLorenz/godot-simple-wind-shader/HEAD/assets/maujoe.simple_wind_shader/shaders/wind_shader_v1.1_alpha_scissor.tres -------------------------------------------------------------------------------- /project.godot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaccomoLorenz/godot-simple-wind-shader/HEAD/project.godot --------------------------------------------------------------------------------