fake-bpy-module 20250925__py3-none-any.whl → 20250926__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 +245 -20
- bl_ui/generic_ui_list/__init__.pyi +2 -2
- bl_ui/node_add_menu/__init__.pyi +258 -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/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 +0 -22
- bpy/ops/node/__init__.pyi +135 -16
- bpy/stub_internal/rna_enums/__init__.pyi +13 -40
- bpy/types/__init__.pyi +105 -262
- {fake_bpy_module-20250925.dist-info → fake_bpy_module-20250926.dist-info}/METADATA +1 -1
- {fake_bpy_module-20250925.dist-info → fake_bpy_module-20250926.dist-info}/RECORD +20 -20
- freestyle/utils/__init__.pyi +1 -1
- mathutils/bvhtree/__init__.pyi +2 -3
- {fake_bpy_module-20250925.dist-info → fake_bpy_module-20250926.dist-info}/WHEEL +0 -0
- {fake_bpy_module-20250925.dist-info → fake_bpy_module-20250926.dist-info}/top_level.txt +0 -0
bpy/types/__init__.pyi
CHANGED
|
@@ -7405,7 +7405,6 @@ Types with Custom Property Support <bpy_types_custom_properties>
|
|
|
7405
7405
|
* RenderEngine.pass_by_index_get
|
|
7406
7406
|
* RenderLayer.passes
|
|
7407
7407
|
* RenderPasses.find_by_name
|
|
7408
|
-
* RenderPasses.find_by_type
|
|
7409
7408
|
|
|
7410
7409
|
:columns: 2
|
|
7411
7410
|
|
|
@@ -20801,6 +20800,7 @@ of the scene and only show nodes of the renderer they are designed for.
|
|
|
20801
20800
|
--------------------
|
|
20802
20801
|
|
|
20803
20802
|
* ThemeUserInterface.wcol_box
|
|
20803
|
+
* ThemeUserInterface.wcol_curve
|
|
20804
20804
|
* ThemeUserInterface.wcol_list_item
|
|
20805
20805
|
* ThemeUserInterface.wcol_menu
|
|
20806
20806
|
* ThemeUserInterface.wcol_menu_back
|
|
@@ -105725,7 +105725,7 @@ object, placing it into a view layer, selecting it and making it active.
|
|
|
105725
105725
|
--------------------
|
|
105726
105726
|
|
|
105727
105727
|
* Brush.automasking_cavity_curve
|
|
105728
|
-
* Brush.
|
|
105728
|
+
* Brush.curve_distance_falloff
|
|
105729
105729
|
* Brush.curve_jitter
|
|
105730
105730
|
* Brush.curve_random_hue
|
|
105731
105731
|
* Brush.curve_random_saturation
|
|
@@ -110954,11 +110954,6 @@ import bl_ui
|
|
|
110954
110954
|
import bl_ui.anim
|
|
110955
110955
|
import bl_ui.asset_shelf
|
|
110956
110956
|
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
110957
|
import bl_ui.properties_collection
|
|
110963
110958
|
import bl_ui.properties_constraint
|
|
110964
110959
|
import bl_ui.properties_data_armature
|
|
@@ -122067,21 +122062,6 @@ class PoseBoneConstraints(bpy_prop_collection[Constraint], bpy_struct):
|
|
|
122067
122062
|
class RenderPasses(bpy_prop_collection[RenderPass], bpy_struct):
|
|
122068
122063
|
"""Collection of render passes"""
|
|
122069
122064
|
|
|
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
122065
|
def find_by_name(self, name: str, view: str) -> RenderPass:
|
|
122086
122066
|
"""Get the render pass for a given name and view
|
|
122087
122067
|
|
|
@@ -130548,22 +130528,22 @@ class Brush(ID, bpy_struct):
|
|
|
130548
130528
|
:type: int
|
|
130549
130529
|
"""
|
|
130550
130530
|
|
|
130551
|
-
|
|
130531
|
+
curve_distance_falloff: CurveMapping
|
|
130552
130532
|
""" Editable falloff curve
|
|
130553
130533
|
|
|
130554
130534
|
:type: CurveMapping
|
|
130555
130535
|
"""
|
|
130556
130536
|
|
|
130557
|
-
|
|
130558
|
-
"""
|
|
130537
|
+
curve_distance_falloff_preset: bpy.stub_internal.rna_enums.BrushCurvePresetItems
|
|
130538
|
+
"""
|
|
130559
130539
|
|
|
130560
|
-
:type:
|
|
130540
|
+
:type: bpy.stub_internal.rna_enums.BrushCurvePresetItems
|
|
130561
130541
|
"""
|
|
130562
130542
|
|
|
130563
|
-
|
|
130564
|
-
"""
|
|
130543
|
+
curve_jitter: CurveMapping | None
|
|
130544
|
+
""" Curve used to map pressure to brush jitter
|
|
130565
130545
|
|
|
130566
|
-
:type:
|
|
130546
|
+
:type: CurveMapping | None
|
|
130567
130547
|
"""
|
|
130568
130548
|
|
|
130569
130549
|
curve_random_hue: CurveMapping | None
|
|
@@ -162114,7 +162094,7 @@ class GeometryNodeGetNamedGrid(GeometryNode, NodeInternal, Node, bpy_struct):
|
|
|
162114
162094
|
"""Get volume grid from a volume geometry with the specified name"""
|
|
162115
162095
|
|
|
162116
162096
|
data_type: bpy.stub_internal.rna_enums.NodeSocketDataTypeItems
|
|
162117
|
-
"""
|
|
162097
|
+
""" Node socket data type
|
|
162118
162098
|
|
|
162119
162099
|
:type: bpy.stub_internal.rna_enums.NodeSocketDataTypeItems
|
|
162120
162100
|
"""
|
|
@@ -162507,7 +162487,7 @@ class GeometryNodeGridInfo(GeometryNode, NodeInternal, Node, bpy_struct):
|
|
|
162507
162487
|
"""Retrieve information about a volume grid"""
|
|
162508
162488
|
|
|
162509
162489
|
data_type: bpy.stub_internal.rna_enums.NodeSocketDataTypeItems
|
|
162510
|
-
"""
|
|
162490
|
+
""" Node socket data type
|
|
162511
162491
|
|
|
162512
162492
|
:type: bpy.stub_internal.rna_enums.NodeSocketDataTypeItems
|
|
162513
162493
|
"""
|
|
@@ -172382,6 +172362,12 @@ class GeometryNodeTree(NodeTree, ID, bpy_struct):
|
|
|
172382
172362
|
:type: bool
|
|
172383
172363
|
"""
|
|
172384
172364
|
|
|
172365
|
+
show_modifier_manage_panel: bool
|
|
172366
|
+
""" Turn on the option to display the manage panel when creating a modifier
|
|
172367
|
+
|
|
172368
|
+
:type: bool
|
|
172369
|
+
"""
|
|
172370
|
+
|
|
172385
172371
|
use_wait_for_click: bool
|
|
172386
172372
|
""" Wait for mouse click input before running the operator from a menu
|
|
172387
172373
|
|
|
@@ -181281,6 +181267,12 @@ class ImageFormatSettings(bpy_struct):
|
|
|
181281
181267
|
:type: bool
|
|
181282
181268
|
"""
|
|
181283
181269
|
|
|
181270
|
+
use_exr_interleave: bool
|
|
181271
|
+
""" Use legacy interleaved storage of views, layers and passes for compatibility with applications that do not support more efficient multi-part OpenEXR files.
|
|
181272
|
+
|
|
181273
|
+
:type: bool
|
|
181274
|
+
"""
|
|
181275
|
+
|
|
181284
181276
|
use_jpeg2k_cinema_48: bool
|
|
181285
181277
|
""" Use OpenJPEG Cinema Preset (48fps)
|
|
181286
181278
|
|
|
@@ -207860,6 +207852,12 @@ class NodesModifier(Modifier, bpy_struct):
|
|
|
207860
207852
|
:type: bool
|
|
207861
207853
|
"""
|
|
207862
207854
|
|
|
207855
|
+
show_manage_panel: bool
|
|
207856
|
+
"""
|
|
207857
|
+
|
|
207858
|
+
:type: bool
|
|
207859
|
+
"""
|
|
207860
|
+
|
|
207863
207861
|
def bl_system_properties_get(
|
|
207864
207862
|
self, *, do_create: bool | None = False
|
|
207865
207863
|
) -> PropertyGroup:
|
|
@@ -240020,6 +240018,24 @@ class StudioLight(bpy_struct):
|
|
|
240020
240018
|
class SubsurfModifier(Modifier, bpy_struct):
|
|
240021
240019
|
"""Subdivision surface modifier"""
|
|
240022
240020
|
|
|
240021
|
+
adaptive_object_edge_length: float
|
|
240022
|
+
""" Target object space edge length for adaptive subdivision
|
|
240023
|
+
|
|
240024
|
+
:type: float
|
|
240025
|
+
"""
|
|
240026
|
+
|
|
240027
|
+
adaptive_pixel_size: float
|
|
240028
|
+
""" Target polygon pixel size for adaptive subdivision
|
|
240029
|
+
|
|
240030
|
+
:type: float
|
|
240031
|
+
"""
|
|
240032
|
+
|
|
240033
|
+
adaptive_space: typing.Literal["PIXEL", "OBJECT"]
|
|
240034
|
+
""" How to adaptively subdivide the mesh
|
|
240035
|
+
|
|
240036
|
+
:type: typing.Literal['PIXEL','OBJECT']
|
|
240037
|
+
"""
|
|
240038
|
+
|
|
240023
240039
|
boundary_smooth: bpy.stub_internal.rna_enums.SubdivisionBoundarySmoothItems
|
|
240024
240040
|
""" Controls how open boundaries are smoothed
|
|
240025
240041
|
|
|
@@ -240068,6 +240084,12 @@ class SubsurfModifier(Modifier, bpy_struct):
|
|
|
240068
240084
|
:type: typing.Literal['CATMULL_CLARK','SIMPLE']
|
|
240069
240085
|
"""
|
|
240070
240086
|
|
|
240087
|
+
use_adaptive_subdivision: bool
|
|
240088
|
+
""" Adaptively subdivide mesh based on camera distance
|
|
240089
|
+
|
|
240090
|
+
:type: bool
|
|
240091
|
+
"""
|
|
240092
|
+
|
|
240071
240093
|
use_creases: bool
|
|
240072
240094
|
""" Use mesh crease information to sharpen edges or corners
|
|
240073
240095
|
|
|
@@ -247263,6 +247285,12 @@ class ThemeUserInterface(bpy_struct):
|
|
|
247263
247285
|
:type: ThemeWidgetColors
|
|
247264
247286
|
"""
|
|
247265
247287
|
|
|
247288
|
+
wcol_curve: ThemeWidgetColors
|
|
247289
|
+
"""
|
|
247290
|
+
|
|
247291
|
+
:type: ThemeWidgetColors
|
|
247292
|
+
"""
|
|
247293
|
+
|
|
247266
247294
|
wcol_list_item: ThemeWidgetColors
|
|
247267
247295
|
"""
|
|
247268
247296
|
|
|
@@ -247448,6 +247476,12 @@ class ThemeView3D(bpy_struct):
|
|
|
247448
247476
|
:type: mathutils.Color
|
|
247449
247477
|
"""
|
|
247450
247478
|
|
|
247479
|
+
bevel: mathutils.Color
|
|
247480
|
+
"""
|
|
247481
|
+
|
|
247482
|
+
:type: mathutils.Color
|
|
247483
|
+
"""
|
|
247484
|
+
|
|
247451
247485
|
bone_locked_weight: bpy_prop_array[float]
|
|
247452
247486
|
""" Shade for bones corresponding to a locked weight group during painting
|
|
247453
247487
|
|
|
@@ -247502,13 +247536,7 @@ class ThemeView3D(bpy_struct):
|
|
|
247502
247536
|
:type: bpy_prop_array[float]
|
|
247503
247537
|
"""
|
|
247504
247538
|
|
|
247505
|
-
|
|
247506
|
-
"""
|
|
247507
|
-
|
|
247508
|
-
:type: mathutils.Color
|
|
247509
|
-
"""
|
|
247510
|
-
|
|
247511
|
-
edge_crease: mathutils.Color
|
|
247539
|
+
crease: mathutils.Color
|
|
247512
247540
|
"""
|
|
247513
247541
|
|
|
247514
247542
|
:type: mathutils.Color
|
|
@@ -247520,24 +247548,12 @@ class ThemeView3D(bpy_struct):
|
|
|
247520
247548
|
:type: mathutils.Color
|
|
247521
247549
|
"""
|
|
247522
247550
|
|
|
247523
|
-
edge_seam: mathutils.Color
|
|
247524
|
-
"""
|
|
247525
|
-
|
|
247526
|
-
:type: mathutils.Color
|
|
247527
|
-
"""
|
|
247528
|
-
|
|
247529
247551
|
edge_select: mathutils.Color
|
|
247530
247552
|
"""
|
|
247531
247553
|
|
|
247532
247554
|
:type: mathutils.Color
|
|
247533
247555
|
"""
|
|
247534
247556
|
|
|
247535
|
-
edge_sharp: mathutils.Color
|
|
247536
|
-
"""
|
|
247537
|
-
|
|
247538
|
-
:type: mathutils.Color
|
|
247539
|
-
"""
|
|
247540
|
-
|
|
247541
247557
|
edge_width: int
|
|
247542
247558
|
"""
|
|
247543
247559
|
|
|
@@ -247622,13 +247638,7 @@ class ThemeView3D(bpy_struct):
|
|
|
247622
247638
|
:type: int
|
|
247623
247639
|
"""
|
|
247624
247640
|
|
|
247625
|
-
|
|
247626
|
-
"""
|
|
247627
|
-
|
|
247628
|
-
:type: mathutils.Color
|
|
247629
|
-
"""
|
|
247630
|
-
|
|
247631
|
-
freestyle_face_mark: bpy_prop_array[float]
|
|
247641
|
+
freestyle: bpy_prop_array[float]
|
|
247632
247642
|
"""
|
|
247633
247643
|
|
|
247634
247644
|
:type: bpy_prop_array[float]
|
|
@@ -247730,6 +247740,18 @@ class ThemeView3D(bpy_struct):
|
|
|
247730
247740
|
:type: bpy_prop_array[float]
|
|
247731
247741
|
"""
|
|
247732
247742
|
|
|
247743
|
+
seam: mathutils.Color
|
|
247744
|
+
"""
|
|
247745
|
+
|
|
247746
|
+
:type: mathutils.Color
|
|
247747
|
+
"""
|
|
247748
|
+
|
|
247749
|
+
sharp: mathutils.Color
|
|
247750
|
+
"""
|
|
247751
|
+
|
|
247752
|
+
:type: mathutils.Color
|
|
247753
|
+
"""
|
|
247754
|
+
|
|
247733
247755
|
skin_root: mathutils.Color
|
|
247734
247756
|
"""
|
|
247735
247757
|
|
|
@@ -247772,12 +247794,6 @@ class ThemeView3D(bpy_struct):
|
|
|
247772
247794
|
:type: mathutils.Color
|
|
247773
247795
|
"""
|
|
247774
247796
|
|
|
247775
|
-
vertex_bevel: mathutils.Color
|
|
247776
|
-
"""
|
|
247777
|
-
|
|
247778
|
-
:type: mathutils.Color
|
|
247779
|
-
"""
|
|
247780
|
-
|
|
247781
247797
|
vertex_normal: mathutils.Color
|
|
247782
247798
|
"""
|
|
247783
247799
|
|
|
@@ -251337,11 +251353,24 @@ class UILayout(bpy_struct):
|
|
|
251337
251353
|
:type socket: NodeSocket | None
|
|
251338
251354
|
"""
|
|
251339
251355
|
|
|
251340
|
-
def template_node_asset_menu_items(
|
|
251356
|
+
def template_node_asset_menu_items(
|
|
251357
|
+
self,
|
|
251358
|
+
*,
|
|
251359
|
+
catalog_path: str = "",
|
|
251360
|
+
operator: typing.Literal["ADD", "SWAP"] | None = "ADD",
|
|
251361
|
+
) -> None:
|
|
251341
251362
|
"""template_node_asset_menu_items
|
|
251342
251363
|
|
|
251343
|
-
|
|
251344
|
-
|
|
251364
|
+
:param catalog_path:
|
|
251365
|
+
:type catalog_path: str
|
|
251366
|
+
:param operator: Operator, The operator the asset menu will use
|
|
251367
|
+
|
|
251368
|
+
ADD
|
|
251369
|
+
Add Node -- Add a node to the active tree..
|
|
251370
|
+
|
|
251371
|
+
SWAP
|
|
251372
|
+
Swap Node -- Replace the selected nodes with the specified type..
|
|
251373
|
+
:type operator: typing.Literal['ADD','SWAP'] | None
|
|
251345
251374
|
"""
|
|
251346
251375
|
|
|
251347
251376
|
def template_modifier_asset_menu_items(self, *, catalog_path: str = "") -> None:
|
|
@@ -251453,7 +251482,7 @@ class UILayout(bpy_struct):
|
|
|
251453
251482
|
:type property: str
|
|
251454
251483
|
"""
|
|
251455
251484
|
|
|
251456
|
-
def template_recent_files(self, *, rows: int | None =
|
|
251485
|
+
def template_recent_files(self, *, rows: int | None = 6) -> int:
|
|
251457
251486
|
"""Show list of recently saved .blend files
|
|
251458
251487
|
|
|
251459
251488
|
:param rows: Maximum number of items to show
|
|
@@ -261226,120 +261255,6 @@ NODE_HT_header: bl_ui.space_node.NODE_HT_header
|
|
|
261226
261255
|
|
|
261227
261256
|
NODE_MT_add: bl_ui.space_node.NODE_MT_add
|
|
261228
261257
|
|
|
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
261258
|
NODE_MT_context_menu: bl_ui.space_node.NODE_MT_context_menu
|
|
261344
261259
|
|
|
261345
261260
|
NODE_MT_context_menu_select_menu: bl_ui.space_node.NODE_MT_context_menu_select_menu
|
|
@@ -261348,80 +261263,6 @@ NODE_MT_context_menu_show_hide_menu: bl_ui.space_node.NODE_MT_context_menu_show_
|
|
|
261348
261263
|
|
|
261349
261264
|
NODE_MT_editor_menus: bl_ui.space_node.NODE_MT_editor_menus
|
|
261350
261265
|
|
|
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
261266
|
NODE_MT_node: bl_ui.space_node.NODE_MT_node
|
|
261426
261267
|
|
|
261427
261268
|
NODE_MT_node_color_context_menu: bl_ui.space_node.NODE_MT_node_color_context_menu
|
|
@@ -261430,9 +261271,7 @@ NODE_MT_node_tree_interface_context_menu: bl_ui.space_node.NODE_MT_node_tree_int
|
|
|
261430
261271
|
|
|
261431
261272
|
NODE_MT_select: bl_ui.space_node.NODE_MT_select
|
|
261432
261273
|
|
|
261433
|
-
|
|
261434
|
-
|
|
261435
|
-
NODE_MT_texture_node_add_all: bl_ui.node_add_menu_texture.NODE_MT_texture_node_add_all
|
|
261274
|
+
NODE_MT_swap: bl_ui.space_node.NODE_MT_swap
|
|
261436
261275
|
|
|
261437
261276
|
NODE_MT_view: bl_ui.space_node.NODE_MT_view
|
|
261438
261277
|
|
|
@@ -261450,6 +261289,8 @@ NODE_OT_add_repeat_zone: bl_operators.node.NODE_OT_add_repeat_zone
|
|
|
261450
261289
|
|
|
261451
261290
|
NODE_OT_add_simulation_zone: bl_operators.node.NODE_OT_add_simulation_zone
|
|
261452
261291
|
|
|
261292
|
+
NODE_OT_add_zone: bl_operators.node.NODE_OT_add_zone
|
|
261293
|
+
|
|
261453
261294
|
NODE_OT_collapse_hide_unused_toggle: bl_operators.node.NODE_OT_collapse_hide_unused_toggle
|
|
261454
261295
|
|
|
261455
261296
|
NODE_OT_connect_to_output: bl_operators.connect_to_output.NODE_OT_connect_to_output
|
|
@@ -261464,6 +261305,12 @@ NODE_OT_interface_item_remove: bl_operators.node.NODE_OT_interface_item_remove
|
|
|
261464
261305
|
|
|
261465
261306
|
NODE_OT_interface_item_unlink_panel_toggle: bl_operators.node.NODE_OT_interface_item_unlink_panel_toggle
|
|
261466
261307
|
|
|
261308
|
+
NODE_OT_swap_empty_group: bl_operators.node.NODE_OT_swap_empty_group
|
|
261309
|
+
|
|
261310
|
+
NODE_OT_swap_node: bl_operators.node.NODE_OT_swap_node
|
|
261311
|
+
|
|
261312
|
+
NODE_OT_swap_zone: bl_operators.node.NODE_OT_swap_zone
|
|
261313
|
+
|
|
261467
261314
|
NODE_OT_tree_path_parent: bl_operators.node.NODE_OT_tree_path_parent
|
|
261468
261315
|
|
|
261469
261316
|
NODE_OT_viewer_shortcut_get: bl_operators.node.NODE_OT_viewer_shortcut_get
|
|
@@ -262356,8 +262203,6 @@ SEQUENCER_MT_view: bl_ui.space_sequencer.SEQUENCER_MT_view
|
|
|
262356
262203
|
|
|
262357
262204
|
SEQUENCER_MT_view_pie: bl_ui.space_sequencer.SEQUENCER_MT_view_pie
|
|
262358
262205
|
|
|
262359
|
-
SEQUENCER_MT_view_render: bl_ui.space_sequencer.SEQUENCER_MT_view_render
|
|
262360
|
-
|
|
262361
262206
|
SEQUENCER_PT_active_tool: bl_ui.space_sequencer.SEQUENCER_PT_active_tool
|
|
262362
262207
|
|
|
262363
262208
|
SEQUENCER_PT_adjust_color: bl_ui.space_sequencer.SEQUENCER_PT_adjust_color
|
|
@@ -263216,8 +263061,6 @@ VIEW3D_MT_view_pie: bl_ui.space_view3d.VIEW3D_MT_view_pie
|
|
|
263216
263061
|
|
|
263217
263062
|
VIEW3D_MT_view_regions: bl_ui.space_view3d.VIEW3D_MT_view_regions
|
|
263218
263063
|
|
|
263219
|
-
VIEW3D_MT_view_render: bl_ui.space_view3d.VIEW3D_MT_view_render
|
|
263220
|
-
|
|
263221
263064
|
VIEW3D_MT_view_viewpoint: bl_ui.space_view3d.VIEW3D_MT_view_viewpoint
|
|
263222
263065
|
|
|
263223
263066
|
VIEW3D_MT_volume_add: bl_ui.space_view3d.VIEW3D_MT_volume_add
|