[Bf-extensions-cvs] [de360f1d] xr-actions-D9124: Improve action set / action name description.

Peter Kim noreply at git.blender.org
Tue Oct 13 14:46:55 CEST 2020


Commit: de360f1de9c5e820d741a6388758a4dd44c7c3c9
Author: Peter Kim
Date:   Sun Oct 11 16:26:57 2020 +0900
Branches: xr-actions-D9124
https://developer.blender.org/rBAde360f1de9c5e820d741a6388758a4dd44c7c3c9

Improve action set / action name description.

===================================================================

M	viewport_vr_preview.py

===================================================================

diff --git a/viewport_vr_preview.py b/viewport_vr_preview.py
index f1c5d908..349cc658 100644
--- a/viewport_vr_preview.py
+++ b/viewport_vr_preview.py
@@ -354,7 +354,7 @@ class VIEW3D_MT_action_menu(Menu):
 
 class VRActionSet(PropertyGroup):
     name: bpy.props.StringProperty(
-        name="VR action set",
+        name="VR action set.\nMust not contain upper case letters or special characters other than '-', '_', or '.'",
         default="action_set",
     )
     profile: bpy.props.StringProperty(
@@ -364,7 +364,7 @@ class VRActionSet(PropertyGroup):
 
 class VRAction(PropertyGroup):
     name: bpy.props.StringProperty(
-        name="VR action",
+        name="VR action.\nMust not contain upper case letters or special characters other than '-', '_', or '.'",
         default="action",
     )
     type: bpy.props.EnumProperty(



More information about the Bf-extensions-cvs mailing list