fake-bpy-module 20240429__py3-none-any.whl → 20240501__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of fake-bpy-module might be problematic. Click here for more details.

@@ -1455,6 +1455,9 @@ class _defs_sculpt:
1455
1455
  hide_line: typing.Any
1456
1456
  """ """
1457
1457
 
1458
+ hide_polyline: typing.Any
1459
+ """ """
1460
+
1458
1461
  mask_border: typing.Any
1459
1462
  """ """
1460
1463
 
@@ -16763,6 +16763,187 @@ class VIEW3D_MT_greasepencil_material_active(bpy_types.Menu, bpy_types._GenericU
16763
16763
  """ """
16764
16764
  ...
16765
16765
 
16766
+ class VIEW3D_MT_greasepencil_vertex_group(bpy_types.Menu, bpy_types._GenericUI):
16767
+ """ """
16768
+
16769
+ bl_label: typing.Any
16770
+ """ """
16771
+
16772
+ bl_rna: typing.Any
16773
+ """ """
16774
+
16775
+ id_data: typing.Any
16776
+ """ """
16777
+
16778
+ def append(self, draw_func):
16779
+ """
16780
+
16781
+ :param draw_func:
16782
+ """
16783
+ ...
16784
+
16785
+ def as_pointer(self):
16786
+ """ """
16787
+ ...
16788
+
16789
+ def bl_rna_get_subclass(self):
16790
+ """ """
16791
+ ...
16792
+
16793
+ def bl_rna_get_subclass_py(self):
16794
+ """ """
16795
+ ...
16796
+
16797
+ def draw(self, context):
16798
+ """
16799
+
16800
+ :param context:
16801
+ """
16802
+ ...
16803
+
16804
+ def draw_collapsible(self, context, layout):
16805
+ """
16806
+
16807
+ :param context:
16808
+ :param layout:
16809
+ """
16810
+ ...
16811
+
16812
+ def draw_preset(self, _context):
16813
+ """
16814
+
16815
+ :param _context:
16816
+ """
16817
+ ...
16818
+
16819
+ def driver_add(self):
16820
+ """ """
16821
+ ...
16822
+
16823
+ def driver_remove(self):
16824
+ """ """
16825
+ ...
16826
+
16827
+ def get(self):
16828
+ """ """
16829
+ ...
16830
+
16831
+ def id_properties_clear(self):
16832
+ """ """
16833
+ ...
16834
+
16835
+ def id_properties_ensure(self):
16836
+ """ """
16837
+ ...
16838
+
16839
+ def id_properties_ui(self):
16840
+ """ """
16841
+ ...
16842
+
16843
+ def is_extended(self):
16844
+ """ """
16845
+ ...
16846
+
16847
+ def is_property_hidden(self):
16848
+ """ """
16849
+ ...
16850
+
16851
+ def is_property_overridable_library(self):
16852
+ """ """
16853
+ ...
16854
+
16855
+ def is_property_readonly(self):
16856
+ """ """
16857
+ ...
16858
+
16859
+ def is_property_set(self):
16860
+ """ """
16861
+ ...
16862
+
16863
+ def items(self):
16864
+ """ """
16865
+ ...
16866
+
16867
+ def keyframe_delete(self):
16868
+ """ """
16869
+ ...
16870
+
16871
+ def keyframe_insert(self):
16872
+ """ """
16873
+ ...
16874
+
16875
+ def keys(self):
16876
+ """ """
16877
+ ...
16878
+
16879
+ def path_from_id(self):
16880
+ """ """
16881
+ ...
16882
+
16883
+ def path_menu(
16884
+ self,
16885
+ searchpaths,
16886
+ operator,
16887
+ props_default,
16888
+ prop_filepath,
16889
+ filter_ext,
16890
+ filter_path,
16891
+ display_name,
16892
+ add_operator,
16893
+ add_operator_props,
16894
+ ):
16895
+ """
16896
+
16897
+ :param searchpaths:
16898
+ :param operator:
16899
+ :param props_default:
16900
+ :param prop_filepath:
16901
+ :param filter_ext:
16902
+ :param filter_path:
16903
+ :param display_name:
16904
+ :param add_operator:
16905
+ :param add_operator_props:
16906
+ """
16907
+ ...
16908
+
16909
+ def path_resolve(self):
16910
+ """ """
16911
+ ...
16912
+
16913
+ def pop(self):
16914
+ """ """
16915
+ ...
16916
+
16917
+ def prepend(self, draw_func):
16918
+ """
16919
+
16920
+ :param draw_func:
16921
+ """
16922
+ ...
16923
+
16924
+ def property_overridable_library_set(self):
16925
+ """ """
16926
+ ...
16927
+
16928
+ def property_unset(self):
16929
+ """ """
16930
+ ...
16931
+
16932
+ def remove(self, draw_func):
16933
+ """
16934
+
16935
+ :param draw_func:
16936
+ """
16937
+ ...
16938
+
16939
+ def type_recast(self):
16940
+ """ """
16941
+ ...
16942
+
16943
+ def values(self):
16944
+ """ """
16945
+ ...
16946
+
16766
16947
  class VIEW3D_MT_hook(bpy_types.Menu, bpy_types._GenericUI):
16767
16948
  """ """
16768
16949
 
bpy/ops/anim/__init__.pyi CHANGED
@@ -3,6 +3,20 @@ import bpy.types
3
3
 
4
4
  GenericType = typing.TypeVar("GenericType")
5
5
 
6
+ def binding_unassign_object(
7
+ override_context: typing.Optional[typing.Union[dict, bpy.types.Context]] = None,
8
+ execution_context: typing.Optional[typing.Union[str, int]] = None,
9
+ undo: typing.Optional[bool] = None,
10
+ ):
11
+ """Clear the assigned animation binding, effectively making this data-block non-animated
12
+
13
+ :type override_context: typing.Optional[typing.Union[dict, bpy.types.Context]]
14
+ :type execution_context: typing.Optional[typing.Union[str, int]]
15
+ :type undo: typing.Optional[bool]
16
+ """
17
+
18
+ ...
19
+
6
20
  def change_frame(
7
21
  override_context: typing.Optional[typing.Union[dict, bpy.types.Context]] = None,
8
22
  execution_context: typing.Optional[typing.Union[str, int]] = None,
@@ -20,12 +20,12 @@ def fbx(
20
20
  use_space_transform: typing.Optional[typing.Union[bool, typing.Any]] = True,
21
21
  bake_space_transform: typing.Optional[typing.Union[bool, typing.Any]] = False,
22
22
  object_types: typing.Optional[typing.Any] = {
23
- '"CAMERA"',
24
- '"OTHER"',
25
23
  '"EMPTY"',
24
+ '"ARMATURE"',
26
25
  '"MESH"',
26
+ '"OTHER"',
27
27
  '"LIGHT"',
28
- '"ARMATURE"',
28
+ '"CAMERA"',
29
29
  },
30
30
  use_mesh_modifiers: typing.Optional[typing.Union[bool, typing.Any]] = True,
31
31
  use_mesh_modifiers_render: typing.Optional[typing.Union[bool, typing.Any]] = True,
@@ -310,6 +310,7 @@ def gltf(
310
310
  export_frame_range: typing.Optional[typing.Union[bool, typing.Any]] = False,
311
311
  export_frame_step: typing.Optional[typing.Any] = 1,
312
312
  export_force_sampling: typing.Optional[typing.Union[bool, typing.Any]] = True,
313
+ export_pointer_animation: typing.Optional[typing.Union[bool, typing.Any]] = False,
313
314
  export_animation_mode: typing.Optional[typing.Any] = "ACTIONS",
314
315
  export_nla_strips_merged_animation_name: typing.Union[
315
316
  str, typing.Any
@@ -362,6 +363,9 @@ def gltf(
362
363
  export_try_omit_sparse_sk: typing.Optional[typing.Union[bool, typing.Any]] = False,
363
364
  export_gpu_instances: typing.Optional[typing.Union[bool, typing.Any]] = False,
364
365
  export_action_filter: typing.Optional[typing.Union[bool, typing.Any]] = False,
366
+ export_convert_animation_pointer: typing.Optional[
367
+ typing.Union[bool, typing.Any]
368
+ ] = False,
365
369
  export_nla_strips: typing.Optional[typing.Union[bool, typing.Any]] = True,
366
370
  export_original_specular: typing.Optional[typing.Union[bool, typing.Any]] = False,
367
371
  will_save_settings: typing.Optional[typing.Union[bool, typing.Any]] = False,
@@ -547,6 +551,8 @@ def gltf(
547
551
  :type export_frame_step: typing.Optional[typing.Any]
548
552
  :param export_force_sampling: Always Sample Animations, Apply sampling to all animations
549
553
  :type export_force_sampling: typing.Optional[typing.Union[bool, typing.Any]]
554
+ :param export_pointer_animation: Export Animation Pointer (Experimental), Export material, Light & Camera animation as Animation Pointer.
555
+ :type export_pointer_animation: typing.Optional[typing.Union[bool, typing.Any]]
550
556
  :param export_animation_mode: Animation mode, Export Animation mode
551
557
 
552
558
  ACTIONS
@@ -632,6 +638,8 @@ def gltf(
632
638
  :type export_gpu_instances: typing.Optional[typing.Union[bool, typing.Any]]
633
639
  :param export_action_filter: Filter Actions, Filter Actions to be exported
634
640
  :type export_action_filter: typing.Optional[typing.Union[bool, typing.Any]]
641
+ :param export_convert_animation_pointer: Convert TRS/weights to Animation Pointer, Export TRS and weights as Animation Pointer. Using KHR_animation_pointer extension
642
+ :type export_convert_animation_pointer: typing.Optional[typing.Union[bool, typing.Any]]
635
643
  :param export_nla_strips: Group by NLA Track, When on, multiple actions become part of the same glTF animation if they're pushed onto NLA tracks with the same name. When off, all the currently assigned actions become one glTF animation
636
644
  :type export_nla_strips: typing.Optional[typing.Union[bool, typing.Any]]
637
645
  :param export_original_specular: Export original PBR Specular, Export original glTF PBR Specular, instead of Blender Principled Shader Specular
bpy/ops/nla/__init__.pyi CHANGED
@@ -102,10 +102,10 @@ def bake(
102
102
  bake_types: typing.Optional[typing.Any] = {'"POSE"'},
103
103
  channel_types: typing.Optional[typing.Any] = {
104
104
  '"LOCATION"',
105
- '"BBONE"',
106
- '"ROTATION"',
107
105
  '"SCALE"',
106
+ '"ROTATION"',
108
107
  '"PROPS"',
108
+ '"BBONE"',
109
109
  },
110
110
  ):
111
111
  """Bake all selected objects location/scale/rotation animation to an action
bpy/ops/node/__init__.pyi CHANGED
@@ -439,7 +439,7 @@ def bake_node_item_add(
439
439
  execution_context: typing.Optional[typing.Union[str, int]] = None,
440
440
  undo: typing.Optional[bool] = None,
441
441
  ):
442
- """Add a bake item to the bake node
442
+ """Add bake item
443
443
 
444
444
  :type override_context: typing.Optional[typing.Union[dict, bpy.types.Context]]
445
445
  :type execution_context: typing.Optional[typing.Union[str, int]]
@@ -454,12 +454,12 @@ def bake_node_item_move(
454
454
  undo: typing.Optional[bool] = None,
455
455
  direction: typing.Optional[typing.Any] = "UP",
456
456
  ):
457
- """Move a bake item up or down in the list
457
+ """Move active bake item
458
458
 
459
459
  :type override_context: typing.Optional[typing.Union[dict, bpy.types.Context]]
460
460
  :type execution_context: typing.Optional[typing.Union[str, int]]
461
461
  :type undo: typing.Optional[bool]
462
- :param direction: Direction
462
+ :param direction: Direction, Move direction
463
463
  :type direction: typing.Optional[typing.Any]
464
464
  """
465
465
 
@@ -470,7 +470,7 @@ def bake_node_item_remove(
470
470
  execution_context: typing.Optional[typing.Union[str, int]] = None,
471
471
  undo: typing.Optional[bool] = None,
472
472
  ):
473
- """Remove a bake item from the bake node
473
+ """Remove active bake item
474
474
 
475
475
  :type override_context: typing.Optional[typing.Union[dict, bpy.types.Context]]
476
476
  :type execution_context: typing.Optional[typing.Union[str, int]]
@@ -730,7 +730,7 @@ def enum_definition_item_add(
730
730
  execution_context: typing.Optional[typing.Union[str, int]] = None,
731
731
  undo: typing.Optional[bool] = None,
732
732
  ):
733
- """Add an enum item to the definition
733
+ """Add menu item
734
734
 
735
735
  :type override_context: typing.Optional[typing.Union[dict, bpy.types.Context]]
736
736
  :type execution_context: typing.Optional[typing.Union[str, int]]
@@ -745,12 +745,12 @@ def enum_definition_item_move(
745
745
  undo: typing.Optional[bool] = None,
746
746
  direction: typing.Optional[typing.Any] = "UP",
747
747
  ):
748
- """Remove the selected enum item from the definition
748
+ """Move active menu item
749
749
 
750
750
  :type override_context: typing.Optional[typing.Union[dict, bpy.types.Context]]
751
751
  :type execution_context: typing.Optional[typing.Union[str, int]]
752
752
  :type undo: typing.Optional[bool]
753
- :param direction: Direction, Move up or down
753
+ :param direction: Direction, Move direction
754
754
  :type direction: typing.Optional[typing.Any]
755
755
  """
756
756
 
@@ -761,7 +761,7 @@ def enum_definition_item_remove(
761
761
  execution_context: typing.Optional[typing.Union[str, int]] = None,
762
762
  undo: typing.Optional[bool] = None,
763
763
  ):
764
- """Remove the selected enum item from the definition
764
+ """Remove active menu item
765
765
 
766
766
  :type override_context: typing.Optional[typing.Union[dict, bpy.types.Context]]
767
767
  :type execution_context: typing.Optional[typing.Union[str, int]]
@@ -913,7 +913,7 @@ def index_switch_item_add(
913
913
  execution_context: typing.Optional[typing.Union[str, int]] = None,
914
914
  undo: typing.Optional[bool] = None,
915
915
  ):
916
- """Add an item to the index switch
916
+ """Add bake item
917
917
 
918
918
  :type override_context: typing.Optional[typing.Union[dict, bpy.types.Context]]
919
919
  :type execution_context: typing.Optional[typing.Union[str, int]]
@@ -933,7 +933,7 @@ def index_switch_item_remove(
933
933
  :type override_context: typing.Optional[typing.Union[dict, bpy.types.Context]]
934
934
  :type execution_context: typing.Optional[typing.Union[str, int]]
935
935
  :type undo: typing.Optional[bool]
936
- :param index: Index, Index of item to remove
936
+ :param index: Index, Index to remove
937
937
  :type index: typing.Optional[typing.Any]
938
938
  """
939
939
 
@@ -1415,7 +1415,7 @@ def repeat_zone_item_add(
1415
1415
  execution_context: typing.Optional[typing.Union[str, int]] = None,
1416
1416
  undo: typing.Optional[bool] = None,
1417
1417
  ):
1418
- """Add a repeat item to the repeat zone
1418
+ """Add repeat zone item
1419
1419
 
1420
1420
  :type override_context: typing.Optional[typing.Union[dict, bpy.types.Context]]
1421
1421
  :type execution_context: typing.Optional[typing.Union[str, int]]
@@ -1430,12 +1430,12 @@ def repeat_zone_item_move(
1430
1430
  undo: typing.Optional[bool] = None,
1431
1431
  direction: typing.Optional[typing.Any] = "UP",
1432
1432
  ):
1433
- """Move a repeat item up or down in the list
1433
+ """Move active repeat zone item
1434
1434
 
1435
1435
  :type override_context: typing.Optional[typing.Union[dict, bpy.types.Context]]
1436
1436
  :type execution_context: typing.Optional[typing.Union[str, int]]
1437
1437
  :type undo: typing.Optional[bool]
1438
- :param direction: Direction
1438
+ :param direction: Direction, Move direction
1439
1439
  :type direction: typing.Optional[typing.Any]
1440
1440
  """
1441
1441
 
@@ -1446,7 +1446,7 @@ def repeat_zone_item_remove(
1446
1446
  execution_context: typing.Optional[typing.Union[str, int]] = None,
1447
1447
  undo: typing.Optional[bool] = None,
1448
1448
  ):
1449
- """Remove a repeat item from the repeat zone
1449
+ """Remove active repeat zone item
1450
1450
 
1451
1451
  :type override_context: typing.Optional[typing.Union[dict, bpy.types.Context]]
1452
1452
  :type execution_context: typing.Optional[typing.Union[str, int]]
@@ -1756,7 +1756,7 @@ def simulation_zone_item_add(
1756
1756
  execution_context: typing.Optional[typing.Union[str, int]] = None,
1757
1757
  undo: typing.Optional[bool] = None,
1758
1758
  ):
1759
- """Add a state item to the simulation zone
1759
+ """Add simulation zone item
1760
1760
 
1761
1761
  :type override_context: typing.Optional[typing.Union[dict, bpy.types.Context]]
1762
1762
  :type execution_context: typing.Optional[typing.Union[str, int]]
@@ -1771,12 +1771,12 @@ def simulation_zone_item_move(
1771
1771
  undo: typing.Optional[bool] = None,
1772
1772
  direction: typing.Optional[typing.Any] = "UP",
1773
1773
  ):
1774
- """Move a simulation state item up or down in the list
1774
+ """Move active simulation zone item
1775
1775
 
1776
1776
  :type override_context: typing.Optional[typing.Union[dict, bpy.types.Context]]
1777
1777
  :type execution_context: typing.Optional[typing.Union[str, int]]
1778
1778
  :type undo: typing.Optional[bool]
1779
- :param direction: Direction
1779
+ :param direction: Direction, Move direction
1780
1780
  :type direction: typing.Optional[typing.Any]
1781
1781
  """
1782
1782
 
@@ -1787,7 +1787,7 @@ def simulation_zone_item_remove(
1787
1787
  execution_context: typing.Optional[typing.Union[str, int]] = None,
1788
1788
  undo: typing.Optional[bool] = None,
1789
1789
  ):
1790
- """Remove a state item from the simulation zone
1790
+ """Remove active simulation zone item
1791
1791
 
1792
1792
  :type override_context: typing.Optional[typing.Union[dict, bpy.types.Context]]
1793
1793
  :type execution_context: typing.Optional[typing.Union[str, int]]
@@ -482,6 +482,46 @@ def hide_show_masked(
482
482
 
483
483
  ...
484
484
 
485
+ def hide_show_polyline_gesture(
486
+ override_context: typing.Optional[typing.Union[dict, bpy.types.Context]] = None,
487
+ execution_context: typing.Optional[typing.Union[str, int]] = None,
488
+ undo: typing.Optional[bool] = None,
489
+ path: typing.Optional[
490
+ bpy.types.bpy_prop_collection[bpy.types.OperatorMousePath]
491
+ ] = None,
492
+ action: typing.Optional[typing.Any] = "HIDE",
493
+ area: typing.Optional[typing.Any] = "Inside",
494
+ use_front_faces_only: typing.Optional[typing.Union[bool, typing.Any]] = False,
495
+ ):
496
+ """Hide/show some vertices
497
+
498
+ :type override_context: typing.Optional[typing.Union[dict, bpy.types.Context]]
499
+ :type execution_context: typing.Optional[typing.Union[str, int]]
500
+ :type undo: typing.Optional[bool]
501
+ :param path: Path
502
+ :type path: typing.Optional[bpy.types.bpy_prop_collection[bpy.types.OperatorMousePath]]
503
+ :param action: Visibility Action, Whether to hide or show vertices
504
+
505
+ HIDE
506
+ Hide -- Hide vertices.
507
+
508
+ SHOW
509
+ Show -- Show vertices.
510
+ :type action: typing.Optional[typing.Any]
511
+ :param area: Visibility Area, Which vertices to hide or show
512
+
513
+ OUTSIDE
514
+ Outside -- Hide or show vertices outside the selection.
515
+
516
+ Inside
517
+ Inside -- Hide or show vertices inside the selection.
518
+ :type area: typing.Optional[typing.Any]
519
+ :param use_front_faces_only: Front Faces Only, Affect only faces facing towards the view
520
+ :type use_front_faces_only: typing.Optional[typing.Union[bool, typing.Any]]
521
+ """
522
+
523
+ ...
524
+
485
525
  def image_from_view(
486
526
  override_context: typing.Optional[typing.Union[dict, bpy.types.Context]] = None,
487
527
  execution_context: typing.Optional[typing.Union[str, int]] = None,
@@ -49,7 +49,7 @@ def cloth_filter(
49
49
  bpy.types.bpy_prop_collection[bpy.types.OperatorStrokeElement]
50
50
  ] = None,
51
51
  type: typing.Optional[typing.Any] = "GRAVITY",
52
- force_axis: typing.Optional[typing.Any] = {'"Z"', '"X"', '"Y"'},
52
+ force_axis: typing.Optional[typing.Any] = {'"Y"', '"X"', '"Z"'},
53
53
  orientation: typing.Optional[typing.Any] = "LOCAL",
54
54
  cloth_mass: typing.Optional[typing.Any] = 1.0,
55
55
  cloth_damping: typing.Optional[typing.Any] = 0.0,
@@ -603,7 +603,7 @@ def mesh_filter(
603
603
  bpy.types.bpy_prop_collection[bpy.types.OperatorStrokeElement]
604
604
  ] = None,
605
605
  type: typing.Optional[typing.Any] = "INFLATE",
606
- deform_axis: typing.Optional[typing.Any] = {'"Z"', '"X"', '"Y"'},
606
+ deform_axis: typing.Optional[typing.Any] = {'"Y"', '"X"', '"Z"'},
607
607
  orientation: typing.Optional[typing.Any] = "LOCAL",
608
608
  surface_smooth_shape_preservation: typing.Optional[typing.Any] = 0.5,
609
609
  surface_smooth_current_vertex: typing.Optional[typing.Any] = 0.5,
bpy/ops/ui/__init__.pyi CHANGED
@@ -79,6 +79,23 @@ def copy_data_path_button(
79
79
 
80
80
  ...
81
81
 
82
+ def copy_driver_to_selected_button(
83
+ override_context: typing.Optional[typing.Union[dict, bpy.types.Context]] = None,
84
+ execution_context: typing.Optional[typing.Union[str, int]] = None,
85
+ undo: typing.Optional[bool] = None,
86
+ all: typing.Optional[typing.Union[bool, typing.Any]] = False,
87
+ ):
88
+ """Copy the property's driver from the active item to the same property of all selected items, if the same property exists
89
+
90
+ :type override_context: typing.Optional[typing.Union[dict, bpy.types.Context]]
91
+ :type execution_context: typing.Optional[typing.Union[str, int]]
92
+ :type undo: typing.Optional[bool]
93
+ :param all: All, Copy to selected the drivers of all elements of the array
94
+ :type all: typing.Optional[typing.Union[bool, typing.Any]]
95
+ """
96
+
97
+ ...
98
+
82
99
  def copy_python_command_button(
83
100
  override_context: typing.Optional[typing.Union[dict, bpy.types.Context]] = None,
84
101
  execution_context: typing.Optional[typing.Union[str, int]] = None,
bpy/ops/wm/__init__.pyi CHANGED
@@ -5018,9 +5018,9 @@ def usd_export(
5018
5018
  :type relative_paths: typing.Optional[typing.Union[bool, typing.Any]]
5019
5019
  :param root_prim_path: Root Prim, If set, add a transform primitive with the given path to the stage as the parent of all exported data
5020
5020
  :type root_prim_path: typing.Union[str, typing.Any]
5021
- :param export_custom_properties: Export Custom Properties, When checked, custom properties will be exported as USD User Properties
5021
+ :param export_custom_properties: Custom Properties, Export custom properties as USD attributes in the 'userProperties' namespace
5022
5022
  :type export_custom_properties: typing.Optional[typing.Union[bool, typing.Any]]
5023
- :param author_blender_name: Author Blender Name, When checked, custom userProperties will be authored to allow a round trip
5023
+ :param author_blender_name: Blender Names, Author USD custom attributes containing the original Blender object and object data names
5024
5024
  :type author_blender_name: typing.Optional[typing.Union[bool, typing.Any]]
5025
5025
  """
5026
5026
 
@@ -5232,13 +5232,13 @@ def usd_import(
5232
5232
  OVERWRITE
5233
5233
  Overwrite -- Overwrite existing files.
5234
5234
  :type tex_name_collision_mode: typing.Optional[typing.Any]
5235
- :param attr_import_mode: Import Custom Properties, Behavior when importing USD attributes as Blender custom properties
5235
+ :param attr_import_mode: Custom Properties, Behavior when importing USD attributes as Blender custom properties
5236
5236
 
5237
5237
  NONE
5238
- None -- Do not import attributes.
5238
+ None -- Do not import USD custom attributes.
5239
5239
 
5240
5240
  USER
5241
- User -- Import attributes in the 'userProperties' namespace as Blender custom properties. The namespace will be stripped from the property names.
5241
+ User -- Import USD attributes in the 'userProperties' namespace as Blender custom properties. The namespace will be stripped from the property names.
5242
5242
 
5243
5243
  ALL
5244
5244
  All Custom -- Import all USD custom attributes as Blender custom properties. Namespaces will be retained in the property names.