├── .gitignore ├── LICENSE ├── README.md ├── __init__.py ├── demo.gif ├── examples └── abb │ ├── irb4600-40.blend │ └── irb4600-40.json └── export_webots.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberbotics/blender-webots-exporter/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberbotics/blender-webots-exporter/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberbotics/blender-webots-exporter/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberbotics/blender-webots-exporter/HEAD/__init__.py -------------------------------------------------------------------------------- /demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberbotics/blender-webots-exporter/HEAD/demo.gif -------------------------------------------------------------------------------- /examples/abb/irb4600-40.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberbotics/blender-webots-exporter/HEAD/examples/abb/irb4600-40.blend -------------------------------------------------------------------------------- /examples/abb/irb4600-40.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberbotics/blender-webots-exporter/HEAD/examples/abb/irb4600-40.json -------------------------------------------------------------------------------- /export_webots.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberbotics/blender-webots-exporter/HEAD/export_webots.py --------------------------------------------------------------------------------