├── Game.gd ├── Game.tscn ├── LICENSE.md ├── README.md ├── anvil.aseprite ├── anvil.png ├── anvil.png.import ├── default_env.tres ├── hit.wav ├── hit.wav.import ├── icon.png ├── icon.png.import ├── preview.gif ├── project.godot └── shake.gd /Game.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jotson/camera_shake_tutorial/HEAD/Game.gd -------------------------------------------------------------------------------- /Game.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jotson/camera_shake_tutorial/HEAD/Game.tscn -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jotson/camera_shake_tutorial/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jotson/camera_shake_tutorial/HEAD/README.md -------------------------------------------------------------------------------- /anvil.aseprite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jotson/camera_shake_tutorial/HEAD/anvil.aseprite -------------------------------------------------------------------------------- /anvil.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jotson/camera_shake_tutorial/HEAD/anvil.png -------------------------------------------------------------------------------- /anvil.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jotson/camera_shake_tutorial/HEAD/anvil.png.import -------------------------------------------------------------------------------- /default_env.tres: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jotson/camera_shake_tutorial/HEAD/default_env.tres -------------------------------------------------------------------------------- /hit.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jotson/camera_shake_tutorial/HEAD/hit.wav -------------------------------------------------------------------------------- /hit.wav.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jotson/camera_shake_tutorial/HEAD/hit.wav.import -------------------------------------------------------------------------------- /icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jotson/camera_shake_tutorial/HEAD/icon.png -------------------------------------------------------------------------------- /icon.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jotson/camera_shake_tutorial/HEAD/icon.png.import -------------------------------------------------------------------------------- /preview.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jotson/camera_shake_tutorial/HEAD/preview.gif -------------------------------------------------------------------------------- /project.godot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jotson/camera_shake_tutorial/HEAD/project.godot -------------------------------------------------------------------------------- /shake.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jotson/camera_shake_tutorial/HEAD/shake.gd --------------------------------------------------------------------------------