doc: added missing fields

feat: changed session widget defaults
This commit is contained in:
Swann 2020-10-22 16:07:19 +02:00
parent 3573db0969
commit f90c12b27f
No known key found for this signature in database
GPG Key ID: E1D3641A7C43AACB
5 changed files with 11 additions and 3 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 9.7 KiB

After

Width:  |  Height:  |  Size: 12 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 70 KiB

View File

@ -251,6 +251,14 @@ it draw users related information in your viewport such as:
The presence overlay panel (see image above) allow you to enable/disable
various drawn parts via the following flags:
- **Show session statut**: display the session status in the viewport
.. figure:: img/quickstart_status.png
:align: center
- **Text scale**: session status text size
- **Vertical/Horizontal position**: session position in the viewport
- **Show selected objects**: display other users current selection
- **Show users**: display users current viewpoint
- **Show different scenes**: display users working on other scenes

View File

@ -19,7 +19,7 @@
bl_info = {
"name": "Multi-User",
"author": "Swann Martinez",
"version": (0, 1, 1),
"version": (0, 2, 0),
"description": "Enable real-time collaborative workflow inside blender",
"blender": (2, 82, 0),
"location": "3D View > Sidebar > Multi-User tab",

View File

@ -250,7 +250,7 @@ class SessionPrefs(bpy.types.AddonPreferences):
description="Adjust the session widget horizontal position",
min=1,
max=90,
default=10,
default=3,
step=1,
subtype='PERCENTAGE',
)
@ -259,7 +259,7 @@ class SessionPrefs(bpy.types.AddonPreferences):
description="Adjust the session widget vertical position",
min=1,
max=94,
default=10,
default=1,
step=1,
subtype='PERCENTAGE',
)