feat: update submodule

feat: hide uuid
This commit is contained in:
Swann
2020-06-09 18:02:53 +02:00
parent 8d040cc304
commit fdc7e4678c
2 changed files with 4 additions and 2 deletions

View File

@ -80,7 +80,9 @@ def register():
bpy.types.WindowManager.session = bpy.props.PointerProperty(
type=preferences.SessionProps)
bpy.types.ID.uuid = bpy.props.StringProperty(default="")
bpy.types.ID.uuid = bpy.props.StringProperty(
default="",
options={'HIDDEN', 'SKIP_SAVE'})
bpy.types.WindowManager.online_users = bpy.props.CollectionProperty(
type=preferences.SessionUser
)