diff --git a/docs/getting_started/img/quickstart_presence.png b/docs/getting_started/img/quickstart_presence.png index 771ca9f..cc39bb0 100644 Binary files a/docs/getting_started/img/quickstart_presence.png and b/docs/getting_started/img/quickstart_presence.png differ diff --git a/docs/getting_started/img/quickstart_status.png b/docs/getting_started/img/quickstart_status.png new file mode 100644 index 0000000..0a66d56 Binary files /dev/null and b/docs/getting_started/img/quickstart_status.png differ diff --git a/docs/getting_started/quickstart.rst b/docs/getting_started/quickstart.rst index 2f99140..dae7346 100644 --- a/docs/getting_started/quickstart.rst +++ b/docs/getting_started/quickstart.rst @@ -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 diff --git a/multi_user/__init__.py b/multi_user/__init__.py index 6a9309a..0b76f90 100644 --- a/multi_user/__init__.py +++ b/multi_user/__init__.py @@ -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", diff --git a/multi_user/preferences.py b/multi_user/preferences.py index 6a82870..b86c791 100644 --- a/multi_user/preferences.py +++ b/multi_user/preferences.py @@ -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', )