├── .gitignore ├── LICENSE ├── README.md ├── Release log.txt ├── Tuto ├── Blender Bone Shake.gif ├── Blender Camera Shake.gif ├── Blender Make Object Shake - 2.8.gif ├── InstallationScreen1.jpg ├── InstallationScreen2.jpg ├── InstallationScreen3.jpg └── Make Object Shake Featured Image.jpg ├── docs └── Examples │ └── Shake.blend └── make-object-shake └── __init__.py /.gitignore: -------------------------------------------------------------------------------- 1 | make-object-shake.zip 2 | .vscode/ 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xavier150/Make-Object-Shake/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xavier150/Make-Object-Shake/HEAD/README.md -------------------------------------------------------------------------------- /Release log.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xavier150/Make-Object-Shake/HEAD/Release log.txt -------------------------------------------------------------------------------- /Tuto/Blender Bone Shake.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xavier150/Make-Object-Shake/HEAD/Tuto/Blender Bone Shake.gif -------------------------------------------------------------------------------- /Tuto/Blender Camera Shake.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xavier150/Make-Object-Shake/HEAD/Tuto/Blender Camera Shake.gif -------------------------------------------------------------------------------- /Tuto/Blender Make Object Shake - 2.8.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xavier150/Make-Object-Shake/HEAD/Tuto/Blender Make Object Shake - 2.8.gif -------------------------------------------------------------------------------- /Tuto/InstallationScreen1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xavier150/Make-Object-Shake/HEAD/Tuto/InstallationScreen1.jpg -------------------------------------------------------------------------------- /Tuto/InstallationScreen2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xavier150/Make-Object-Shake/HEAD/Tuto/InstallationScreen2.jpg -------------------------------------------------------------------------------- /Tuto/InstallationScreen3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xavier150/Make-Object-Shake/HEAD/Tuto/InstallationScreen3.jpg -------------------------------------------------------------------------------- /Tuto/Make Object Shake Featured Image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xavier150/Make-Object-Shake/HEAD/Tuto/Make Object Shake Featured Image.jpg -------------------------------------------------------------------------------- /docs/Examples/Shake.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xavier150/Make-Object-Shake/HEAD/docs/Examples/Shake.blend -------------------------------------------------------------------------------- /make-object-shake/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xavier150/Make-Object-Shake/HEAD/make-object-shake/__init__.py --------------------------------------------------------------------------------