doc: added missing fields
feat: changed session widget defaults
This commit is contained in:
parent
3573db0969
commit
f90c12b27f
Binary file not shown.
Before Width: | Height: | Size: 9.7 KiB After Width: | Height: | Size: 12 KiB |
BIN
docs/getting_started/img/quickstart_status.png
Normal file
BIN
docs/getting_started/img/quickstart_status.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 70 KiB |
@ -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
|
||||
|
@ -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",
|
||||
|
@ -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',
|
||||
)
|
||||
|
Loading…
Reference in New Issue
Block a user