feat: readme

This commit is contained in:
Swann Martinez 2019-09-30 16:52:05 +02:00
parent 55250741b1
commit 28d5b684ef
No known key found for this signature in database
GPG Key ID: 414CCAFD8DA720E1
5 changed files with 17 additions and 6 deletions

View File

@ -4,7 +4,6 @@
:warning: Under development, use it at your own risks. Currently tested on Windows platform. :warning:
![settings](medias/connexion.gif)
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.
@ -19,13 +18,25 @@ Settings are under: `View3D -> Sidebar -> Multiuser`
![settings](medias/settings.png)
| Host | Join |
| :---: | :---: |
| ![host_panel](medias/host.png) | ![join_panel](medias/join.png) |
| Start empty: Cleanup the file before starting to host | IP: host ip |
| | Port: host port |
### Host a session
:warning: If you host a session over internet, special network configuration is needed :warning:
todo
![host_panel](medias/host.png)
- Start empty: Cleanup the file before starting to host
### Join a session
todo
![join_panel](medias/join.png)
- IP: host ip
- Port: host port
## Current development statut

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.9 MiB

BIN
medias/host.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.9 KiB

BIN
medias/join.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.5 KiB

6
ui.py
View File

@ -77,9 +77,9 @@ class SESSION_PT_settings_network(bpy.types.Panel):
row = box.row()
row.label(text="Start empty:")
row.prop(settings, "start_empty", text="")
row = box.row()
row.label(text="Init scene:")
row.prop(settings, "init_scene", text="")
# row = box.row()
# row.label(text="Init scene:")
# row.prop(settings, "init_scene", text="")
row = box.row()
row.operator("session.start", text="HOST").host = True
else: