2019-09-30 18:47:03 +00:00
# MULTI-USER for blender
2019-09-26 16:13:50 +02:00
> Enable real-time collaborative workflow inside blender
2019-09-26 17:16:19 +02:00
:warning: Under development, use it at your own risks. Currently tested on Windows platform. :warning:
2019-09-27 16:26:57 +02:00
This tool aims to allow multiple users to work on the same scene over the network. Based on a Clients / Server architecture, the data-oriented replication schema replicate blender datablocks across the wire.
2019-09-26 16:13:50 +02:00
## Installation
2019-09-30 16:43:59 +00:00
1. Download lastest release [here ](/uploads/324f7d5dc4b18bb922168264809340d8/multi-user.zip ).
2019-09-26 16:13:50 +02:00
2. Install last_version.zip from your addon preferences
## Usage
2019-09-30 20:05:52 +00:00
See [how to ](https://gitlab.com/slumber/multi-user/wikis/User/Quickstart ) section.
2019-09-26 16:13:50 +02:00
## Current development statut
2019-10-01 09:13:43 +00:00
Currently, not all datablock are supported for replication over the wire. The following list summarizes the status for each ones.
2019-09-26 16:13:50 +02:00
2019-09-26 17:16:19 +02:00
| Name | Statut | Comment |
| ---------- | :----------------: | :--------: |
| action | :x: | WIP |
| armature | :x: | WIP |
| camera | :white_check_mark: | |
| collection | :white_check_mark: | |
| curve | :white_check_mark: | Not tested |
| gpencil | :white_check_mark: | |
2019-09-30 21:59:53 +00:00
| image | :exclamation: | Not stable yet |
2019-09-26 17:16:19 +02:00
| mesh | :white_check_mark: | |
| material | :white_check_mark: | |
| metaball | :x: | |
| object | :white_check_mark: | |
| scene | :white_check_mark: | |
| world | :white_check_mark: | |
### Performance issues
Since this addon is writen in pure python for a prototyping purpose, perfomance could be better from all perspective. Soon I will start to port the multi-user addon concept to a blender branch.
2019-09-26 16:00:26 +02:00
2019-01-24 11:49:44 +01:00
## Dependencies
2019-07-01 16:03:40 +02:00
| Dependencies | Version | Needed |
2019-09-26 16:00:26 +02:00
| ------------ | :-----: | -----: |
2019-07-01 16:03:40 +02:00
| ZeroMQ | latest | yes |
2019-09-26 16:00:26 +02:00
| msgpack | latest | yes |
2019-07-01 16:03:40 +02:00
| PyYAML | latest | yes |
2019-09-30 18:49:30 +00:00
| JsonDiff | latest | yes |
2019-08-12 15:29:16 +02:00
2019-09-26 16:00:26 +02:00
2019-08-12 15:29:16 +02:00
## Contributing
1. Fork it (< https: // gitlab . com / yourname / yourproject / fork > )
2. Create your feature branch (`git checkout -b feature/fooBar`)
3. Commit your changes (`git commit -am 'Add some fooBar'`)
4. Push to the branch (`git push origin feature/fooBar`)
2019-09-26 17:16:19 +02:00
5. Create a new Pull Request
2019-09-30 18:47:03 +00:00
## Licencing
2019-09-30 18:48:07 +00:00
See [licence ](LICENSE )
2019-09-30 18:47:03 +00:00