fake-bpy-module 20250925__py3-none-any.whl → 20250927__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.
- bl_operators/node/__init__.pyi +236 -20
- bl_ui/generic_ui_list/__init__.pyi +2 -2
- bl_ui/node_add_menu/__init__.pyi +259 -4
- bl_ui/node_add_menu_compositor/__init__.pyi +66 -68
- bl_ui/node_add_menu_geometry/__init__.pyi +264 -192
- bl_ui/node_add_menu_shader/__init__.pyi +38 -47
- bl_ui/node_add_menu_texture/__init__.pyi +16 -46
- bl_ui/properties_render/__init__.pyi +31 -0
- bl_ui/space_node/__init__.pyi +45 -1
- bl_ui/space_view3d/__init__.pyi +0 -25
- bmesh/types/__init__.pyi +6 -7
- bpy/ops/action/__init__.pyi +3 -22
- bpy/ops/file/__init__.pyi +3 -0
- bpy/ops/graph/__init__.pyi +3 -0
- bpy/ops/marker/__init__.pyi +3 -0
- bpy/ops/nla/__init__.pyi +3 -0
- bpy/ops/node/__init__.pyi +150 -16
- bpy/ops/sequencer/__init__.pyi +6 -0
- bpy/ops/ui/__init__.pyi +12 -0
- bpy/stub_internal/rna_enums/__init__.pyi +15 -40
- bpy/types/__init__.pyi +357 -284
- {fake_bpy_module-20250925.dist-info → fake_bpy_module-20250927.dist-info}/METADATA +1 -1
- {fake_bpy_module-20250925.dist-info → fake_bpy_module-20250927.dist-info}/RECORD +26 -26
- mathutils/bvhtree/__init__.pyi +2 -3
- {fake_bpy_module-20250925.dist-info → fake_bpy_module-20250927.dist-info}/WHEEL +0 -0
- {fake_bpy_module-20250925.dist-info → fake_bpy_module-20250927.dist-info}/top_level.txt +0 -0
bpy/types/__init__.pyi
CHANGED
|
@@ -1028,6 +1028,7 @@
|
|
|
1028
1028
|
* ID.use_fake_user
|
|
1029
1029
|
* ID.use_extra_user
|
|
1030
1030
|
* ID.is_embedded_data
|
|
1031
|
+
* ID.is_linked_packed
|
|
1031
1032
|
* ID.is_missing
|
|
1032
1033
|
* ID.is_runtime_data
|
|
1033
1034
|
* ID.is_editable
|
|
@@ -1449,6 +1450,7 @@
|
|
|
1449
1450
|
* ID.use_fake_user
|
|
1450
1451
|
* ID.use_extra_user
|
|
1451
1452
|
* ID.is_embedded_data
|
|
1453
|
+
* ID.is_linked_packed
|
|
1452
1454
|
* ID.is_missing
|
|
1453
1455
|
* ID.is_runtime_data
|
|
1454
1456
|
* ID.is_editable
|
|
@@ -2215,6 +2217,7 @@
|
|
|
2215
2217
|
* ID.use_fake_user
|
|
2216
2218
|
* ID.use_extra_user
|
|
2217
2219
|
* ID.is_embedded_data
|
|
2220
|
+
* ID.is_linked_packed
|
|
2218
2221
|
* ID.is_missing
|
|
2219
2222
|
* ID.is_runtime_data
|
|
2220
2223
|
* ID.is_editable
|
|
@@ -7405,7 +7408,6 @@ Types with Custom Property Support <bpy_types_custom_properties>
|
|
|
7405
7408
|
* RenderEngine.pass_by_index_get
|
|
7406
7409
|
* RenderLayer.passes
|
|
7407
7410
|
* RenderPasses.find_by_name
|
|
7408
|
-
* RenderPasses.find_by_type
|
|
7409
7411
|
|
|
7410
7412
|
:columns: 2
|
|
7411
7413
|
|
|
@@ -14433,6 +14435,7 @@ of the scene and only show nodes of the renderer they are designed for.
|
|
|
14433
14435
|
* ID.use_fake_user
|
|
14434
14436
|
* ID.use_extra_user
|
|
14435
14437
|
* ID.is_embedded_data
|
|
14438
|
+
* ID.is_linked_packed
|
|
14436
14439
|
* ID.is_missing
|
|
14437
14440
|
* ID.is_runtime_data
|
|
14438
14441
|
* ID.is_editable
|
|
@@ -14519,6 +14522,7 @@ of the scene and only show nodes of the renderer they are designed for.
|
|
|
14519
14522
|
* NodeTreePath.node_tree
|
|
14520
14523
|
* NodesModifier.node_group
|
|
14521
14524
|
* Scene.compositing_node_group
|
|
14525
|
+
* SequencerCompositorModifierData.node_group
|
|
14522
14526
|
* ShaderNodeCustomGroup.node_tree
|
|
14523
14527
|
* ShaderNodeGroup.node_tree
|
|
14524
14528
|
* SpaceNodeEditor.edit_tree
|
|
@@ -14877,6 +14881,7 @@ of the scene and only show nodes of the renderer they are designed for.
|
|
|
14877
14881
|
* ID.use_fake_user
|
|
14878
14882
|
* ID.use_extra_user
|
|
14879
14883
|
* ID.is_embedded_data
|
|
14884
|
+
* ID.is_linked_packed
|
|
14880
14885
|
* ID.is_missing
|
|
14881
14886
|
* ID.is_runtime_data
|
|
14882
14887
|
* ID.is_editable
|
|
@@ -16224,6 +16229,7 @@ of the scene and only show nodes of the renderer they are designed for.
|
|
|
16224
16229
|
* ID.use_fake_user
|
|
16225
16230
|
* ID.use_extra_user
|
|
16226
16231
|
* ID.is_embedded_data
|
|
16232
|
+
* ID.is_linked_packed
|
|
16227
16233
|
* ID.is_missing
|
|
16228
16234
|
* ID.is_runtime_data
|
|
16229
16235
|
* ID.is_editable
|
|
@@ -17752,6 +17758,7 @@ of the scene and only show nodes of the renderer they are designed for.
|
|
|
17752
17758
|
* ID.use_fake_user
|
|
17753
17759
|
* ID.use_extra_user
|
|
17754
17760
|
* ID.is_embedded_data
|
|
17761
|
+
* ID.is_linked_packed
|
|
17755
17762
|
* ID.is_missing
|
|
17756
17763
|
* ID.is_runtime_data
|
|
17757
17764
|
* ID.is_editable
|
|
@@ -20801,6 +20808,7 @@ of the scene and only show nodes of the renderer they are designed for.
|
|
|
20801
20808
|
--------------------
|
|
20802
20809
|
|
|
20803
20810
|
* ThemeUserInterface.wcol_box
|
|
20811
|
+
* ThemeUserInterface.wcol_curve
|
|
20804
20812
|
* ThemeUserInterface.wcol_list_item
|
|
20805
20813
|
* ThemeUserInterface.wcol_menu
|
|
20806
20814
|
* ThemeUserInterface.wcol_menu_back
|
|
@@ -21042,6 +21050,7 @@ of the scene and only show nodes of the renderer they are designed for.
|
|
|
21042
21050
|
* ID.use_fake_user
|
|
21043
21051
|
* ID.use_extra_user
|
|
21044
21052
|
* ID.is_embedded_data
|
|
21053
|
+
* ID.is_linked_packed
|
|
21045
21054
|
* ID.is_missing
|
|
21046
21055
|
* ID.is_runtime_data
|
|
21047
21056
|
* ID.is_editable
|
|
@@ -21176,6 +21185,7 @@ of the scene and only show nodes of the renderer they are designed for.
|
|
|
21176
21185
|
* ID.use_fake_user
|
|
21177
21186
|
* ID.use_extra_user
|
|
21178
21187
|
* ID.is_embedded_data
|
|
21188
|
+
* ID.is_linked_packed
|
|
21179
21189
|
* ID.is_missing
|
|
21180
21190
|
* ID.is_runtime_data
|
|
21181
21191
|
* ID.is_editable
|
|
@@ -22556,6 +22566,7 @@ of the scene and only show nodes of the renderer they are designed for.
|
|
|
22556
22566
|
* ID.use_fake_user
|
|
22557
22567
|
* ID.use_extra_user
|
|
22558
22568
|
* ID.is_embedded_data
|
|
22569
|
+
* ID.is_linked_packed
|
|
22559
22570
|
* ID.is_missing
|
|
22560
22571
|
* ID.is_runtime_data
|
|
22561
22572
|
* ID.is_editable
|
|
@@ -23926,6 +23937,7 @@ of the scene and only show nodes of the renderer they are designed for.
|
|
|
23926
23937
|
* ID.use_fake_user
|
|
23927
23938
|
* ID.use_extra_user
|
|
23928
23939
|
* ID.is_embedded_data
|
|
23940
|
+
* ID.is_linked_packed
|
|
23929
23941
|
* ID.is_missing
|
|
23930
23942
|
* ID.is_runtime_data
|
|
23931
23943
|
* ID.is_editable
|
|
@@ -24721,6 +24733,7 @@ of the scene and only show nodes of the renderer they are designed for.
|
|
|
24721
24733
|
* ID.use_fake_user
|
|
24722
24734
|
* ID.use_extra_user
|
|
24723
24735
|
* ID.is_embedded_data
|
|
24736
|
+
* ID.is_linked_packed
|
|
24724
24737
|
* ID.is_missing
|
|
24725
24738
|
* ID.is_runtime_data
|
|
24726
24739
|
* ID.is_editable
|
|
@@ -25292,6 +25305,7 @@ This example script prints the vertices and UVs for each polygon, assumes the ac
|
|
|
25292
25305
|
* ID.use_fake_user
|
|
25293
25306
|
* ID.use_extra_user
|
|
25294
25307
|
* ID.is_embedded_data
|
|
25308
|
+
* ID.is_linked_packed
|
|
25295
25309
|
* ID.is_missing
|
|
25296
25310
|
* ID.is_runtime_data
|
|
25297
25311
|
* ID.is_editable
|
|
@@ -25763,6 +25777,7 @@ This example script prints the vertices and UVs for each polygon, assumes the ac
|
|
|
25763
25777
|
* ID.use_fake_user
|
|
25764
25778
|
* ID.use_extra_user
|
|
25765
25779
|
* ID.is_embedded_data
|
|
25780
|
+
* ID.is_linked_packed
|
|
25766
25781
|
* ID.is_missing
|
|
25767
25782
|
* ID.is_runtime_data
|
|
25768
25783
|
* ID.is_editable
|
|
@@ -29164,6 +29179,7 @@ It demonstrates:
|
|
|
29164
29179
|
* ID.use_fake_user
|
|
29165
29180
|
* ID.use_extra_user
|
|
29166
29181
|
* ID.is_embedded_data
|
|
29182
|
+
* ID.is_linked_packed
|
|
29167
29183
|
* ID.is_missing
|
|
29168
29184
|
* ID.is_runtime_data
|
|
29169
29185
|
* ID.is_editable
|
|
@@ -34329,6 +34345,7 @@ It demonstrates:
|
|
|
34329
34345
|
* ID.use_fake_user
|
|
34330
34346
|
* ID.use_extra_user
|
|
34331
34347
|
* ID.is_embedded_data
|
|
34348
|
+
* ID.is_linked_packed
|
|
34332
34349
|
* ID.is_missing
|
|
34333
34350
|
* ID.is_runtime_data
|
|
34334
34351
|
* ID.is_editable
|
|
@@ -34822,6 +34839,7 @@ It demonstrates:
|
|
|
34822
34839
|
* ID.use_fake_user
|
|
34823
34840
|
* ID.use_extra_user
|
|
34824
34841
|
* ID.is_embedded_data
|
|
34842
|
+
* ID.is_linked_packed
|
|
34825
34843
|
* ID.is_missing
|
|
34826
34844
|
* ID.is_runtime_data
|
|
34827
34845
|
* ID.is_editable
|
|
@@ -35049,6 +35067,7 @@ It demonstrates:
|
|
|
35049
35067
|
* ID.use_fake_user
|
|
35050
35068
|
* ID.use_extra_user
|
|
35051
35069
|
* ID.is_embedded_data
|
|
35070
|
+
* ID.is_linked_packed
|
|
35052
35071
|
* ID.is_missing
|
|
35053
35072
|
* ID.is_runtime_data
|
|
35054
35073
|
* ID.is_editable
|
|
@@ -36370,6 +36389,7 @@ Executing the operator will then print all values.
|
|
|
36370
36389
|
* ID.use_fake_user
|
|
36371
36390
|
* ID.use_extra_user
|
|
36372
36391
|
* ID.is_embedded_data
|
|
36392
|
+
* ID.is_linked_packed
|
|
36373
36393
|
* ID.is_missing
|
|
36374
36394
|
* ID.is_runtime_data
|
|
36375
36395
|
* ID.is_editable
|
|
@@ -37841,6 +37861,7 @@ Operator.draw method for layout and display.
|
|
|
37841
37861
|
* ID.use_fake_user
|
|
37842
37862
|
* ID.use_extra_user
|
|
37843
37863
|
* ID.is_embedded_data
|
|
37864
|
+
* ID.is_linked_packed
|
|
37844
37865
|
* ID.is_missing
|
|
37845
37866
|
* ID.is_runtime_data
|
|
37846
37867
|
* ID.is_editable
|
|
@@ -38696,6 +38717,7 @@ Operator.draw method for layout and display.
|
|
|
38696
38717
|
* ID.use_fake_user
|
|
38697
38718
|
* ID.use_extra_user
|
|
38698
38719
|
* ID.is_embedded_data
|
|
38720
|
+
* ID.is_linked_packed
|
|
38699
38721
|
* ID.is_missing
|
|
38700
38722
|
* ID.is_runtime_data
|
|
38701
38723
|
* ID.is_editable
|
|
@@ -40753,6 +40775,7 @@ Operator.draw method for layout and display.
|
|
|
40753
40775
|
* ID.use_fake_user
|
|
40754
40776
|
* ID.use_extra_user
|
|
40755
40777
|
* ID.is_embedded_data
|
|
40778
|
+
* ID.is_linked_packed
|
|
40756
40779
|
* ID.is_missing
|
|
40757
40780
|
* ID.is_runtime_data
|
|
40758
40781
|
* ID.is_editable
|
|
@@ -41996,6 +42019,7 @@ Operator.draw method for layout and display.
|
|
|
41996
42019
|
* ID.use_fake_user
|
|
41997
42020
|
* ID.use_extra_user
|
|
41998
42021
|
* ID.is_embedded_data
|
|
42022
|
+
* ID.is_linked_packed
|
|
41999
42023
|
* ID.is_missing
|
|
42000
42024
|
* ID.is_runtime_data
|
|
42001
42025
|
* ID.is_editable
|
|
@@ -42165,6 +42189,7 @@ Operator.draw method for layout and display.
|
|
|
42165
42189
|
* ID.use_fake_user
|
|
42166
42190
|
* ID.use_extra_user
|
|
42167
42191
|
* ID.is_embedded_data
|
|
42192
|
+
* ID.is_linked_packed
|
|
42168
42193
|
* ID.is_missing
|
|
42169
42194
|
* ID.is_runtime_data
|
|
42170
42195
|
* ID.is_editable
|
|
@@ -42870,6 +42895,7 @@ Operator.draw method for layout and display.
|
|
|
42870
42895
|
* ID.use_fake_user
|
|
42871
42896
|
* ID.use_extra_user
|
|
42872
42897
|
* ID.is_embedded_data
|
|
42898
|
+
* ID.is_linked_packed
|
|
42873
42899
|
* ID.is_missing
|
|
42874
42900
|
* ID.is_runtime_data
|
|
42875
42901
|
* ID.is_editable
|
|
@@ -45587,6 +45613,7 @@ Operator.draw method for layout and display.
|
|
|
45587
45613
|
* ID.use_fake_user
|
|
45588
45614
|
* ID.use_extra_user
|
|
45589
45615
|
* ID.is_embedded_data
|
|
45616
|
+
* ID.is_linked_packed
|
|
45590
45617
|
* ID.is_missing
|
|
45591
45618
|
* ID.is_runtime_data
|
|
45592
45619
|
* ID.is_editable
|
|
@@ -46321,6 +46348,7 @@ Operator.draw method for layout and display.
|
|
|
46321
46348
|
* ID.use_fake_user
|
|
46322
46349
|
* ID.use_extra_user
|
|
46323
46350
|
* ID.is_embedded_data
|
|
46351
|
+
* ID.is_linked_packed
|
|
46324
46352
|
* ID.is_missing
|
|
46325
46353
|
* ID.is_runtime_data
|
|
46326
46354
|
* ID.is_editable
|
|
@@ -47274,6 +47302,7 @@ Operator.draw method for layout and display.
|
|
|
47274
47302
|
* ID.use_fake_user
|
|
47275
47303
|
* ID.use_extra_user
|
|
47276
47304
|
* ID.is_embedded_data
|
|
47305
|
+
* ID.is_linked_packed
|
|
47277
47306
|
* ID.is_missing
|
|
47278
47307
|
* ID.is_runtime_data
|
|
47279
47308
|
* ID.is_editable
|
|
@@ -54864,6 +54893,7 @@ Operator.draw method for layout and display.
|
|
|
54864
54893
|
* ID.use_fake_user
|
|
54865
54894
|
* ID.use_extra_user
|
|
54866
54895
|
* ID.is_embedded_data
|
|
54896
|
+
* ID.is_linked_packed
|
|
54867
54897
|
* ID.is_missing
|
|
54868
54898
|
* ID.is_runtime_data
|
|
54869
54899
|
* ID.is_editable
|
|
@@ -56071,6 +56101,7 @@ Operator.draw method for layout and display.
|
|
|
56071
56101
|
* ID.use_fake_user
|
|
56072
56102
|
* ID.use_extra_user
|
|
56073
56103
|
* ID.is_embedded_data
|
|
56104
|
+
* ID.is_linked_packed
|
|
56074
56105
|
* ID.is_missing
|
|
56075
56106
|
* ID.is_runtime_data
|
|
56076
56107
|
* ID.is_editable
|
|
@@ -62500,6 +62531,7 @@ print(positions_data)
|
|
|
62500
62531
|
* ID.use_fake_user
|
|
62501
62532
|
* ID.use_extra_user
|
|
62502
62533
|
* ID.is_embedded_data
|
|
62534
|
+
* ID.is_linked_packed
|
|
62503
62535
|
* ID.is_missing
|
|
62504
62536
|
* ID.is_runtime_data
|
|
62505
62537
|
* ID.is_editable
|
|
@@ -63569,6 +63601,7 @@ print(positions_data)
|
|
|
63569
63601
|
* ID.use_fake_user
|
|
63570
63602
|
* ID.use_extra_user
|
|
63571
63603
|
* ID.is_embedded_data
|
|
63604
|
+
* ID.is_linked_packed
|
|
63572
63605
|
* ID.is_missing
|
|
63573
63606
|
* ID.is_runtime_data
|
|
63574
63607
|
* ID.is_editable
|
|
@@ -63700,6 +63733,7 @@ print(positions_data)
|
|
|
63700
63733
|
* ID.use_fake_user
|
|
63701
63734
|
* ID.use_extra_user
|
|
63702
63735
|
* ID.is_embedded_data
|
|
63736
|
+
* ID.is_linked_packed
|
|
63703
63737
|
* ID.is_missing
|
|
63704
63738
|
* ID.is_runtime_data
|
|
63705
63739
|
* ID.is_editable
|
|
@@ -67243,6 +67277,7 @@ print(positions_data)
|
|
|
67243
67277
|
* ID.use_fake_user
|
|
67244
67278
|
* ID.use_extra_user
|
|
67245
67279
|
* ID.is_embedded_data
|
|
67280
|
+
* ID.is_linked_packed
|
|
67246
67281
|
* ID.is_missing
|
|
67247
67282
|
* ID.is_runtime_data
|
|
67248
67283
|
* ID.is_editable
|
|
@@ -68888,6 +68923,7 @@ example of how to create/use filtering/reordering callbacks.
|
|
|
68888
68923
|
* ID.use_fake_user
|
|
68889
68924
|
* ID.use_extra_user
|
|
68890
68925
|
* ID.is_embedded_data
|
|
68926
|
+
* ID.is_linked_packed
|
|
68891
68927
|
* ID.is_missing
|
|
68892
68928
|
* ID.is_runtime_data
|
|
68893
68929
|
* ID.is_editable
|
|
@@ -70049,6 +70085,7 @@ example of how to create/use filtering/reordering callbacks.
|
|
|
70049
70085
|
* ID.use_fake_user
|
|
70050
70086
|
* ID.use_extra_user
|
|
70051
70087
|
* ID.is_embedded_data
|
|
70088
|
+
* ID.is_linked_packed
|
|
70052
70089
|
* ID.is_missing
|
|
70053
70090
|
* ID.is_runtime_data
|
|
70054
70091
|
* ID.is_editable
|
|
@@ -70745,6 +70782,7 @@ example of how to create/use filtering/reordering callbacks.
|
|
|
70745
70782
|
* ID.use_fake_user
|
|
70746
70783
|
* ID.use_extra_user
|
|
70747
70784
|
* ID.is_embedded_data
|
|
70785
|
+
* ID.is_linked_packed
|
|
70748
70786
|
* ID.is_missing
|
|
70749
70787
|
* ID.is_runtime_data
|
|
70750
70788
|
* ID.is_editable
|
|
@@ -71813,6 +71851,7 @@ Property types used in class declarations are all in bpy.props
|
|
|
71813
71851
|
* ID.use_fake_user
|
|
71814
71852
|
* ID.use_extra_user
|
|
71815
71853
|
* ID.is_embedded_data
|
|
71854
|
+
* ID.is_linked_packed
|
|
71816
71855
|
* ID.is_missing
|
|
71817
71856
|
* ID.is_runtime_data
|
|
71818
71857
|
* ID.is_editable
|
|
@@ -72207,6 +72246,7 @@ at its creation, all editing in the original image's buffer is 'lost' in its cop
|
|
|
72207
72246
|
* ID.use_fake_user
|
|
72208
72247
|
* ID.use_extra_user
|
|
72209
72248
|
* ID.is_embedded_data
|
|
72249
|
+
* ID.is_linked_packed
|
|
72210
72250
|
* ID.is_missing
|
|
72211
72251
|
* ID.is_runtime_data
|
|
72212
72252
|
* ID.is_editable
|
|
@@ -75882,6 +75922,7 @@ at its creation, all editing in the original image's buffer is 'lost' in its cop
|
|
|
75882
75922
|
* ID.use_fake_user
|
|
75883
75923
|
* ID.use_extra_user
|
|
75884
75924
|
* ID.is_embedded_data
|
|
75925
|
+
* ID.is_linked_packed
|
|
75885
75926
|
* ID.is_missing
|
|
75886
75927
|
* ID.is_runtime_data
|
|
75887
75928
|
* ID.is_editable
|
|
@@ -78120,6 +78161,7 @@ at its creation, all editing in the original image's buffer is 'lost' in its cop
|
|
|
78120
78161
|
* ID.use_fake_user
|
|
78121
78162
|
* ID.use_extra_user
|
|
78122
78163
|
* ID.is_embedded_data
|
|
78164
|
+
* ID.is_linked_packed
|
|
78123
78165
|
* ID.is_missing
|
|
78124
78166
|
* ID.is_runtime_data
|
|
78125
78167
|
* ID.is_editable
|
|
@@ -78731,6 +78773,7 @@ at its creation, all editing in the original image's buffer is 'lost' in its cop
|
|
|
78731
78773
|
* ID.use_fake_user
|
|
78732
78774
|
* ID.use_extra_user
|
|
78733
78775
|
* ID.is_embedded_data
|
|
78776
|
+
* ID.is_linked_packed
|
|
78734
78777
|
* ID.is_missing
|
|
78735
78778
|
* ID.is_runtime_data
|
|
78736
78779
|
* ID.is_editable
|
|
@@ -80788,6 +80831,7 @@ at its creation, all editing in the original image's buffer is 'lost' in its cop
|
|
|
80788
80831
|
* ID.use_fake_user
|
|
80789
80832
|
* ID.use_extra_user
|
|
80790
80833
|
* ID.is_embedded_data
|
|
80834
|
+
* ID.is_linked_packed
|
|
80791
80835
|
* ID.is_missing
|
|
80792
80836
|
* ID.is_runtime_data
|
|
80793
80837
|
* ID.is_editable
|
|
@@ -81923,6 +81967,7 @@ at its creation, all editing in the original image's buffer is 'lost' in its cop
|
|
|
81923
81967
|
* ID.use_fake_user
|
|
81924
81968
|
* ID.use_extra_user
|
|
81925
81969
|
* ID.is_embedded_data
|
|
81970
|
+
* ID.is_linked_packed
|
|
81926
81971
|
* ID.is_missing
|
|
81927
81972
|
* ID.is_runtime_data
|
|
81928
81973
|
* ID.is_editable
|
|
@@ -82608,6 +82653,7 @@ at its creation, all editing in the original image's buffer is 'lost' in its cop
|
|
|
82608
82653
|
* ID.use_fake_user
|
|
82609
82654
|
* ID.use_extra_user
|
|
82610
82655
|
* ID.is_embedded_data
|
|
82656
|
+
* ID.is_linked_packed
|
|
82611
82657
|
* ID.is_missing
|
|
82612
82658
|
* ID.is_runtime_data
|
|
82613
82659
|
* ID.is_editable
|
|
@@ -83038,6 +83084,7 @@ at its creation, all editing in the original image's buffer is 'lost' in its cop
|
|
|
83038
83084
|
* ID.use_fake_user
|
|
83039
83085
|
* ID.use_extra_user
|
|
83040
83086
|
* ID.is_embedded_data
|
|
83087
|
+
* ID.is_linked_packed
|
|
83041
83088
|
* ID.is_missing
|
|
83042
83089
|
* ID.is_runtime_data
|
|
83043
83090
|
* ID.is_editable
|
|
@@ -85751,6 +85798,7 @@ at its creation, all editing in the original image's buffer is 'lost' in its cop
|
|
|
85751
85798
|
* ID.use_fake_user
|
|
85752
85799
|
* ID.use_extra_user
|
|
85753
85800
|
* ID.is_embedded_data
|
|
85801
|
+
* ID.is_linked_packed
|
|
85754
85802
|
* ID.is_missing
|
|
85755
85803
|
* ID.is_runtime_data
|
|
85756
85804
|
* ID.is_editable
|
|
@@ -86482,6 +86530,7 @@ at its creation, all editing in the original image's buffer is 'lost' in its cop
|
|
|
86482
86530
|
* ID.use_fake_user
|
|
86483
86531
|
* ID.use_extra_user
|
|
86484
86532
|
* ID.is_embedded_data
|
|
86533
|
+
* ID.is_linked_packed
|
|
86485
86534
|
* ID.is_missing
|
|
86486
86535
|
* ID.is_runtime_data
|
|
86487
86536
|
* ID.is_editable
|
|
@@ -87011,6 +87060,7 @@ at its creation, all editing in the original image's buffer is 'lost' in its cop
|
|
|
87011
87060
|
* ID.use_fake_user
|
|
87012
87061
|
* ID.use_extra_user
|
|
87013
87062
|
* ID.is_embedded_data
|
|
87063
|
+
* ID.is_linked_packed
|
|
87014
87064
|
* ID.is_missing
|
|
87015
87065
|
* ID.is_runtime_data
|
|
87016
87066
|
* ID.is_editable
|
|
@@ -87960,6 +88010,7 @@ at its creation, all editing in the original image's buffer is 'lost' in its cop
|
|
|
87960
88010
|
* ID.use_fake_user
|
|
87961
88011
|
* ID.use_extra_user
|
|
87962
88012
|
* ID.is_embedded_data
|
|
88013
|
+
* ID.is_linked_packed
|
|
87963
88014
|
* ID.is_missing
|
|
87964
88015
|
* ID.is_runtime_data
|
|
87965
88016
|
* ID.is_editable
|
|
@@ -88161,6 +88212,8 @@ at its creation, all editing in the original image's buffer is 'lost' in its cop
|
|
|
88161
88212
|
* Action.fcurve_ensure_for_datablock
|
|
88162
88213
|
* ActionSlot.users
|
|
88163
88214
|
* AssetRepresentation.local_id
|
|
88215
|
+
* BlendData.pack_linked_ids_hierarchy
|
|
88216
|
+
* BlendData.pack_linked_ids_hierarchy
|
|
88164
88217
|
* BlendDataObjects.new
|
|
88165
88218
|
* BlendImportContextItem.id
|
|
88166
88219
|
* BlendImportContextItem.library_override_id
|
|
@@ -91398,6 +91451,7 @@ at its creation, all editing in the original image's buffer is 'lost' in its cop
|
|
|
91398
91451
|
* ID.use_fake_user
|
|
91399
91452
|
* ID.use_extra_user
|
|
91400
91453
|
* ID.is_embedded_data
|
|
91454
|
+
* ID.is_linked_packed
|
|
91401
91455
|
* ID.is_missing
|
|
91402
91456
|
* ID.is_runtime_data
|
|
91403
91457
|
* ID.is_editable
|
|
@@ -91466,6 +91520,8 @@ at its creation, all editing in the original image's buffer is 'lost' in its cop
|
|
|
91466
91520
|
* BlendDataLibraries.remove
|
|
91467
91521
|
* BlendImportContextItem.source_library
|
|
91468
91522
|
* ID.library
|
|
91523
|
+
* Library.archive_libraries
|
|
91524
|
+
* Library.archive_parent_library
|
|
91469
91525
|
* Library.parent
|
|
91470
91526
|
|
|
91471
91527
|
:columns: 2
|
|
@@ -92623,6 +92679,7 @@ at its creation, all editing in the original image's buffer is 'lost' in its cop
|
|
|
92623
92679
|
* ID.use_fake_user
|
|
92624
92680
|
* ID.use_extra_user
|
|
92625
92681
|
* ID.is_embedded_data
|
|
92682
|
+
* ID.is_linked_packed
|
|
92626
92683
|
* ID.is_missing
|
|
92627
92684
|
* ID.is_runtime_data
|
|
92628
92685
|
* ID.is_editable
|
|
@@ -94638,6 +94695,7 @@ at its creation, all editing in the original image's buffer is 'lost' in its cop
|
|
|
94638
94695
|
* ID.use_fake_user
|
|
94639
94696
|
* ID.use_extra_user
|
|
94640
94697
|
* ID.is_embedded_data
|
|
94698
|
+
* ID.is_linked_packed
|
|
94641
94699
|
* ID.is_missing
|
|
94642
94700
|
* ID.is_runtime_data
|
|
94643
94701
|
* ID.is_editable
|
|
@@ -96872,6 +96930,7 @@ object, placing it into a view layer, selecting it and making it active.
|
|
|
96872
96930
|
* ID.use_fake_user
|
|
96873
96931
|
* ID.use_extra_user
|
|
96874
96932
|
* ID.is_embedded_data
|
|
96933
|
+
* ID.is_linked_packed
|
|
96875
96934
|
* ID.is_missing
|
|
96876
96935
|
* ID.is_runtime_data
|
|
96877
96936
|
* ID.is_editable
|
|
@@ -97712,6 +97771,7 @@ object, placing it into a view layer, selecting it and making it active.
|
|
|
97712
97771
|
* ID.use_fake_user
|
|
97713
97772
|
* ID.use_extra_user
|
|
97714
97773
|
* ID.is_embedded_data
|
|
97774
|
+
* ID.is_linked_packed
|
|
97715
97775
|
* ID.is_missing
|
|
97716
97776
|
* ID.is_runtime_data
|
|
97717
97777
|
* ID.is_editable
|
|
@@ -99186,6 +99246,7 @@ object, placing it into a view layer, selecting it and making it active.
|
|
|
99186
99246
|
* ID.use_fake_user
|
|
99187
99247
|
* ID.use_extra_user
|
|
99188
99248
|
* ID.is_embedded_data
|
|
99249
|
+
* ID.is_linked_packed
|
|
99189
99250
|
* ID.is_missing
|
|
99190
99251
|
* ID.is_runtime_data
|
|
99191
99252
|
* ID.is_editable
|
|
@@ -100219,6 +100280,7 @@ object, placing it into a view layer, selecting it and making it active.
|
|
|
100219
100280
|
* ID.use_fake_user
|
|
100220
100281
|
* ID.use_extra_user
|
|
100221
100282
|
* ID.is_embedded_data
|
|
100283
|
+
* ID.is_linked_packed
|
|
100222
100284
|
* ID.is_missing
|
|
100223
100285
|
* ID.is_runtime_data
|
|
100224
100286
|
* ID.is_editable
|
|
@@ -101589,6 +101651,7 @@ object, placing it into a view layer, selecting it and making it active.
|
|
|
101589
101651
|
* ID.use_fake_user
|
|
101590
101652
|
* ID.use_extra_user
|
|
101591
101653
|
* ID.is_embedded_data
|
|
101654
|
+
* ID.is_linked_packed
|
|
101592
101655
|
* ID.is_missing
|
|
101593
101656
|
* ID.is_runtime_data
|
|
101594
101657
|
* ID.is_editable
|
|
@@ -102597,6 +102660,7 @@ object, placing it into a view layer, selecting it and making it active.
|
|
|
102597
102660
|
* ID.use_fake_user
|
|
102598
102661
|
* ID.use_extra_user
|
|
102599
102662
|
* ID.is_embedded_data
|
|
102663
|
+
* ID.is_linked_packed
|
|
102600
102664
|
* ID.is_missing
|
|
102601
102665
|
* ID.is_runtime_data
|
|
102602
102666
|
* ID.is_editable
|
|
@@ -103000,6 +103064,7 @@ object, placing it into a view layer, selecting it and making it active.
|
|
|
103000
103064
|
* ID.use_fake_user
|
|
103001
103065
|
* ID.use_extra_user
|
|
103002
103066
|
* ID.is_embedded_data
|
|
103067
|
+
* ID.is_linked_packed
|
|
103003
103068
|
* ID.is_missing
|
|
103004
103069
|
* ID.is_runtime_data
|
|
103005
103070
|
* ID.is_editable
|
|
@@ -104237,6 +104302,54 @@ object, placing it into a view layer, selecting it and making it active.
|
|
|
104237
104302
|
:columns: 2
|
|
104238
104303
|
|
|
104239
104304
|
|
|
104305
|
+
--------------------
|
|
104306
|
+
|
|
104307
|
+
* bpy_struct.id_data
|
|
104308
|
+
* StripModifier.name
|
|
104309
|
+
* StripModifier.type
|
|
104310
|
+
* StripModifier.mute
|
|
104311
|
+
* StripModifier.enable
|
|
104312
|
+
* StripModifier.show_expanded
|
|
104313
|
+
* StripModifier.input_mask_type
|
|
104314
|
+
* StripModifier.mask_time
|
|
104315
|
+
* StripModifier.input_mask_strip
|
|
104316
|
+
* StripModifier.input_mask_id
|
|
104317
|
+
* StripModifier.is_active
|
|
104318
|
+
|
|
104319
|
+
:columns: 2
|
|
104320
|
+
|
|
104321
|
+
|
|
104322
|
+
--------------------
|
|
104323
|
+
|
|
104324
|
+
* bpy_struct.as_pointer
|
|
104325
|
+
* bpy_struct.driver_add
|
|
104326
|
+
* bpy_struct.driver_remove
|
|
104327
|
+
* bpy_struct.get
|
|
104328
|
+
* bpy_struct.id_properties_clear
|
|
104329
|
+
* bpy_struct.id_properties_ensure
|
|
104330
|
+
* bpy_struct.id_properties_ui
|
|
104331
|
+
* bpy_struct.is_property_hidden
|
|
104332
|
+
* bpy_struct.is_property_overridable_library
|
|
104333
|
+
* bpy_struct.is_property_readonly
|
|
104334
|
+
* bpy_struct.is_property_set
|
|
104335
|
+
* bpy_struct.items
|
|
104336
|
+
* bpy_struct.keyframe_delete
|
|
104337
|
+
* bpy_struct.keyframe_insert
|
|
104338
|
+
* bpy_struct.keys
|
|
104339
|
+
* bpy_struct.path_from_id
|
|
104340
|
+
* bpy_struct.path_resolve
|
|
104341
|
+
* bpy_struct.pop
|
|
104342
|
+
* bpy_struct.property_overridable_library_set
|
|
104343
|
+
* bpy_struct.property_unset
|
|
104344
|
+
* bpy_struct.rna_ancestors
|
|
104345
|
+
* bpy_struct.type_recast
|
|
104346
|
+
* bpy_struct.values
|
|
104347
|
+
* StripModifier.bl_rna_get_subclass
|
|
104348
|
+
* StripModifier.bl_rna_get_subclass_py
|
|
104349
|
+
|
|
104350
|
+
:columns: 2
|
|
104351
|
+
|
|
104352
|
+
|
|
104240
104353
|
--------------------
|
|
104241
104354
|
|
|
104242
104355
|
* bpy_struct.id_data
|
|
@@ -105479,6 +105592,7 @@ object, placing it into a view layer, selecting it and making it active.
|
|
|
105479
105592
|
* ID.use_fake_user
|
|
105480
105593
|
* ID.use_extra_user
|
|
105481
105594
|
* ID.is_embedded_data
|
|
105595
|
+
* ID.is_linked_packed
|
|
105482
105596
|
* ID.is_missing
|
|
105483
105597
|
* ID.is_runtime_data
|
|
105484
105598
|
* ID.is_editable
|
|
@@ -105725,7 +105839,7 @@ object, placing it into a view layer, selecting it and making it active.
|
|
|
105725
105839
|
--------------------
|
|
105726
105840
|
|
|
105727
105841
|
* Brush.automasking_cavity_curve
|
|
105728
|
-
* Brush.
|
|
105842
|
+
* Brush.curve_distance_falloff
|
|
105729
105843
|
* Brush.curve_jitter
|
|
105730
105844
|
* Brush.curve_random_hue
|
|
105731
105845
|
* Brush.curve_random_saturation
|
|
@@ -107227,6 +107341,7 @@ Menu.poll function.
|
|
|
107227
107341
|
* ID.use_fake_user
|
|
107228
107342
|
* ID.use_extra_user
|
|
107229
107343
|
* ID.is_embedded_data
|
|
107344
|
+
* ID.is_linked_packed
|
|
107230
107345
|
* ID.is_missing
|
|
107231
107346
|
* ID.is_runtime_data
|
|
107232
107347
|
* ID.is_editable
|
|
@@ -110235,6 +110350,7 @@ Menu.poll function.
|
|
|
110235
110350
|
* ID.use_fake_user
|
|
110236
110351
|
* ID.use_extra_user
|
|
110237
110352
|
* ID.is_embedded_data
|
|
110353
|
+
* ID.is_linked_packed
|
|
110238
110354
|
* ID.is_missing
|
|
110239
110355
|
* ID.is_runtime_data
|
|
110240
110356
|
* ID.is_editable
|
|
@@ -110954,11 +111070,6 @@ import bl_ui
|
|
|
110954
111070
|
import bl_ui.anim
|
|
110955
111071
|
import bl_ui.asset_shelf
|
|
110956
111072
|
import bl_ui.generic_ui_list
|
|
110957
|
-
import bl_ui.node_add_menu
|
|
110958
|
-
import bl_ui.node_add_menu_compositor
|
|
110959
|
-
import bl_ui.node_add_menu_geometry
|
|
110960
|
-
import bl_ui.node_add_menu_shader
|
|
110961
|
-
import bl_ui.node_add_menu_texture
|
|
110962
111073
|
import bl_ui.properties_collection
|
|
110963
111074
|
import bl_ui.properties_constraint
|
|
110964
111075
|
import bl_ui.properties_data_armature
|
|
@@ -122067,21 +122178,6 @@ class PoseBoneConstraints(bpy_prop_collection[Constraint], bpy_struct):
|
|
|
122067
122178
|
class RenderPasses(bpy_prop_collection[RenderPass], bpy_struct):
|
|
122068
122179
|
"""Collection of render passes"""
|
|
122069
122180
|
|
|
122070
|
-
def find_by_type(
|
|
122071
|
-
self,
|
|
122072
|
-
pass_type: bpy.stub_internal.rna_enums.RenderPassTypeItems | None,
|
|
122073
|
-
view: str,
|
|
122074
|
-
) -> RenderPass:
|
|
122075
|
-
"""Get the render pass for a given type and view
|
|
122076
|
-
|
|
122077
|
-
:param pass_type: Pass
|
|
122078
|
-
:type pass_type: bpy.stub_internal.rna_enums.RenderPassTypeItems | None
|
|
122079
|
-
:param view: View, Render view to get pass from
|
|
122080
|
-
:type view: str
|
|
122081
|
-
:return: The matching render pass
|
|
122082
|
-
:rtype: RenderPass
|
|
122083
|
-
"""
|
|
122084
|
-
|
|
122085
122181
|
def find_by_name(self, name: str, view: str) -> RenderPass:
|
|
122086
122182
|
"""Get the render pass for a given name and view
|
|
122087
122183
|
|
|
@@ -128219,6 +128315,15 @@ class BlendData(bpy_struct):
|
|
|
128219
128315
|
:type: BlendDataWorlds
|
|
128220
128316
|
"""
|
|
128221
128317
|
|
|
128318
|
+
def pack_linked_ids_hierarchy(self, root_id: ID | None) -> ID:
|
|
128319
|
+
"""Pack the given linked ID and its dependencies into current blendfile
|
|
128320
|
+
|
|
128321
|
+
:param root_id: Root linked ID to pack
|
|
128322
|
+
:type root_id: ID | None
|
|
128323
|
+
:return: The packed ID matching the given root ID
|
|
128324
|
+
:rtype: ID
|
|
128325
|
+
"""
|
|
128326
|
+
|
|
128222
128327
|
def batch_remove(self, ids: collections.abc.Sequence[ID] | None) -> None:
|
|
128223
128328
|
"""Remove (delete) several IDs at once.Note that this function is quicker than individual calls to `remove()` (from `bpy.types.BlendData`
|
|
128224
128329
|
ID collections), but less safe/versatile (it can break Blender, e.g. by removing all scenes...).
|
|
@@ -130548,22 +130653,22 @@ class Brush(ID, bpy_struct):
|
|
|
130548
130653
|
:type: int
|
|
130549
130654
|
"""
|
|
130550
130655
|
|
|
130551
|
-
|
|
130656
|
+
curve_distance_falloff: CurveMapping
|
|
130552
130657
|
""" Editable falloff curve
|
|
130553
130658
|
|
|
130554
130659
|
:type: CurveMapping
|
|
130555
130660
|
"""
|
|
130556
130661
|
|
|
130557
|
-
|
|
130558
|
-
"""
|
|
130662
|
+
curve_distance_falloff_preset: bpy.stub_internal.rna_enums.BrushCurvePresetItems
|
|
130663
|
+
"""
|
|
130559
130664
|
|
|
130560
|
-
:type:
|
|
130665
|
+
:type: bpy.stub_internal.rna_enums.BrushCurvePresetItems
|
|
130561
130666
|
"""
|
|
130562
130667
|
|
|
130563
|
-
|
|
130564
|
-
"""
|
|
130668
|
+
curve_jitter: CurveMapping | None
|
|
130669
|
+
""" Curve used to map pressure to brush jitter
|
|
130565
130670
|
|
|
130566
|
-
:type:
|
|
130671
|
+
:type: CurveMapping | None
|
|
130567
130672
|
"""
|
|
130568
130673
|
|
|
130569
130674
|
curve_random_hue: CurveMapping | None
|
|
@@ -131829,6 +131934,12 @@ class BrushCapabilitiesSculpt(bpy_struct):
|
|
|
131829
131934
|
:type: bool
|
|
131830
131935
|
"""
|
|
131831
131936
|
|
|
131937
|
+
has_auto_smooth_pressure: bool
|
|
131938
|
+
"""
|
|
131939
|
+
|
|
131940
|
+
:type: bool
|
|
131941
|
+
"""
|
|
131942
|
+
|
|
131832
131943
|
has_color: bool
|
|
131833
131944
|
"""
|
|
131834
131945
|
|
|
@@ -131853,6 +131964,12 @@ class BrushCapabilitiesSculpt(bpy_struct):
|
|
|
131853
131964
|
:type: bool
|
|
131854
131965
|
"""
|
|
131855
131966
|
|
|
131967
|
+
has_hardness_pressure: bool
|
|
131968
|
+
"""
|
|
131969
|
+
|
|
131970
|
+
:type: bool
|
|
131971
|
+
"""
|
|
131972
|
+
|
|
131856
131973
|
has_height: bool
|
|
131857
131974
|
"""
|
|
131858
131975
|
|
|
@@ -131925,6 +132042,12 @@ class BrushCapabilitiesSculpt(bpy_struct):
|
|
|
131925
132042
|
:type: bool
|
|
131926
132043
|
"""
|
|
131927
132044
|
|
|
132045
|
+
has_size_pressure: bool
|
|
132046
|
+
"""
|
|
132047
|
+
|
|
132048
|
+
:type: bool
|
|
132049
|
+
"""
|
|
132050
|
+
|
|
131928
132051
|
has_smooth_stroke: bool
|
|
131929
132052
|
"""
|
|
131930
132053
|
|
|
@@ -135793,6 +135916,12 @@ class ColorManagedDisplaySettings(bpy_struct):
|
|
|
135793
135916
|
:type: typing.Literal['NONE']
|
|
135794
135917
|
"""
|
|
135795
135918
|
|
|
135919
|
+
emulation: typing.Literal["OFF", "AUTO"]
|
|
135920
|
+
""" Control how images in the chosen display are mapped to the physical display
|
|
135921
|
+
|
|
135922
|
+
:type: typing.Literal['OFF','AUTO']
|
|
135923
|
+
"""
|
|
135924
|
+
|
|
135796
135925
|
@classmethod
|
|
135797
135926
|
def bl_rna_get_subclass(
|
|
135798
135927
|
cls,
|
|
@@ -135946,6 +136075,12 @@ class ColorManagedViewSettings(bpy_struct):
|
|
|
135946
136075
|
:type: typing.Literal['NONE']
|
|
135947
136076
|
"""
|
|
135948
136077
|
|
|
136078
|
+
support_emulation: bool
|
|
136079
|
+
""" The display and view transform supports automatic emulation for another display device, using the display color spaces mechanism in OpenColorIO v2 configurations
|
|
136080
|
+
|
|
136081
|
+
:type: bool
|
|
136082
|
+
"""
|
|
136083
|
+
|
|
135949
136084
|
use_curve_mapping: bool
|
|
135950
136085
|
""" Use RGB curved for pre-display transformation
|
|
135951
136086
|
|
|
@@ -150481,10 +150616,12 @@ class FileAssetSelectParams(FileSelectParams, bpy_struct):
|
|
|
150481
150616
|
:type: FileAssetSelectIDFilter
|
|
150482
150617
|
"""
|
|
150483
150618
|
|
|
150484
|
-
import_method: typing.Literal[
|
|
150619
|
+
import_method: typing.Literal[
|
|
150620
|
+
"FOLLOW_PREFS", "LINK", "APPEND", "APPEND_REUSE", "PACK"
|
|
150621
|
+
]
|
|
150485
150622
|
""" Determine how the asset will be imported
|
|
150486
150623
|
|
|
150487
|
-
:type: typing.Literal['FOLLOW_PREFS','LINK','APPEND','APPEND_REUSE']
|
|
150624
|
+
:type: typing.Literal['FOLLOW_PREFS','LINK','APPEND','APPEND_REUSE','PACK']
|
|
150488
150625
|
"""
|
|
150489
150626
|
|
|
150490
150627
|
instance_collections_on_append: bool
|
|
@@ -162114,7 +162251,7 @@ class GeometryNodeGetNamedGrid(GeometryNode, NodeInternal, Node, bpy_struct):
|
|
|
162114
162251
|
"""Get volume grid from a volume geometry with the specified name"""
|
|
162115
162252
|
|
|
162116
162253
|
data_type: bpy.stub_internal.rna_enums.NodeSocketDataTypeItems
|
|
162117
|
-
"""
|
|
162254
|
+
""" Node socket data type
|
|
162118
162255
|
|
|
162119
162256
|
:type: bpy.stub_internal.rna_enums.NodeSocketDataTypeItems
|
|
162120
162257
|
"""
|
|
@@ -162507,7 +162644,7 @@ class GeometryNodeGridInfo(GeometryNode, NodeInternal, Node, bpy_struct):
|
|
|
162507
162644
|
"""Retrieve information about a volume grid"""
|
|
162508
162645
|
|
|
162509
162646
|
data_type: bpy.stub_internal.rna_enums.NodeSocketDataTypeItems
|
|
162510
|
-
"""
|
|
162647
|
+
""" Node socket data type
|
|
162511
162648
|
|
|
162512
162649
|
:type: bpy.stub_internal.rna_enums.NodeSocketDataTypeItems
|
|
162513
162650
|
"""
|
|
@@ -172382,6 +172519,12 @@ class GeometryNodeTree(NodeTree, ID, bpy_struct):
|
|
|
172382
172519
|
:type: bool
|
|
172383
172520
|
"""
|
|
172384
172521
|
|
|
172522
|
+
show_modifier_manage_panel: bool
|
|
172523
|
+
""" Turn on the option to display the manage panel when creating a modifier
|
|
172524
|
+
|
|
172525
|
+
:type: bool
|
|
172526
|
+
"""
|
|
172527
|
+
|
|
172385
172528
|
use_wait_for_click: bool
|
|
172386
172529
|
""" Wait for mouse click input before running the operator from a menu
|
|
172387
172530
|
|
|
@@ -179843,6 +179986,12 @@ class ID(bpy_struct):
|
|
|
179843
179986
|
:type: bool
|
|
179844
179987
|
"""
|
|
179845
179988
|
|
|
179989
|
+
is_linked_packed: bool
|
|
179990
|
+
""" This data-block is linked and packed into the .blend file
|
|
179991
|
+
|
|
179992
|
+
:type: bool
|
|
179993
|
+
"""
|
|
179994
|
+
|
|
179846
179995
|
is_missing: bool
|
|
179847
179996
|
""" This data-block is a place-holder for missing linked data (i.e. it is [an override of] a linked data that could not be found anymore)
|
|
179848
179997
|
|
|
@@ -181281,6 +181430,12 @@ class ImageFormatSettings(bpy_struct):
|
|
|
181281
181430
|
:type: bool
|
|
181282
181431
|
"""
|
|
181283
181432
|
|
|
181433
|
+
use_exr_interleave: bool
|
|
181434
|
+
""" Use legacy interleaved storage of views, layers and passes for compatibility with applications that do not support more efficient multi-part OpenEXR files.
|
|
181435
|
+
|
|
181436
|
+
:type: bool
|
|
181437
|
+
"""
|
|
181438
|
+
|
|
181284
181439
|
use_jpeg2k_cinema_48: bool
|
|
181285
181440
|
""" Use OpenJPEG Cinema Preset (48fps)
|
|
181286
181441
|
|
|
@@ -184195,12 +184350,30 @@ class LayoutPanelState(bpy_struct):
|
|
|
184195
184350
|
class Library(ID, bpy_struct):
|
|
184196
184351
|
"""External .blend file from which data is linked"""
|
|
184197
184352
|
|
|
184353
|
+
archive_libraries: bpy_prop_collection[Library]
|
|
184354
|
+
""" Archive libraries of packed IDs, generated (and owned) by this source library
|
|
184355
|
+
|
|
184356
|
+
:type: bpy_prop_collection[Library]
|
|
184357
|
+
"""
|
|
184358
|
+
|
|
184359
|
+
archive_parent_library: typing_extensions.Self | None
|
|
184360
|
+
""" Source library from which this archive of packed IDs was generated
|
|
184361
|
+
|
|
184362
|
+
:type: typing_extensions.Self | None
|
|
184363
|
+
"""
|
|
184364
|
+
|
|
184198
184365
|
filepath: str
|
|
184199
184366
|
""" Path to the library .blend file
|
|
184200
184367
|
|
|
184201
184368
|
:type: str
|
|
184202
184369
|
"""
|
|
184203
184370
|
|
|
184371
|
+
is_archive: bool
|
|
184372
|
+
""" This library is an 'archive' storage for packed linked IDs originally linked from its 'archive parent' library.
|
|
184373
|
+
|
|
184374
|
+
:type: bool
|
|
184375
|
+
"""
|
|
184376
|
+
|
|
184204
184377
|
is_editable: bool
|
|
184205
184378
|
""" Data-blocks in this library are editable despite being linked. Used by brush assets and their dependencies.
|
|
184206
184379
|
|
|
@@ -207860,6 +208033,12 @@ class NodesModifier(Modifier, bpy_struct):
|
|
|
207860
208033
|
:type: bool
|
|
207861
208034
|
"""
|
|
207862
208035
|
|
|
208036
|
+
show_manage_panel: bool
|
|
208037
|
+
"""
|
|
208038
|
+
|
|
208039
|
+
:type: bool
|
|
208040
|
+
"""
|
|
208041
|
+
|
|
207863
208042
|
def bl_system_properties_get(
|
|
207864
208043
|
self, *, do_create: bool | None = False
|
|
207865
208044
|
) -> PropertyGroup:
|
|
@@ -215072,6 +215251,18 @@ class PoseBone(bpy_struct):
|
|
|
215072
215251
|
:type: bool
|
|
215073
215252
|
"""
|
|
215074
215253
|
|
|
215254
|
+
use_transform_around_custom_shape: bool
|
|
215255
|
+
""" Transform the bone as if it was a child of the Custom Shape Transform bone. This can be useful when combining shape-key and armature deformations.
|
|
215256
|
+
|
|
215257
|
+
:type: bool
|
|
215258
|
+
"""
|
|
215259
|
+
|
|
215260
|
+
use_transform_at_custom_shape: bool
|
|
215261
|
+
""" The location and orientation of the Custom Shape Transform bone will be used for transform gizmos and for other transform operators in the 3D Viewport. When disabled, the 3D Viewport will still use the actual bone transform for these, even when the custom bone shape transform is overridden.
|
|
215262
|
+
|
|
215263
|
+
:type: bool
|
|
215264
|
+
"""
|
|
215265
|
+
|
|
215075
215266
|
basename: typing.Any
|
|
215076
215267
|
""" The name of this bone before any . character.(readonly)"""
|
|
215077
215268
|
|
|
@@ -215799,6 +215990,12 @@ class PreferencesEdit(bpy_struct):
|
|
|
215799
215990
|
class PreferencesExperimental(bpy_struct):
|
|
215800
215991
|
"""Experimental features"""
|
|
215801
215992
|
|
|
215993
|
+
no_data_block_packing: bool
|
|
215994
|
+
""" Fall-back to appending instead of packing data-blocks
|
|
215995
|
+
|
|
215996
|
+
:type: bool
|
|
215997
|
+
"""
|
|
215998
|
+
|
|
215802
215999
|
override_auto_resync: bool
|
|
215803
216000
|
""" Disable library overrides automatic resync detection and process on file load (can be useful to help fixing broken files). Also see the "--disable-liboverride-auto-resync" command line option
|
|
215804
216001
|
|
|
@@ -223340,6 +223537,53 @@ class SequencerCacheOverlay(bpy_struct):
|
|
|
223340
223537
|
:rtype: typing.Any
|
|
223341
223538
|
"""
|
|
223342
223539
|
|
|
223540
|
+
class SequencerCompositorModifierData(StripModifier, bpy_struct):
|
|
223541
|
+
"""Compositor Modifier"""
|
|
223542
|
+
|
|
223543
|
+
node_group: NodeTree | None
|
|
223544
|
+
""" Node group that controls what this modifier does
|
|
223545
|
+
|
|
223546
|
+
:type: NodeTree | None
|
|
223547
|
+
"""
|
|
223548
|
+
|
|
223549
|
+
open_mask_input_panel: bool
|
|
223550
|
+
"""
|
|
223551
|
+
|
|
223552
|
+
:type: bool
|
|
223553
|
+
"""
|
|
223554
|
+
|
|
223555
|
+
@classmethod
|
|
223556
|
+
def bl_rna_get_subclass(
|
|
223557
|
+
cls,
|
|
223558
|
+
id: str | None,
|
|
223559
|
+
default=None,
|
|
223560
|
+
/,
|
|
223561
|
+
) -> Struct:
|
|
223562
|
+
"""
|
|
223563
|
+
|
|
223564
|
+
:param id: The RNA type identifier.
|
|
223565
|
+
:type id: str | None
|
|
223566
|
+
:param default:
|
|
223567
|
+
:return: The RNA type or default when not found.
|
|
223568
|
+
:rtype: Struct
|
|
223569
|
+
"""
|
|
223570
|
+
|
|
223571
|
+
@classmethod
|
|
223572
|
+
def bl_rna_get_subclass_py(
|
|
223573
|
+
cls,
|
|
223574
|
+
id: str | None,
|
|
223575
|
+
default=None,
|
|
223576
|
+
/,
|
|
223577
|
+
) -> typing.Any:
|
|
223578
|
+
"""
|
|
223579
|
+
|
|
223580
|
+
:param id: The RNA type identifier.
|
|
223581
|
+
:type id: str | None
|
|
223582
|
+
:param default:
|
|
223583
|
+
:return: The class or default when not found.
|
|
223584
|
+
:rtype: typing.Any
|
|
223585
|
+
"""
|
|
223586
|
+
|
|
223343
223587
|
class SequencerPreviewOverlay(bpy_struct):
|
|
223344
223588
|
show_annotation: bool
|
|
223345
223589
|
""" Show annotations for this view
|
|
@@ -235270,10 +235514,10 @@ class SpaceNodeEditor(Space, bpy_struct):
|
|
|
235270
235514
|
:type: NodeTree | None
|
|
235271
235515
|
"""
|
|
235272
235516
|
|
|
235273
|
-
node_tree_sub_type:
|
|
235517
|
+
node_tree_sub_type: str
|
|
235274
235518
|
"""
|
|
235275
235519
|
|
|
235276
|
-
:type:
|
|
235520
|
+
:type: str
|
|
235277
235521
|
"""
|
|
235278
235522
|
|
|
235279
235523
|
overlay: SpaceNodeOverlay
|
|
@@ -240020,6 +240264,24 @@ class StudioLight(bpy_struct):
|
|
|
240020
240264
|
class SubsurfModifier(Modifier, bpy_struct):
|
|
240021
240265
|
"""Subdivision surface modifier"""
|
|
240022
240266
|
|
|
240267
|
+
adaptive_object_edge_length: float
|
|
240268
|
+
""" Target object space edge length for adaptive subdivision
|
|
240269
|
+
|
|
240270
|
+
:type: float
|
|
240271
|
+
"""
|
|
240272
|
+
|
|
240273
|
+
adaptive_pixel_size: float
|
|
240274
|
+
""" Target polygon pixel size for adaptive subdivision
|
|
240275
|
+
|
|
240276
|
+
:type: float
|
|
240277
|
+
"""
|
|
240278
|
+
|
|
240279
|
+
adaptive_space: typing.Literal["PIXEL", "OBJECT"]
|
|
240280
|
+
""" How to adaptively subdivide the mesh
|
|
240281
|
+
|
|
240282
|
+
:type: typing.Literal['PIXEL','OBJECT']
|
|
240283
|
+
"""
|
|
240284
|
+
|
|
240023
240285
|
boundary_smooth: bpy.stub_internal.rna_enums.SubdivisionBoundarySmoothItems
|
|
240024
240286
|
""" Controls how open boundaries are smoothed
|
|
240025
240287
|
|
|
@@ -240068,6 +240330,12 @@ class SubsurfModifier(Modifier, bpy_struct):
|
|
|
240068
240330
|
:type: typing.Literal['CATMULL_CLARK','SIMPLE']
|
|
240069
240331
|
"""
|
|
240070
240332
|
|
|
240333
|
+
use_adaptive_subdivision: bool
|
|
240334
|
+
""" Adaptively subdivide mesh based on camera distance
|
|
240335
|
+
|
|
240336
|
+
:type: bool
|
|
240337
|
+
"""
|
|
240338
|
+
|
|
240071
240339
|
use_creases: bool
|
|
240072
240340
|
""" Use mesh crease information to sharpen edges or corners
|
|
240073
240341
|
|
|
@@ -245362,18 +245630,6 @@ class ThemeImageEditor(bpy_struct):
|
|
|
245362
245630
|
:type: mathutils.Color
|
|
245363
245631
|
"""
|
|
245364
245632
|
|
|
245365
|
-
paint_curve_handle: bpy_prop_array[float]
|
|
245366
|
-
"""
|
|
245367
|
-
|
|
245368
|
-
:type: bpy_prop_array[float]
|
|
245369
|
-
"""
|
|
245370
|
-
|
|
245371
|
-
paint_curve_pivot: bpy_prop_array[float]
|
|
245372
|
-
"""
|
|
245373
|
-
|
|
245374
|
-
:type: bpy_prop_array[float]
|
|
245375
|
-
"""
|
|
245376
|
-
|
|
245377
245633
|
preview_stitch_active: bpy_prop_array[float]
|
|
245378
245634
|
"""
|
|
245379
245635
|
|
|
@@ -247263,6 +247519,12 @@ class ThemeUserInterface(bpy_struct):
|
|
|
247263
247519
|
:type: ThemeWidgetColors
|
|
247264
247520
|
"""
|
|
247265
247521
|
|
|
247522
|
+
wcol_curve: ThemeWidgetColors
|
|
247523
|
+
"""
|
|
247524
|
+
|
|
247525
|
+
:type: ThemeWidgetColors
|
|
247526
|
+
"""
|
|
247527
|
+
|
|
247266
247528
|
wcol_list_item: ThemeWidgetColors
|
|
247267
247529
|
"""
|
|
247268
247530
|
|
|
@@ -247448,6 +247710,12 @@ class ThemeView3D(bpy_struct):
|
|
|
247448
247710
|
:type: mathutils.Color
|
|
247449
247711
|
"""
|
|
247450
247712
|
|
|
247713
|
+
bevel: mathutils.Color
|
|
247714
|
+
"""
|
|
247715
|
+
|
|
247716
|
+
:type: mathutils.Color
|
|
247717
|
+
"""
|
|
247718
|
+
|
|
247451
247719
|
bone_locked_weight: bpy_prop_array[float]
|
|
247452
247720
|
""" Shade for bones corresponding to a locked weight group during painting
|
|
247453
247721
|
|
|
@@ -247502,13 +247770,7 @@ class ThemeView3D(bpy_struct):
|
|
|
247502
247770
|
:type: bpy_prop_array[float]
|
|
247503
247771
|
"""
|
|
247504
247772
|
|
|
247505
|
-
|
|
247506
|
-
"""
|
|
247507
|
-
|
|
247508
|
-
:type: mathutils.Color
|
|
247509
|
-
"""
|
|
247510
|
-
|
|
247511
|
-
edge_crease: mathutils.Color
|
|
247773
|
+
crease: mathutils.Color
|
|
247512
247774
|
"""
|
|
247513
247775
|
|
|
247514
247776
|
:type: mathutils.Color
|
|
@@ -247520,24 +247782,12 @@ class ThemeView3D(bpy_struct):
|
|
|
247520
247782
|
:type: mathutils.Color
|
|
247521
247783
|
"""
|
|
247522
247784
|
|
|
247523
|
-
edge_seam: mathutils.Color
|
|
247524
|
-
"""
|
|
247525
|
-
|
|
247526
|
-
:type: mathutils.Color
|
|
247527
|
-
"""
|
|
247528
|
-
|
|
247529
247785
|
edge_select: mathutils.Color
|
|
247530
247786
|
"""
|
|
247531
247787
|
|
|
247532
247788
|
:type: mathutils.Color
|
|
247533
247789
|
"""
|
|
247534
247790
|
|
|
247535
|
-
edge_sharp: mathutils.Color
|
|
247536
|
-
"""
|
|
247537
|
-
|
|
247538
|
-
:type: mathutils.Color
|
|
247539
|
-
"""
|
|
247540
|
-
|
|
247541
247791
|
edge_width: int
|
|
247542
247792
|
"""
|
|
247543
247793
|
|
|
@@ -247622,13 +247872,7 @@ class ThemeView3D(bpy_struct):
|
|
|
247622
247872
|
:type: int
|
|
247623
247873
|
"""
|
|
247624
247874
|
|
|
247625
|
-
|
|
247626
|
-
"""
|
|
247627
|
-
|
|
247628
|
-
:type: mathutils.Color
|
|
247629
|
-
"""
|
|
247630
|
-
|
|
247631
|
-
freestyle_face_mark: bpy_prop_array[float]
|
|
247875
|
+
freestyle: bpy_prop_array[float]
|
|
247632
247876
|
"""
|
|
247633
247877
|
|
|
247634
247878
|
:type: bpy_prop_array[float]
|
|
@@ -247718,16 +247962,16 @@ class ThemeView3D(bpy_struct):
|
|
|
247718
247962
|
:type: int
|
|
247719
247963
|
"""
|
|
247720
247964
|
|
|
247721
|
-
|
|
247965
|
+
seam: mathutils.Color
|
|
247722
247966
|
"""
|
|
247723
247967
|
|
|
247724
|
-
:type:
|
|
247968
|
+
:type: mathutils.Color
|
|
247725
247969
|
"""
|
|
247726
247970
|
|
|
247727
|
-
|
|
247971
|
+
sharp: mathutils.Color
|
|
247728
247972
|
"""
|
|
247729
247973
|
|
|
247730
|
-
:type:
|
|
247974
|
+
:type: mathutils.Color
|
|
247731
247975
|
"""
|
|
247732
247976
|
|
|
247733
247977
|
skin_root: mathutils.Color
|
|
@@ -247772,12 +248016,6 @@ class ThemeView3D(bpy_struct):
|
|
|
247772
248016
|
:type: mathutils.Color
|
|
247773
248017
|
"""
|
|
247774
248018
|
|
|
247775
|
-
vertex_bevel: mathutils.Color
|
|
247776
|
-
"""
|
|
247777
|
-
|
|
247778
|
-
:type: mathutils.Color
|
|
247779
|
-
"""
|
|
247780
|
-
|
|
247781
248019
|
vertex_normal: mathutils.Color
|
|
247782
248020
|
"""
|
|
247783
248021
|
|
|
@@ -251337,11 +251575,24 @@ class UILayout(bpy_struct):
|
|
|
251337
251575
|
:type socket: NodeSocket | None
|
|
251338
251576
|
"""
|
|
251339
251577
|
|
|
251340
|
-
def template_node_asset_menu_items(
|
|
251578
|
+
def template_node_asset_menu_items(
|
|
251579
|
+
self,
|
|
251580
|
+
*,
|
|
251581
|
+
catalog_path: str = "",
|
|
251582
|
+
operator: typing.Literal["ADD", "SWAP"] | None = "ADD",
|
|
251583
|
+
) -> None:
|
|
251341
251584
|
"""template_node_asset_menu_items
|
|
251342
251585
|
|
|
251343
|
-
|
|
251344
|
-
|
|
251586
|
+
:param catalog_path:
|
|
251587
|
+
:type catalog_path: str
|
|
251588
|
+
:param operator: Operator, The operator the asset menu will use
|
|
251589
|
+
|
|
251590
|
+
ADD
|
|
251591
|
+
Add Node -- Add a node to the active tree..
|
|
251592
|
+
|
|
251593
|
+
SWAP
|
|
251594
|
+
Swap Node -- Replace the selected nodes with the specified type..
|
|
251595
|
+
:type operator: typing.Literal['ADD','SWAP'] | None
|
|
251345
251596
|
"""
|
|
251346
251597
|
|
|
251347
251598
|
def template_modifier_asset_menu_items(self, *, catalog_path: str = "") -> None:
|
|
@@ -251453,7 +251704,7 @@ class UILayout(bpy_struct):
|
|
|
251453
251704
|
:type property: str
|
|
251454
251705
|
"""
|
|
251455
251706
|
|
|
251456
|
-
def template_recent_files(self, *, rows: int | None =
|
|
251707
|
+
def template_recent_files(self, *, rows: int | None = 6) -> int:
|
|
251457
251708
|
"""Show list of recently saved .blend files
|
|
251458
251709
|
|
|
251459
251710
|
:param rows: Maximum number of items to show
|
|
@@ -252690,10 +252941,10 @@ class UnknownType(bpy_struct):
|
|
|
252690
252941
|
class UserAssetLibrary(bpy_struct):
|
|
252691
252942
|
"""Settings to define a reusable library for Asset Browsers to use"""
|
|
252692
252943
|
|
|
252693
|
-
import_method: typing.Literal["LINK", "APPEND", "APPEND_REUSE"]
|
|
252944
|
+
import_method: typing.Literal["LINK", "APPEND", "APPEND_REUSE", "PACK"]
|
|
252694
252945
|
""" Determine how the asset will be imported, unless overridden by the Asset Browser
|
|
252695
252946
|
|
|
252696
|
-
:type: typing.Literal['LINK','APPEND','APPEND_REUSE']
|
|
252947
|
+
:type: typing.Literal['LINK','APPEND','APPEND_REUSE','PACK']
|
|
252697
252948
|
"""
|
|
252698
252949
|
|
|
252699
252950
|
name: str
|
|
@@ -256594,6 +256845,12 @@ class VolumeRender(bpy_struct):
|
|
|
256594
256845
|
:type: typing.Literal['OBJECT','WORLD']
|
|
256595
256846
|
"""
|
|
256596
256847
|
|
|
256848
|
+
step_size: float
|
|
256849
|
+
""" Distance between volume samples. Lower values render more detail at the cost of performance. If set to zero, the step size is automatically determined based on voxel size.
|
|
256850
|
+
|
|
256851
|
+
:type: float
|
|
256852
|
+
"""
|
|
256853
|
+
|
|
256597
256854
|
@classmethod
|
|
256598
256855
|
def bl_rna_get_subclass(
|
|
256599
256856
|
cls,
|
|
@@ -261226,120 +261483,6 @@ NODE_HT_header: bl_ui.space_node.NODE_HT_header
|
|
|
261226
261483
|
|
|
261227
261484
|
NODE_MT_add: bl_ui.space_node.NODE_MT_add
|
|
261228
261485
|
|
|
261229
|
-
NODE_MT_category_GEO_GROUP: bl_ui.node_add_menu_geometry.NODE_MT_category_GEO_GROUP
|
|
261230
|
-
|
|
261231
|
-
NODE_MT_category_GEO_OUTPUT: bl_ui.node_add_menu_geometry.NODE_MT_category_GEO_OUTPUT
|
|
261232
|
-
|
|
261233
|
-
NODE_MT_category_GEO_POINT: bl_ui.node_add_menu_geometry.NODE_MT_category_GEO_POINT
|
|
261234
|
-
|
|
261235
|
-
NODE_MT_category_GEO_TEXT: bl_ui.node_add_menu_geometry.NODE_MT_category_GEO_TEXT
|
|
261236
|
-
|
|
261237
|
-
NODE_MT_category_GEO_TEXTURE: bl_ui.node_add_menu_geometry.NODE_MT_category_GEO_TEXTURE
|
|
261238
|
-
|
|
261239
|
-
NODE_MT_category_GEO_UTILITIES: bl_ui.node_add_menu_geometry.NODE_MT_category_GEO_UTILITIES
|
|
261240
|
-
|
|
261241
|
-
NODE_MT_category_GEO_UTILITIES_DEPRECATED: bl_ui.node_add_menu_geometry.NODE_MT_category_GEO_UTILITIES_DEPRECATED
|
|
261242
|
-
|
|
261243
|
-
NODE_MT_category_GEO_UTILITIES_FIELD: bl_ui.node_add_menu_geometry.NODE_MT_category_GEO_UTILITIES_FIELD
|
|
261244
|
-
|
|
261245
|
-
NODE_MT_category_GEO_UTILITIES_MATH: bl_ui.node_add_menu_geometry.NODE_MT_category_GEO_UTILITIES_MATH
|
|
261246
|
-
|
|
261247
|
-
NODE_MT_category_GEO_UTILITIES_ROTATION: bl_ui.node_add_menu_geometry.NODE_MT_category_GEO_UTILITIES_ROTATION
|
|
261248
|
-
|
|
261249
|
-
NODE_MT_category_GEO_UV: bl_ui.node_add_menu_geometry.NODE_MT_category_GEO_UV
|
|
261250
|
-
|
|
261251
|
-
NODE_MT_category_GEO_VECTOR: bl_ui.node_add_menu_geometry.NODE_MT_category_GEO_VECTOR
|
|
261252
|
-
|
|
261253
|
-
NODE_MT_category_GEO_VOLUME: bl_ui.node_add_menu_geometry.NODE_MT_category_GEO_VOLUME
|
|
261254
|
-
|
|
261255
|
-
NODE_MT_category_PRIMITIVES_MESH: bl_ui.node_add_menu_geometry.NODE_MT_category_PRIMITIVES_MESH
|
|
261256
|
-
|
|
261257
|
-
NODE_MT_category_compositor_color: bl_ui.node_add_menu_compositor.NODE_MT_category_compositor_color
|
|
261258
|
-
|
|
261259
|
-
NODE_MT_category_compositor_color_adjust: bl_ui.node_add_menu_compositor.NODE_MT_category_compositor_color_adjust
|
|
261260
|
-
|
|
261261
|
-
NODE_MT_category_compositor_color_mix: bl_ui.node_add_menu_compositor.NODE_MT_category_compositor_color_mix
|
|
261262
|
-
|
|
261263
|
-
NODE_MT_category_compositor_filter: bl_ui.node_add_menu_compositor.NODE_MT_category_compositor_filter
|
|
261264
|
-
|
|
261265
|
-
NODE_MT_category_compositor_filter_blur: bl_ui.node_add_menu_compositor.NODE_MT_category_compositor_filter_blur
|
|
261266
|
-
|
|
261267
|
-
NODE_MT_category_compositor_group: bl_ui.node_add_menu_compositor.NODE_MT_category_compositor_group
|
|
261268
|
-
|
|
261269
|
-
NODE_MT_category_compositor_input: bl_ui.node_add_menu_compositor.NODE_MT_category_compositor_input
|
|
261270
|
-
|
|
261271
|
-
NODE_MT_category_compositor_input_constant: bl_ui.node_add_menu_compositor.NODE_MT_category_compositor_input_constant
|
|
261272
|
-
|
|
261273
|
-
NODE_MT_category_compositor_input_scene: bl_ui.node_add_menu_compositor.NODE_MT_category_compositor_input_scene
|
|
261274
|
-
|
|
261275
|
-
NODE_MT_category_compositor_keying: bl_ui.node_add_menu_compositor.NODE_MT_category_compositor_keying
|
|
261276
|
-
|
|
261277
|
-
NODE_MT_category_compositor_mask: bl_ui.node_add_menu_compositor.NODE_MT_category_compositor_mask
|
|
261278
|
-
|
|
261279
|
-
NODE_MT_category_compositor_output: bl_ui.node_add_menu_compositor.NODE_MT_category_compositor_output
|
|
261280
|
-
|
|
261281
|
-
NODE_MT_category_compositor_texture: bl_ui.node_add_menu_compositor.NODE_MT_category_compositor_texture
|
|
261282
|
-
|
|
261283
|
-
NODE_MT_category_compositor_tracking: bl_ui.node_add_menu_compositor.NODE_MT_category_compositor_tracking
|
|
261284
|
-
|
|
261285
|
-
NODE_MT_category_compositor_transform: bl_ui.node_add_menu_compositor.NODE_MT_category_compositor_transform
|
|
261286
|
-
|
|
261287
|
-
NODE_MT_category_compositor_utilities: bl_ui.node_add_menu_compositor.NODE_MT_category_compositor_utilities
|
|
261288
|
-
|
|
261289
|
-
NODE_MT_category_compositor_vector: bl_ui.node_add_menu_compositor.NODE_MT_category_compositor_vector
|
|
261290
|
-
|
|
261291
|
-
NODE_MT_category_import: bl_ui.node_add_menu_geometry.NODE_MT_category_import
|
|
261292
|
-
|
|
261293
|
-
NODE_MT_category_layout: bl_ui.node_add_menu.NODE_MT_category_layout
|
|
261294
|
-
|
|
261295
|
-
NODE_MT_category_shader_color: bl_ui.node_add_menu_shader.NODE_MT_category_shader_color
|
|
261296
|
-
|
|
261297
|
-
NODE_MT_category_shader_converter: bl_ui.node_add_menu_shader.NODE_MT_category_shader_converter
|
|
261298
|
-
|
|
261299
|
-
NODE_MT_category_shader_group: bl_ui.node_add_menu_shader.NODE_MT_category_shader_group
|
|
261300
|
-
|
|
261301
|
-
NODE_MT_category_shader_input: bl_ui.node_add_menu_shader.NODE_MT_category_shader_input
|
|
261302
|
-
|
|
261303
|
-
NODE_MT_category_shader_output: bl_ui.node_add_menu_shader.NODE_MT_category_shader_output
|
|
261304
|
-
|
|
261305
|
-
NODE_MT_category_shader_script: bl_ui.node_add_menu_shader.NODE_MT_category_shader_script
|
|
261306
|
-
|
|
261307
|
-
NODE_MT_category_shader_shader: bl_ui.node_add_menu_shader.NODE_MT_category_shader_shader
|
|
261308
|
-
|
|
261309
|
-
NODE_MT_category_shader_texture: bl_ui.node_add_menu_shader.NODE_MT_category_shader_texture
|
|
261310
|
-
|
|
261311
|
-
NODE_MT_category_shader_utilities: bl_ui.node_add_menu_shader.NODE_MT_category_shader_utilities
|
|
261312
|
-
|
|
261313
|
-
NODE_MT_category_shader_vector: bl_ui.node_add_menu_shader.NODE_MT_category_shader_vector
|
|
261314
|
-
|
|
261315
|
-
NODE_MT_category_simulation: bl_ui.node_add_menu_geometry.NODE_MT_category_simulation
|
|
261316
|
-
|
|
261317
|
-
NODE_MT_category_texture_color: bl_ui.node_add_menu_texture.NODE_MT_category_texture_color
|
|
261318
|
-
|
|
261319
|
-
NODE_MT_category_texture_converter: bl_ui.node_add_menu_texture.NODE_MT_category_texture_converter
|
|
261320
|
-
|
|
261321
|
-
NODE_MT_category_texture_distort: bl_ui.node_add_menu_texture.NODE_MT_category_texture_distort
|
|
261322
|
-
|
|
261323
|
-
NODE_MT_category_texture_group: bl_ui.node_add_menu_texture.NODE_MT_category_texture_group
|
|
261324
|
-
|
|
261325
|
-
NODE_MT_category_texture_input: bl_ui.node_add_menu_texture.NODE_MT_category_texture_input
|
|
261326
|
-
|
|
261327
|
-
NODE_MT_category_texture_output: bl_ui.node_add_menu_texture.NODE_MT_category_texture_output
|
|
261328
|
-
|
|
261329
|
-
NODE_MT_category_texture_pattern: bl_ui.node_add_menu_texture.NODE_MT_category_texture_pattern
|
|
261330
|
-
|
|
261331
|
-
NODE_MT_category_texture_texture: bl_ui.node_add_menu_texture.NODE_MT_category_texture_texture
|
|
261332
|
-
|
|
261333
|
-
NODE_MT_category_utilities_bundle: bl_ui.node_add_menu_geometry.NODE_MT_category_utilities_bundle
|
|
261334
|
-
|
|
261335
|
-
NODE_MT_category_utilities_closure: bl_ui.node_add_menu_geometry.NODE_MT_category_utilities_closure
|
|
261336
|
-
|
|
261337
|
-
NODE_MT_category_utilities_list: bl_ui.node_add_menu_geometry.NODE_MT_category_utilities_list
|
|
261338
|
-
|
|
261339
|
-
NODE_MT_category_utilities_matrix: bl_ui.node_add_menu_geometry.NODE_MT_category_utilities_matrix
|
|
261340
|
-
|
|
261341
|
-
NODE_MT_compositor_node_add_all: bl_ui.node_add_menu_compositor.NODE_MT_compositor_node_add_all
|
|
261342
|
-
|
|
261343
261486
|
NODE_MT_context_menu: bl_ui.space_node.NODE_MT_context_menu
|
|
261344
261487
|
|
|
261345
261488
|
NODE_MT_context_menu_select_menu: bl_ui.space_node.NODE_MT_context_menu_select_menu
|
|
@@ -261348,80 +261491,6 @@ NODE_MT_context_menu_show_hide_menu: bl_ui.space_node.NODE_MT_context_menu_show_
|
|
|
261348
261491
|
|
|
261349
261492
|
NODE_MT_editor_menus: bl_ui.space_node.NODE_MT_editor_menus
|
|
261350
261493
|
|
|
261351
|
-
NODE_MT_geometry_node_GEO_ATTRIBUTE: bl_ui.node_add_menu_geometry.NODE_MT_geometry_node_GEO_ATTRIBUTE
|
|
261352
|
-
|
|
261353
|
-
NODE_MT_geometry_node_GEO_COLOR: bl_ui.node_add_menu_geometry.NODE_MT_geometry_node_GEO_COLOR
|
|
261354
|
-
|
|
261355
|
-
NODE_MT_geometry_node_GEO_CURVE: bl_ui.node_add_menu_geometry.NODE_MT_geometry_node_GEO_CURVE
|
|
261356
|
-
|
|
261357
|
-
NODE_MT_geometry_node_GEO_CURVE_OPERATIONS: bl_ui.node_add_menu_geometry.NODE_MT_geometry_node_GEO_CURVE_OPERATIONS
|
|
261358
|
-
|
|
261359
|
-
NODE_MT_geometry_node_GEO_CURVE_READ: bl_ui.node_add_menu_geometry.NODE_MT_geometry_node_GEO_CURVE_READ
|
|
261360
|
-
|
|
261361
|
-
NODE_MT_geometry_node_GEO_CURVE_SAMPLE: bl_ui.node_add_menu_geometry.NODE_MT_geometry_node_GEO_CURVE_SAMPLE
|
|
261362
|
-
|
|
261363
|
-
NODE_MT_geometry_node_GEO_CURVE_WRITE: bl_ui.node_add_menu_geometry.NODE_MT_geometry_node_GEO_CURVE_WRITE
|
|
261364
|
-
|
|
261365
|
-
NODE_MT_geometry_node_GEO_GEOMETRY: bl_ui.node_add_menu_geometry.NODE_MT_geometry_node_GEO_GEOMETRY
|
|
261366
|
-
|
|
261367
|
-
NODE_MT_geometry_node_GEO_GEOMETRY_OPERATIONS: bl_ui.node_add_menu_geometry.NODE_MT_geometry_node_GEO_GEOMETRY_OPERATIONS
|
|
261368
|
-
|
|
261369
|
-
NODE_MT_geometry_node_GEO_GEOMETRY_READ: bl_ui.node_add_menu_geometry.NODE_MT_geometry_node_GEO_GEOMETRY_READ
|
|
261370
|
-
|
|
261371
|
-
NODE_MT_geometry_node_GEO_GEOMETRY_SAMPLE: bl_ui.node_add_menu_geometry.NODE_MT_geometry_node_GEO_GEOMETRY_SAMPLE
|
|
261372
|
-
|
|
261373
|
-
NODE_MT_geometry_node_GEO_GEOMETRY_WRITE: bl_ui.node_add_menu_geometry.NODE_MT_geometry_node_GEO_GEOMETRY_WRITE
|
|
261374
|
-
|
|
261375
|
-
NODE_MT_geometry_node_GEO_INPUT: bl_ui.node_add_menu_geometry.NODE_MT_geometry_node_GEO_INPUT
|
|
261376
|
-
|
|
261377
|
-
NODE_MT_geometry_node_GEO_INPUT_CONSTANT: bl_ui.node_add_menu_geometry.NODE_MT_geometry_node_GEO_INPUT_CONSTANT
|
|
261378
|
-
|
|
261379
|
-
NODE_MT_geometry_node_GEO_INPUT_GIZMO: bl_ui.node_add_menu_geometry.NODE_MT_geometry_node_GEO_INPUT_GIZMO
|
|
261380
|
-
|
|
261381
|
-
NODE_MT_geometry_node_GEO_INPUT_GROUP: bl_ui.node_add_menu_geometry.NODE_MT_geometry_node_GEO_INPUT_GROUP
|
|
261382
|
-
|
|
261383
|
-
NODE_MT_geometry_node_GEO_INPUT_SCENE: bl_ui.node_add_menu_geometry.NODE_MT_geometry_node_GEO_INPUT_SCENE
|
|
261384
|
-
|
|
261385
|
-
NODE_MT_geometry_node_GEO_INSTANCE: bl_ui.node_add_menu_geometry.NODE_MT_geometry_node_GEO_INSTANCE
|
|
261386
|
-
|
|
261387
|
-
NODE_MT_geometry_node_GEO_MATERIAL: bl_ui.node_add_menu_geometry.NODE_MT_geometry_node_GEO_MATERIAL
|
|
261388
|
-
|
|
261389
|
-
NODE_MT_geometry_node_GEO_MESH: bl_ui.node_add_menu_geometry.NODE_MT_geometry_node_GEO_MESH
|
|
261390
|
-
|
|
261391
|
-
NODE_MT_geometry_node_GEO_MESH_OPERATIONS: bl_ui.node_add_menu_geometry.NODE_MT_geometry_node_GEO_MESH_OPERATIONS
|
|
261392
|
-
|
|
261393
|
-
NODE_MT_geometry_node_GEO_MESH_READ: bl_ui.node_add_menu_geometry.NODE_MT_geometry_node_GEO_MESH_READ
|
|
261394
|
-
|
|
261395
|
-
NODE_MT_geometry_node_GEO_MESH_SAMPLE: bl_ui.node_add_menu_geometry.NODE_MT_geometry_node_GEO_MESH_SAMPLE
|
|
261396
|
-
|
|
261397
|
-
NODE_MT_geometry_node_GEO_MESH_WRITE: bl_ui.node_add_menu_geometry.NODE_MT_geometry_node_GEO_MESH_WRITE
|
|
261398
|
-
|
|
261399
|
-
NODE_MT_geometry_node_GEO_PRIMITIVES_CURVE: bl_ui.node_add_menu_geometry.NODE_MT_geometry_node_GEO_PRIMITIVES_CURVE
|
|
261400
|
-
|
|
261401
|
-
NODE_MT_geometry_node_GEO_VOLUME_OPERATIONS: bl_ui.node_add_menu_geometry.NODE_MT_geometry_node_GEO_VOLUME_OPERATIONS
|
|
261402
|
-
|
|
261403
|
-
NODE_MT_geometry_node_GEO_VOLUME_PRIMITIVES: bl_ui.node_add_menu_geometry.NODE_MT_geometry_node_GEO_VOLUME_PRIMITIVES
|
|
261404
|
-
|
|
261405
|
-
NODE_MT_geometry_node_GEO_VOLUME_READ: bl_ui.node_add_menu_geometry.NODE_MT_geometry_node_GEO_VOLUME_READ
|
|
261406
|
-
|
|
261407
|
-
NODE_MT_geometry_node_GEO_VOLUME_WRITE: bl_ui.node_add_menu_geometry.NODE_MT_geometry_node_GEO_VOLUME_WRITE
|
|
261408
|
-
|
|
261409
|
-
NODE_MT_geometry_node_add_all: bl_ui.node_add_menu_geometry.NODE_MT_geometry_node_add_all
|
|
261410
|
-
|
|
261411
|
-
NODE_MT_geometry_node_curve_topology: bl_ui.node_add_menu_geometry.NODE_MT_geometry_node_curve_topology
|
|
261412
|
-
|
|
261413
|
-
NODE_MT_geometry_node_grease_pencil: bl_ui.node_add_menu_geometry.NODE_MT_geometry_node_grease_pencil
|
|
261414
|
-
|
|
261415
|
-
NODE_MT_geometry_node_grease_pencil_operations: bl_ui.node_add_menu_geometry.NODE_MT_geometry_node_grease_pencil_operations
|
|
261416
|
-
|
|
261417
|
-
NODE_MT_geometry_node_grease_pencil_read: bl_ui.node_add_menu_geometry.NODE_MT_geometry_node_grease_pencil_read
|
|
261418
|
-
|
|
261419
|
-
NODE_MT_geometry_node_grease_pencil_write: bl_ui.node_add_menu_geometry.NODE_MT_geometry_node_grease_pencil_write
|
|
261420
|
-
|
|
261421
|
-
NODE_MT_geometry_node_mesh_topology: bl_ui.node_add_menu_geometry.NODE_MT_geometry_node_mesh_topology
|
|
261422
|
-
|
|
261423
|
-
NODE_MT_geometry_node_volume_sample: bl_ui.node_add_menu_geometry.NODE_MT_geometry_node_volume_sample
|
|
261424
|
-
|
|
261425
261494
|
NODE_MT_node: bl_ui.space_node.NODE_MT_node
|
|
261426
261495
|
|
|
261427
261496
|
NODE_MT_node_color_context_menu: bl_ui.space_node.NODE_MT_node_color_context_menu
|
|
@@ -261430,9 +261499,7 @@ NODE_MT_node_tree_interface_context_menu: bl_ui.space_node.NODE_MT_node_tree_int
|
|
|
261430
261499
|
|
|
261431
261500
|
NODE_MT_select: bl_ui.space_node.NODE_MT_select
|
|
261432
261501
|
|
|
261433
|
-
|
|
261434
|
-
|
|
261435
|
-
NODE_MT_texture_node_add_all: bl_ui.node_add_menu_texture.NODE_MT_texture_node_add_all
|
|
261502
|
+
NODE_MT_swap: bl_ui.space_node.NODE_MT_swap
|
|
261436
261503
|
|
|
261437
261504
|
NODE_MT_view: bl_ui.space_node.NODE_MT_view
|
|
261438
261505
|
|
|
@@ -261450,6 +261517,8 @@ NODE_OT_add_repeat_zone: bl_operators.node.NODE_OT_add_repeat_zone
|
|
|
261450
261517
|
|
|
261451
261518
|
NODE_OT_add_simulation_zone: bl_operators.node.NODE_OT_add_simulation_zone
|
|
261452
261519
|
|
|
261520
|
+
NODE_OT_add_zone: bl_operators.node.NODE_OT_add_zone
|
|
261521
|
+
|
|
261453
261522
|
NODE_OT_collapse_hide_unused_toggle: bl_operators.node.NODE_OT_collapse_hide_unused_toggle
|
|
261454
261523
|
|
|
261455
261524
|
NODE_OT_connect_to_output: bl_operators.connect_to_output.NODE_OT_connect_to_output
|
|
@@ -261464,6 +261533,12 @@ NODE_OT_interface_item_remove: bl_operators.node.NODE_OT_interface_item_remove
|
|
|
261464
261533
|
|
|
261465
261534
|
NODE_OT_interface_item_unlink_panel_toggle: bl_operators.node.NODE_OT_interface_item_unlink_panel_toggle
|
|
261466
261535
|
|
|
261536
|
+
NODE_OT_swap_empty_group: bl_operators.node.NODE_OT_swap_empty_group
|
|
261537
|
+
|
|
261538
|
+
NODE_OT_swap_node: bl_operators.node.NODE_OT_swap_node
|
|
261539
|
+
|
|
261540
|
+
NODE_OT_swap_zone: bl_operators.node.NODE_OT_swap_zone
|
|
261541
|
+
|
|
261467
261542
|
NODE_OT_tree_path_parent: bl_operators.node.NODE_OT_tree_path_parent
|
|
261468
261543
|
|
|
261469
261544
|
NODE_OT_viewer_shortcut_get: bl_operators.node.NODE_OT_viewer_shortcut_get
|
|
@@ -262098,6 +262173,8 @@ RENDER_MT_pixeldensity_presets: bl_ui.properties_output.RENDER_MT_pixeldensity_p
|
|
|
262098
262173
|
|
|
262099
262174
|
RENDER_PT_color_management: bl_ui.properties_render.RENDER_PT_color_management
|
|
262100
262175
|
|
|
262176
|
+
RENDER_PT_color_management_advanced: bl_ui.properties_render.RENDER_PT_color_management_advanced
|
|
262177
|
+
|
|
262101
262178
|
RENDER_PT_color_management_curves: bl_ui.properties_render.RENDER_PT_color_management_curves
|
|
262102
262179
|
|
|
262103
262180
|
RENDER_PT_color_management_white_balance: bl_ui.properties_render.RENDER_PT_color_management_white_balance
|
|
@@ -262356,8 +262433,6 @@ SEQUENCER_MT_view: bl_ui.space_sequencer.SEQUENCER_MT_view
|
|
|
262356
262433
|
|
|
262357
262434
|
SEQUENCER_MT_view_pie: bl_ui.space_sequencer.SEQUENCER_MT_view_pie
|
|
262358
262435
|
|
|
262359
|
-
SEQUENCER_MT_view_render: bl_ui.space_sequencer.SEQUENCER_MT_view_render
|
|
262360
|
-
|
|
262361
262436
|
SEQUENCER_PT_active_tool: bl_ui.space_sequencer.SEQUENCER_PT_active_tool
|
|
262362
262437
|
|
|
262363
262438
|
SEQUENCER_PT_adjust_color: bl_ui.space_sequencer.SEQUENCER_PT_adjust_color
|
|
@@ -263216,8 +263291,6 @@ VIEW3D_MT_view_pie: bl_ui.space_view3d.VIEW3D_MT_view_pie
|
|
|
263216
263291
|
|
|
263217
263292
|
VIEW3D_MT_view_regions: bl_ui.space_view3d.VIEW3D_MT_view_regions
|
|
263218
263293
|
|
|
263219
|
-
VIEW3D_MT_view_render: bl_ui.space_view3d.VIEW3D_MT_view_render
|
|
263220
|
-
|
|
263221
263294
|
VIEW3D_MT_view_viewpoint: bl_ui.space_view3d.VIEW3D_MT_view_viewpoint
|
|
263222
263295
|
|
|
263223
263296
|
VIEW3D_MT_volume_add: bl_ui.space_view3d.VIEW3D_MT_volume_add
|