fake-bpy-module 20250613__py3-none-any.whl → 20250614__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.

@@ -319,7 +319,7 @@ class DATA_PT_lightprobe_display(DataButtonsPanel, bpy.types.Panel):
319
319
  :param context:
320
320
  """
321
321
 
322
- class DATA_PT_lightprobe_display_eevee_next(DataButtonsPanel, bpy.types.Panel):
322
+ class DATA_PT_lightprobe_display_eevee(DataButtonsPanel, bpy.types.Panel):
323
323
  COMPAT_ENGINES: typing.Any
324
324
  bl_context: typing.Any
325
325
  bl_label: typing.Any
@@ -349,7 +349,7 @@ class DATA_PT_lightprobe_display_eevee_next(DataButtonsPanel, bpy.types.Panel):
349
349
  :param context:
350
350
  """
351
351
 
352
- class DATA_PT_lightprobe_eevee_next(DataButtonsPanel, bpy.types.Panel):
352
+ class DATA_PT_lightprobe_eevee(DataButtonsPanel, bpy.types.Panel):
353
353
  COMPAT_ENGINES: typing.Any
354
354
  bl_context: typing.Any
355
355
  bl_label: typing.Any
@@ -109,10 +109,11 @@ class EEVEE_MATERIAL_PT_settings(MaterialButtonsPanel, bpy.types.Panel):
109
109
  :param context:
110
110
  """
111
111
 
112
- class EEVEE_MATERIAL_PT_surface(MaterialButtonsPanel, bpy.types.Panel):
112
+ class EEVEE_MATERIAL_PT_settings_surface(MaterialButtonsPanel, bpy.types.Panel):
113
113
  COMPAT_ENGINES: typing.Any
114
114
  bl_context: typing.Any
115
115
  bl_label: typing.Any
116
+ bl_parent_id: typing.Any
116
117
  bl_region_type: typing.Any
117
118
  bl_rna: typing.Any
118
119
  bl_space_type: typing.Any
@@ -138,15 +139,14 @@ class EEVEE_MATERIAL_PT_surface(MaterialButtonsPanel, bpy.types.Panel):
138
139
  :param context:
139
140
  """
140
141
 
141
- class EEVEE_MATERIAL_PT_thickness(MaterialButtonsPanel, bpy.types.Panel):
142
+ class EEVEE_MATERIAL_PT_settings_volume(MaterialButtonsPanel, bpy.types.Panel):
142
143
  COMPAT_ENGINES: typing.Any
143
144
  bl_context: typing.Any
144
145
  bl_label: typing.Any
145
- bl_options: typing.Any
146
+ bl_parent_id: typing.Any
146
147
  bl_region_type: typing.Any
147
148
  bl_rna: typing.Any
148
149
  bl_space_type: typing.Any
149
- bl_translation_context: typing.Any
150
150
  id_data: typing.Any
151
151
 
152
152
  def bl_rna_get_subclass(self) -> bpy.types.Struct:
@@ -169,18 +169,10 @@ class EEVEE_MATERIAL_PT_thickness(MaterialButtonsPanel, bpy.types.Panel):
169
169
  :param context:
170
170
  """
171
171
 
172
- @classmethod
173
- def poll(cls, context) -> None:
174
- """
175
-
176
- :param context:
177
- """
178
-
179
- class EEVEE_MATERIAL_PT_viewport_settings(MaterialButtonsPanel, bpy.types.Panel):
172
+ class EEVEE_MATERIAL_PT_surface(MaterialButtonsPanel, bpy.types.Panel):
180
173
  COMPAT_ENGINES: typing.Any
181
174
  bl_context: typing.Any
182
175
  bl_label: typing.Any
183
- bl_parent_id: typing.Any
184
176
  bl_region_type: typing.Any
185
177
  bl_rna: typing.Any
186
178
  bl_space_type: typing.Any
@@ -206,7 +198,7 @@ class EEVEE_MATERIAL_PT_viewport_settings(MaterialButtonsPanel, bpy.types.Panel)
206
198
  :param context:
207
199
  """
208
200
 
209
- class EEVEE_MATERIAL_PT_volume(MaterialButtonsPanel, bpy.types.Panel):
201
+ class EEVEE_MATERIAL_PT_thickness(MaterialButtonsPanel, bpy.types.Panel):
210
202
  COMPAT_ENGINES: typing.Any
211
203
  bl_context: typing.Any
212
204
  bl_label: typing.Any
@@ -244,10 +236,11 @@ class EEVEE_MATERIAL_PT_volume(MaterialButtonsPanel, bpy.types.Panel):
244
236
  :param context:
245
237
  """
246
238
 
247
- class EEVEE_NEXT_MATERIAL_PT_settings(MaterialButtonsPanel, bpy.types.Panel):
239
+ class EEVEE_MATERIAL_PT_viewport_settings(MaterialButtonsPanel, bpy.types.Panel):
248
240
  COMPAT_ENGINES: typing.Any
249
241
  bl_context: typing.Any
250
242
  bl_label: typing.Any
243
+ bl_parent_id: typing.Any
251
244
  bl_region_type: typing.Any
252
245
  bl_rna: typing.Any
253
246
  bl_space_type: typing.Any
@@ -273,14 +266,15 @@ class EEVEE_NEXT_MATERIAL_PT_settings(MaterialButtonsPanel, bpy.types.Panel):
273
266
  :param context:
274
267
  """
275
268
 
276
- class EEVEE_NEXT_MATERIAL_PT_settings_surface(MaterialButtonsPanel, bpy.types.Panel):
269
+ class EEVEE_MATERIAL_PT_volume(MaterialButtonsPanel, bpy.types.Panel):
277
270
  COMPAT_ENGINES: typing.Any
278
271
  bl_context: typing.Any
279
272
  bl_label: typing.Any
280
- bl_parent_id: typing.Any
273
+ bl_options: typing.Any
281
274
  bl_region_type: typing.Any
282
275
  bl_rna: typing.Any
283
276
  bl_space_type: typing.Any
277
+ bl_translation_context: typing.Any
284
278
  id_data: typing.Any
285
279
 
286
280
  def bl_rna_get_subclass(self) -> bpy.types.Struct:
@@ -303,31 +297,8 @@ class EEVEE_NEXT_MATERIAL_PT_settings_surface(MaterialButtonsPanel, bpy.types.Pa
303
297
  :param context:
304
298
  """
305
299
 
306
- class EEVEE_NEXT_MATERIAL_PT_settings_volume(MaterialButtonsPanel, bpy.types.Panel):
307
- COMPAT_ENGINES: typing.Any
308
- bl_context: typing.Any
309
- bl_label: typing.Any
310
- bl_parent_id: typing.Any
311
- bl_region_type: typing.Any
312
- bl_rna: typing.Any
313
- bl_space_type: typing.Any
314
- id_data: typing.Any
315
-
316
- def bl_rna_get_subclass(self) -> bpy.types.Struct:
317
- """
318
-
319
- :return: The RNA type or default when not found.
320
- :rtype: bpy.types.Struct
321
- """
322
-
323
- def bl_rna_get_subclass_py(self) -> typing.Any:
324
- """
325
-
326
- :return: The class or default when not found.
327
- :rtype: typing.Any
328
- """
329
-
330
- def draw(self, context) -> None:
300
+ @classmethod
301
+ def poll(cls, context) -> None:
331
302
  """
332
303
 
333
304
  :param context:
@@ -222,7 +222,7 @@ class RENDER_PT_context(bpy.types.Panel):
222
222
  :param context:
223
223
  """
224
224
 
225
- class RENDER_PT_eevee_hair(RenderButtonsPanel, bpy.types.Panel):
225
+ class RENDER_PT_eevee_clamping(RenderButtonsPanel, bpy.types.Panel):
226
226
  COMPAT_ENGINES: typing.Any
227
227
  bl_context: typing.Any
228
228
  bl_label: typing.Any
@@ -259,11 +259,11 @@ class RENDER_PT_eevee_hair(RenderButtonsPanel, bpy.types.Panel):
259
259
  :param context:
260
260
  """
261
261
 
262
- class RENDER_PT_eevee_next_clamping(RenderButtonsPanel, bpy.types.Panel):
262
+ class RENDER_PT_eevee_clamping_surface(RenderButtonsPanel, bpy.types.Panel):
263
263
  COMPAT_ENGINES: typing.Any
264
264
  bl_context: typing.Any
265
265
  bl_label: typing.Any
266
- bl_options: typing.Any
266
+ bl_parent_id: typing.Any
267
267
  bl_region_type: typing.Any
268
268
  bl_rna: typing.Any
269
269
  bl_space_type: typing.Any
@@ -296,7 +296,7 @@ class RENDER_PT_eevee_next_clamping(RenderButtonsPanel, bpy.types.Panel):
296
296
  :param context:
297
297
  """
298
298
 
299
- class RENDER_PT_eevee_next_clamping_surface(RenderButtonsPanel, bpy.types.Panel):
299
+ class RENDER_PT_eevee_clamping_volume(RenderButtonsPanel, bpy.types.Panel):
300
300
  COMPAT_ENGINES: typing.Any
301
301
  bl_context: typing.Any
302
302
  bl_label: typing.Any
@@ -333,10 +333,11 @@ class RENDER_PT_eevee_next_clamping_surface(RenderButtonsPanel, bpy.types.Panel)
333
333
  :param context:
334
334
  """
335
335
 
336
- class RENDER_PT_eevee_next_clamping_volume(RenderButtonsPanel, bpy.types.Panel):
336
+ class RENDER_PT_eevee_denoise(RenderButtonsPanel, bpy.types.Panel):
337
337
  COMPAT_ENGINES: typing.Any
338
338
  bl_context: typing.Any
339
339
  bl_label: typing.Any
340
+ bl_options: typing.Any
340
341
  bl_parent_id: typing.Any
341
342
  bl_region_type: typing.Any
342
343
  bl_rna: typing.Any
@@ -363,6 +364,12 @@ class RENDER_PT_eevee_next_clamping_volume(RenderButtonsPanel, bpy.types.Panel):
363
364
  :param context:
364
365
  """
365
366
 
367
+ def draw_header(self, context) -> None:
368
+ """
369
+
370
+ :param context:
371
+ """
372
+
366
373
  @classmethod
367
374
  def poll(cls, context) -> None:
368
375
  """
@@ -370,12 +377,11 @@ class RENDER_PT_eevee_next_clamping_volume(RenderButtonsPanel, bpy.types.Panel):
370
377
  :param context:
371
378
  """
372
379
 
373
- class RENDER_PT_eevee_next_denoise(RenderButtonsPanel, bpy.types.Panel):
380
+ class RENDER_PT_eevee_depth_of_field(RenderButtonsPanel, bpy.types.Panel):
374
381
  COMPAT_ENGINES: typing.Any
375
382
  bl_context: typing.Any
376
383
  bl_label: typing.Any
377
384
  bl_options: typing.Any
378
- bl_parent_id: typing.Any
379
385
  bl_region_type: typing.Any
380
386
  bl_rna: typing.Any
381
387
  bl_space_type: typing.Any
@@ -401,12 +407,6 @@ class RENDER_PT_eevee_next_denoise(RenderButtonsPanel, bpy.types.Panel):
401
407
  :param context:
402
408
  """
403
409
 
404
- def draw_header(self, context) -> None:
405
- """
406
-
407
- :param context:
408
- """
409
-
410
410
  @classmethod
411
411
  def poll(cls, context) -> None:
412
412
  """
@@ -414,7 +414,7 @@ class RENDER_PT_eevee_next_denoise(RenderButtonsPanel, bpy.types.Panel):
414
414
  :param context:
415
415
  """
416
416
 
417
- class RENDER_PT_eevee_next_depth_of_field(RenderButtonsPanel, bpy.types.Panel):
417
+ class RENDER_PT_eevee_film(RenderButtonsPanel, bpy.types.Panel):
418
418
  COMPAT_ENGINES: typing.Any
419
419
  bl_context: typing.Any
420
420
  bl_label: typing.Any
@@ -451,11 +451,12 @@ class RENDER_PT_eevee_next_depth_of_field(RenderButtonsPanel, bpy.types.Panel):
451
451
  :param context:
452
452
  """
453
453
 
454
- class RENDER_PT_eevee_next_film(RenderButtonsPanel, bpy.types.Panel):
454
+ class RENDER_PT_eevee_gi_approximation(RenderButtonsPanel, bpy.types.Panel):
455
455
  COMPAT_ENGINES: typing.Any
456
456
  bl_context: typing.Any
457
457
  bl_label: typing.Any
458
458
  bl_options: typing.Any
459
+ bl_parent_id: typing.Any
459
460
  bl_region_type: typing.Any
460
461
  bl_rna: typing.Any
461
462
  bl_space_type: typing.Any
@@ -481,6 +482,12 @@ class RENDER_PT_eevee_next_film(RenderButtonsPanel, bpy.types.Panel):
481
482
  :param context:
482
483
  """
483
484
 
485
+ def draw_header(self, context) -> None:
486
+ """
487
+
488
+ :param context:
489
+ """
490
+
484
491
  @classmethod
485
492
  def poll(cls, context) -> None:
486
493
  """
@@ -488,12 +495,11 @@ class RENDER_PT_eevee_next_film(RenderButtonsPanel, bpy.types.Panel):
488
495
  :param context:
489
496
  """
490
497
 
491
- class RENDER_PT_eevee_next_gi_approximation(RenderButtonsPanel, bpy.types.Panel):
498
+ class RENDER_PT_eevee_hair(RenderButtonsPanel, bpy.types.Panel):
492
499
  COMPAT_ENGINES: typing.Any
493
500
  bl_context: typing.Any
494
501
  bl_label: typing.Any
495
502
  bl_options: typing.Any
496
- bl_parent_id: typing.Any
497
503
  bl_region_type: typing.Any
498
504
  bl_rna: typing.Any
499
505
  bl_space_type: typing.Any
@@ -519,12 +525,6 @@ class RENDER_PT_eevee_next_gi_approximation(RenderButtonsPanel, bpy.types.Panel)
519
525
  :param context:
520
526
  """
521
527
 
522
- def draw_header(self, context) -> None:
523
- """
524
-
525
- :param context:
526
- """
527
-
528
528
  @classmethod
529
529
  def poll(cls, context) -> None:
530
530
  """
@@ -532,7 +532,7 @@ class RENDER_PT_eevee_next_gi_approximation(RenderButtonsPanel, bpy.types.Panel)
532
532
  :param context:
533
533
  """
534
534
 
535
- class RENDER_PT_eevee_next_motion_blur(RenderButtonsPanel, bpy.types.Panel):
535
+ class RENDER_PT_eevee_motion_blur(RenderButtonsPanel, bpy.types.Panel):
536
536
  COMPAT_ENGINES: typing.Any
537
537
  bl_context: typing.Any
538
538
  bl_label: typing.Any
@@ -575,7 +575,7 @@ class RENDER_PT_eevee_next_motion_blur(RenderButtonsPanel, bpy.types.Panel):
575
575
  :param context:
576
576
  """
577
577
 
578
- class RENDER_PT_eevee_next_motion_blur_curve(RenderButtonsPanel, bpy.types.Panel):
578
+ class RENDER_PT_eevee_motion_blur_curve(RenderButtonsPanel, bpy.types.Panel):
579
579
  COMPAT_ENGINES: typing.Any
580
580
  bl_context: typing.Any
581
581
  bl_label: typing.Any
@@ -606,7 +606,7 @@ class RENDER_PT_eevee_next_motion_blur_curve(RenderButtonsPanel, bpy.types.Panel
606
606
  :param context:
607
607
  """
608
608
 
609
- class RENDER_PT_eevee_next_raytracing(RenderButtonsPanel, bpy.types.Panel):
609
+ class RENDER_PT_eevee_performance(RenderButtonsPanel, bpy.types.Panel):
610
610
  COMPAT_ENGINES: typing.Any
611
611
  bl_context: typing.Any
612
612
  bl_label: typing.Any
@@ -636,18 +636,6 @@ class RENDER_PT_eevee_next_raytracing(RenderButtonsPanel, bpy.types.Panel):
636
636
  :param context:
637
637
  """
638
638
 
639
- def draw_header(self, context) -> None:
640
- """
641
-
642
- :param context:
643
- """
644
-
645
- def draw_header_preset(self, _context) -> None:
646
- """
647
-
648
- :param _context:
649
- """
650
-
651
639
  @classmethod
652
640
  def poll(cls, context) -> None:
653
641
  """
@@ -655,15 +643,18 @@ class RENDER_PT_eevee_next_raytracing(RenderButtonsPanel, bpy.types.Panel):
655
643
  :param context:
656
644
  """
657
645
 
658
- class RENDER_PT_eevee_next_raytracing_presets(bl_ui.utils.PresetPanel, bpy.types.Panel):
646
+ class RENDER_PT_eevee_performance_compositor(
647
+ CompositorPerformanceButtonsPanel, RenderButtonsPanel, bpy.types.Panel
648
+ ):
649
+ COMPAT_ENGINES: typing.Any
650
+ bl_context: typing.Any
659
651
  bl_label: typing.Any
652
+ bl_options: typing.Any
653
+ bl_parent_id: typing.Any
660
654
  bl_region_type: typing.Any
661
655
  bl_rna: typing.Any
662
656
  bl_space_type: typing.Any
663
657
  id_data: typing.Any
664
- preset_add_operator: typing.Any
665
- preset_operator: typing.Any
666
- preset_subdir: typing.Any
667
658
 
668
659
  def bl_rna_get_subclass(self) -> bpy.types.Struct:
669
660
  """
@@ -679,10 +670,14 @@ class RENDER_PT_eevee_next_raytracing_presets(bl_ui.utils.PresetPanel, bpy.types
679
670
  :rtype: typing.Any
680
671
  """
681
672
 
682
- class RENDER_PT_eevee_next_sampling(RenderButtonsPanel, bpy.types.Panel):
673
+ class RENDER_PT_eevee_performance_compositor_denoise_settings(
674
+ CompositorDenoisePerformanceButtonsPanel, RenderButtonsPanel, bpy.types.Panel
675
+ ):
683
676
  COMPAT_ENGINES: typing.Any
684
677
  bl_context: typing.Any
685
678
  bl_label: typing.Any
679
+ bl_options: typing.Any
680
+ bl_parent_id: typing.Any
686
681
  bl_region_type: typing.Any
687
682
  bl_rna: typing.Any
688
683
  bl_space_type: typing.Any
@@ -702,20 +697,7 @@ class RENDER_PT_eevee_next_sampling(RenderButtonsPanel, bpy.types.Panel):
702
697
  :rtype: typing.Any
703
698
  """
704
699
 
705
- def draw(self, context) -> None:
706
- """
707
-
708
- :param context:
709
- """
710
-
711
- @classmethod
712
- def poll(cls, context) -> None:
713
- """
714
-
715
- :param context:
716
- """
717
-
718
- class RENDER_PT_eevee_next_sampling_advanced(RenderButtonsPanel, bpy.types.Panel):
700
+ class RENDER_PT_eevee_performance_memory(RenderButtonsPanel, bpy.types.Panel):
719
701
  COMPAT_ENGINES: typing.Any
720
702
  bl_context: typing.Any
721
703
  bl_label: typing.Any
@@ -753,10 +735,11 @@ class RENDER_PT_eevee_next_sampling_advanced(RenderButtonsPanel, bpy.types.Panel
753
735
  :param context:
754
736
  """
755
737
 
756
- class RENDER_PT_eevee_next_sampling_render(RenderButtonsPanel, bpy.types.Panel):
738
+ class RENDER_PT_eevee_performance_viewport(RenderButtonsPanel, bpy.types.Panel):
757
739
  COMPAT_ENGINES: typing.Any
758
740
  bl_context: typing.Any
759
741
  bl_label: typing.Any
742
+ bl_options: typing.Any
760
743
  bl_parent_id: typing.Any
761
744
  bl_region_type: typing.Any
762
745
  bl_rna: typing.Any
@@ -790,12 +773,11 @@ class RENDER_PT_eevee_next_sampling_render(RenderButtonsPanel, bpy.types.Panel):
790
773
  :param context:
791
774
  """
792
775
 
793
- class RENDER_PT_eevee_next_sampling_shadows(RenderButtonsPanel, bpy.types.Panel):
776
+ class RENDER_PT_eevee_raytracing(RenderButtonsPanel, bpy.types.Panel):
794
777
  COMPAT_ENGINES: typing.Any
795
778
  bl_context: typing.Any
796
779
  bl_label: typing.Any
797
780
  bl_options: typing.Any
798
- bl_parent_id: typing.Any
799
781
  bl_region_type: typing.Any
800
782
  bl_rna: typing.Any
801
783
  bl_space_type: typing.Any
@@ -827,6 +809,12 @@ class RENDER_PT_eevee_next_sampling_shadows(RenderButtonsPanel, bpy.types.Panel)
827
809
  :param context:
828
810
  """
829
811
 
812
+ def draw_header_preset(self, _context) -> None:
813
+ """
814
+
815
+ :param _context:
816
+ """
817
+
830
818
  @classmethod
831
819
  def poll(cls, context) -> None:
832
820
  """
@@ -834,11 +822,34 @@ class RENDER_PT_eevee_next_sampling_shadows(RenderButtonsPanel, bpy.types.Panel)
834
822
  :param context:
835
823
  """
836
824
 
837
- class RENDER_PT_eevee_next_sampling_viewport(RenderButtonsPanel, bpy.types.Panel):
825
+ class RENDER_PT_eevee_raytracing_presets(bl_ui.utils.PresetPanel, bpy.types.Panel):
826
+ bl_label: typing.Any
827
+ bl_region_type: typing.Any
828
+ bl_rna: typing.Any
829
+ bl_space_type: typing.Any
830
+ id_data: typing.Any
831
+ preset_add_operator: typing.Any
832
+ preset_operator: typing.Any
833
+ preset_subdir: typing.Any
834
+
835
+ def bl_rna_get_subclass(self) -> bpy.types.Struct:
836
+ """
837
+
838
+ :return: The RNA type or default when not found.
839
+ :rtype: bpy.types.Struct
840
+ """
841
+
842
+ def bl_rna_get_subclass_py(self) -> typing.Any:
843
+ """
844
+
845
+ :return: The class or default when not found.
846
+ :rtype: typing.Any
847
+ """
848
+
849
+ class RENDER_PT_eevee_sampling(RenderButtonsPanel, bpy.types.Panel):
838
850
  COMPAT_ENGINES: typing.Any
839
851
  bl_context: typing.Any
840
852
  bl_label: typing.Any
841
- bl_parent_id: typing.Any
842
853
  bl_region_type: typing.Any
843
854
  bl_rna: typing.Any
844
855
  bl_space_type: typing.Any
@@ -871,7 +882,7 @@ class RENDER_PT_eevee_next_sampling_viewport(RenderButtonsPanel, bpy.types.Panel
871
882
  :param context:
872
883
  """
873
884
 
874
- class RENDER_PT_eevee_next_screen_trace(RenderButtonsPanel, bpy.types.Panel):
885
+ class RENDER_PT_eevee_sampling_advanced(RenderButtonsPanel, bpy.types.Panel):
875
886
  COMPAT_ENGINES: typing.Any
876
887
  bl_context: typing.Any
877
888
  bl_label: typing.Any
@@ -909,11 +920,11 @@ class RENDER_PT_eevee_next_screen_trace(RenderButtonsPanel, bpy.types.Panel):
909
920
  :param context:
910
921
  """
911
922
 
912
- class RENDER_PT_eevee_next_volumes(RenderButtonsPanel, bpy.types.Panel):
923
+ class RENDER_PT_eevee_sampling_render(RenderButtonsPanel, bpy.types.Panel):
913
924
  COMPAT_ENGINES: typing.Any
914
925
  bl_context: typing.Any
915
926
  bl_label: typing.Any
916
- bl_options: typing.Any
927
+ bl_parent_id: typing.Any
917
928
  bl_region_type: typing.Any
918
929
  bl_rna: typing.Any
919
930
  bl_space_type: typing.Any
@@ -946,7 +957,7 @@ class RENDER_PT_eevee_next_volumes(RenderButtonsPanel, bpy.types.Panel):
946
957
  :param context:
947
958
  """
948
959
 
949
- class RENDER_PT_eevee_next_volumes_range(RenderButtonsPanel, bpy.types.Panel):
960
+ class RENDER_PT_eevee_sampling_shadows(RenderButtonsPanel, bpy.types.Panel):
950
961
  COMPAT_ENGINES: typing.Any
951
962
  bl_context: typing.Any
952
963
  bl_label: typing.Any
@@ -990,11 +1001,11 @@ class RENDER_PT_eevee_next_volumes_range(RenderButtonsPanel, bpy.types.Panel):
990
1001
  :param context:
991
1002
  """
992
1003
 
993
- class RENDER_PT_eevee_performance(RenderButtonsPanel, bpy.types.Panel):
1004
+ class RENDER_PT_eevee_sampling_viewport(RenderButtonsPanel, bpy.types.Panel):
994
1005
  COMPAT_ENGINES: typing.Any
995
1006
  bl_context: typing.Any
996
1007
  bl_label: typing.Any
997
- bl_options: typing.Any
1008
+ bl_parent_id: typing.Any
998
1009
  bl_region_type: typing.Any
999
1010
  bl_rna: typing.Any
1000
1011
  bl_space_type: typing.Any
@@ -1027,9 +1038,7 @@ class RENDER_PT_eevee_performance(RenderButtonsPanel, bpy.types.Panel):
1027
1038
  :param context:
1028
1039
  """
1029
1040
 
1030
- class RENDER_PT_eevee_performance_compositor(
1031
- CompositorPerformanceButtonsPanel, RenderButtonsPanel, bpy.types.Panel
1032
- ):
1041
+ class RENDER_PT_eevee_screen_trace(RenderButtonsPanel, bpy.types.Panel):
1033
1042
  COMPAT_ENGINES: typing.Any
1034
1043
  bl_context: typing.Any
1035
1044
  bl_label: typing.Any
@@ -1054,39 +1063,24 @@ class RENDER_PT_eevee_performance_compositor(
1054
1063
  :rtype: typing.Any
1055
1064
  """
1056
1065
 
1057
- class RENDER_PT_eevee_performance_compositor_denoise_settings(
1058
- CompositorDenoisePerformanceButtonsPanel, RenderButtonsPanel, bpy.types.Panel
1059
- ):
1060
- COMPAT_ENGINES: typing.Any
1061
- bl_context: typing.Any
1062
- bl_label: typing.Any
1063
- bl_options: typing.Any
1064
- bl_parent_id: typing.Any
1065
- bl_region_type: typing.Any
1066
- bl_rna: typing.Any
1067
- bl_space_type: typing.Any
1068
- id_data: typing.Any
1069
-
1070
- def bl_rna_get_subclass(self) -> bpy.types.Struct:
1066
+ def draw(self, context) -> None:
1071
1067
  """
1072
1068
 
1073
- :return: The RNA type or default when not found.
1074
- :rtype: bpy.types.Struct
1069
+ :param context:
1075
1070
  """
1076
1071
 
1077
- def bl_rna_get_subclass_py(self) -> typing.Any:
1072
+ @classmethod
1073
+ def poll(cls, context) -> None:
1078
1074
  """
1079
1075
 
1080
- :return: The class or default when not found.
1081
- :rtype: typing.Any
1076
+ :param context:
1082
1077
  """
1083
1078
 
1084
- class RENDER_PT_eevee_performance_memory(RenderButtonsPanel, bpy.types.Panel):
1079
+ class RENDER_PT_eevee_volumes(RenderButtonsPanel, bpy.types.Panel):
1085
1080
  COMPAT_ENGINES: typing.Any
1086
1081
  bl_context: typing.Any
1087
1082
  bl_label: typing.Any
1088
1083
  bl_options: typing.Any
1089
- bl_parent_id: typing.Any
1090
1084
  bl_region_type: typing.Any
1091
1085
  bl_rna: typing.Any
1092
1086
  bl_space_type: typing.Any
@@ -1119,7 +1113,7 @@ class RENDER_PT_eevee_performance_memory(RenderButtonsPanel, bpy.types.Panel):
1119
1113
  :param context:
1120
1114
  """
1121
1115
 
1122
- class RENDER_PT_eevee_performance_viewport(RenderButtonsPanel, bpy.types.Panel):
1116
+ class RENDER_PT_eevee_volumes_range(RenderButtonsPanel, bpy.types.Panel):
1123
1117
  COMPAT_ENGINES: typing.Any
1124
1118
  bl_context: typing.Any
1125
1119
  bl_label: typing.Any
@@ -1150,6 +1144,12 @@ class RENDER_PT_eevee_performance_viewport(RenderButtonsPanel, bpy.types.Panel):
1150
1144
  :param context:
1151
1145
  """
1152
1146
 
1147
+ def draw_header(self, context) -> None:
1148
+ """
1149
+
1150
+ :param context:
1151
+ """
1152
+
1153
1153
  @classmethod
1154
1154
  def poll(cls, context) -> None:
1155
1155
  """
@@ -109,7 +109,7 @@ class SCENE_PT_custom_props(
109
109
  :rtype: typing.Any
110
110
  """
111
111
 
112
- class SCENE_PT_eevee_next_light_probes(SceneButtonsPanel, bpy.types.Panel):
112
+ class SCENE_PT_eevee_light_probes(SceneButtonsPanel, bpy.types.Panel):
113
113
  COMPAT_ENGINES: typing.Any
114
114
  bl_context: typing.Any
115
115
  bl_label: typing.Any
@@ -30,7 +30,7 @@ class VIEWLAYER_MT_lightgroup_sync(bpy.types.Menu):
30
30
  :param _context:
31
31
  """
32
32
 
33
- class VIEWLAYER_PT_eevee_next_layer_passes_data(ViewLayerButtonsPanel, bpy.types.Panel):
33
+ class VIEWLAYER_PT_eevee_layer_passes_data(ViewLayerButtonsPanel, bpy.types.Panel):
34
34
  COMPAT_ENGINES: typing.Any
35
35
  bl_context: typing.Any
36
36
  bl_label: typing.Any
@@ -60,9 +60,7 @@ class VIEWLAYER_PT_eevee_next_layer_passes_data(ViewLayerButtonsPanel, bpy.types
60
60
  :param context:
61
61
  """
62
62
 
63
- class VIEWLAYER_PT_eevee_next_layer_passes_light(
64
- ViewLayerButtonsPanel, bpy.types.Panel
65
- ):
63
+ class VIEWLAYER_PT_eevee_layer_passes_light(ViewLayerButtonsPanel, bpy.types.Panel):
66
64
  COMPAT_ENGINES: typing.Any
67
65
  bl_context: typing.Any
68
66
  bl_label: typing.Any
@@ -3145,40 +3145,6 @@ class USERPREF_PT_viewport_quality(CenterAlignMixIn, ViewportPanel, bpy.types.Pa
3145
3145
  :param layout:
3146
3146
  """
3147
3147
 
3148
- class USERPREF_PT_viewport_selection(CenterAlignMixIn, ViewportPanel, bpy.types.Panel):
3149
- """Base class for panels to center align contents with some horizontal margin.
3150
- Deriving classes need to implement a draw_centered(context, layout) function.
3151
- """
3152
-
3153
- bl_context: typing.Any
3154
- bl_label: typing.Any
3155
- bl_options: typing.Any
3156
- bl_region_type: typing.Any
3157
- bl_rna: typing.Any
3158
- bl_space_type: typing.Any
3159
- id_data: typing.Any
3160
-
3161
- def bl_rna_get_subclass(self) -> bpy.types.Struct:
3162
- """
3163
-
3164
- :return: The RNA type or default when not found.
3165
- :rtype: bpy.types.Struct
3166
- """
3167
-
3168
- def bl_rna_get_subclass_py(self) -> typing.Any:
3169
- """
3170
-
3171
- :return: The class or default when not found.
3172
- :rtype: typing.Any
3173
- """
3174
-
3175
- def draw_centered(self, context, layout) -> None:
3176
- """
3177
-
3178
- :param context:
3179
- :param layout:
3180
- """
3181
-
3182
3148
  class USERPREF_PT_viewport_subdivision(
3183
3149
  CenterAlignMixIn, ViewportPanel, bpy.types.Panel
3184
3150
  ):
bpy/types/__init__.pyi CHANGED
@@ -207099,12 +207099,6 @@ class PreferencesSystem(bpy_struct):
207099
207099
  :type: bool
207100
207100
  """
207101
207101
 
207102
- use_select_pick_depth: bool
207103
- """ When making a selection in 3D View, use the GPU depth buffer to ensure the frontmost object is selected first
207104
-
207105
- :type: bool
207106
- """
207107
-
207108
207102
  use_studio_light_edit: bool
207109
207103
  """ View the result of the studio light editor in the viewport
207110
207104
 
@@ -209528,10 +209522,10 @@ class RenderSettings(bpy_struct):
209528
209522
  :type: float
209529
209523
  """
209530
209524
 
209531
- engine: typing.Literal["BLENDER_EEVEE_NEXT"]
209525
+ engine: typing.Literal["BLENDER_EEVEE"]
209532
209526
  """ Engine to use for rendering
209533
209527
 
209534
- :type: typing.Literal['BLENDER_EEVEE_NEXT']
209528
+ :type: typing.Literal['BLENDER_EEVEE']
209535
209529
  """
209536
209530
 
209537
209531
  ffmpeg: FFmpegSettings | None
@@ -211912,18 +211906,6 @@ class SceneEEVEE(bpy_struct):
211912
211906
  :type: typing.Literal['8','16','32','64']
211913
211907
  """
211914
211908
 
211915
- gtao_distance: float
211916
- """ Distance of object that contribute to the ambient occlusion effect
211917
-
211918
- :type: float
211919
- """
211920
-
211921
- gtao_quality: float
211922
- """ Precision of the horizon search
211923
-
211924
- :type: float
211925
- """
211926
-
211927
211909
  light_threshold: float
211928
211910
  """ Minimum light intensity for a light to contribute to the lighting
211929
211911
 
@@ -212014,12 +211996,6 @@ class SceneEEVEE(bpy_struct):
212014
211996
  :type: bool
212015
211997
  """
212016
211998
 
212017
- use_gtao: bool
212018
- """ Enable ambient occlusion to simulate medium scale indirect shadowing
212019
-
212020
- :type: bool
212021
- """
212022
-
212023
211999
  use_overscan: bool
212024
212000
  """ Internally render past the image border to avoid screen-space effects disappearing
212025
212001
 
@@ -243236,6 +243212,12 @@ class ViewLayer(bpy_struct):
243236
243212
  class ViewLayerEEVEE(bpy_struct):
243237
243213
  """View Layer settings for EEVEE"""
243238
243214
 
243215
+ ambient_occlusion_distance: float
243216
+ """ Distance of object that contribute to the ambient occlusion effect
243217
+
243218
+ :type: float
243219
+ """
243220
+
243239
243221
  use_pass_bloom: bool
243240
243222
  """ Deliver bloom pass (deprecated)
243241
243223
 
@@ -247485,9 +247467,9 @@ DATA_PT_lightprobe_capture: bl_ui.properties_data_lightprobe.DATA_PT_lightprobe_
247485
247467
 
247486
247468
  DATA_PT_lightprobe_display: bl_ui.properties_data_lightprobe.DATA_PT_lightprobe_display
247487
247469
 
247488
- DATA_PT_lightprobe_display_eevee_next: bl_ui.properties_data_lightprobe.DATA_PT_lightprobe_display_eevee_next
247470
+ DATA_PT_lightprobe_display_eevee: bl_ui.properties_data_lightprobe.DATA_PT_lightprobe_display_eevee
247489
247471
 
247490
- DATA_PT_lightprobe_eevee_next: bl_ui.properties_data_lightprobe.DATA_PT_lightprobe_eevee_next
247472
+ DATA_PT_lightprobe_eevee: bl_ui.properties_data_lightprobe.DATA_PT_lightprobe_eevee
247491
247473
 
247492
247474
  DATA_PT_lightprobe_parallax: bl_ui.properties_data_lightprobe.DATA_PT_lightprobe_parallax
247493
247475
 
@@ -247625,6 +247607,10 @@ EEVEE_MATERIAL_PT_displacement: bl_ui.properties_material.EEVEE_MATERIAL_PT_disp
247625
247607
 
247626
247608
  EEVEE_MATERIAL_PT_settings: bl_ui.properties_material.EEVEE_MATERIAL_PT_settings
247627
247609
 
247610
+ EEVEE_MATERIAL_PT_settings_surface: bl_ui.properties_material.EEVEE_MATERIAL_PT_settings_surface
247611
+
247612
+ EEVEE_MATERIAL_PT_settings_volume: bl_ui.properties_material.EEVEE_MATERIAL_PT_settings_volume
247613
+
247628
247614
  EEVEE_MATERIAL_PT_surface: bl_ui.properties_material.EEVEE_MATERIAL_PT_surface
247629
247615
 
247630
247616
  EEVEE_MATERIAL_PT_thickness: bl_ui.properties_material.EEVEE_MATERIAL_PT_thickness
@@ -247633,12 +247619,6 @@ EEVEE_MATERIAL_PT_viewport_settings: bl_ui.properties_material.EEVEE_MATERIAL_PT
247633
247619
 
247634
247620
  EEVEE_MATERIAL_PT_volume: bl_ui.properties_material.EEVEE_MATERIAL_PT_volume
247635
247621
 
247636
- EEVEE_NEXT_MATERIAL_PT_settings: bl_ui.properties_material.EEVEE_NEXT_MATERIAL_PT_settings
247637
-
247638
- EEVEE_NEXT_MATERIAL_PT_settings_surface: bl_ui.properties_material.EEVEE_NEXT_MATERIAL_PT_settings_surface
247639
-
247640
- EEVEE_NEXT_MATERIAL_PT_settings_volume: bl_ui.properties_material.EEVEE_NEXT_MATERIAL_PT_settings_volume
247641
-
247642
247622
  EEVEE_WORLD_PT_lightprobe: bl_ui.properties_world.EEVEE_WORLD_PT_lightprobe
247643
247623
 
247644
247624
  EEVEE_WORLD_PT_mist: bl_ui.properties_world.EEVEE_WORLD_PT_mist
@@ -248915,55 +248895,55 @@ RENDER_PT_color_management_white_balance_presets: bl_ui.properties_render.RENDER
248915
248895
 
248916
248896
  RENDER_PT_context: bl_ui.properties_render.RENDER_PT_context
248917
248897
 
248918
- RENDER_PT_eevee_hair: bl_ui.properties_render.RENDER_PT_eevee_hair
248898
+ RENDER_PT_eevee_clamping: bl_ui.properties_render.RENDER_PT_eevee_clamping
248919
248899
 
248920
- RENDER_PT_eevee_next_clamping: bl_ui.properties_render.RENDER_PT_eevee_next_clamping
248900
+ RENDER_PT_eevee_clamping_surface: bl_ui.properties_render.RENDER_PT_eevee_clamping_surface
248921
248901
 
248922
- RENDER_PT_eevee_next_clamping_surface: bl_ui.properties_render.RENDER_PT_eevee_next_clamping_surface
248902
+ RENDER_PT_eevee_clamping_volume: bl_ui.properties_render.RENDER_PT_eevee_clamping_volume
248923
248903
 
248924
- RENDER_PT_eevee_next_clamping_volume: bl_ui.properties_render.RENDER_PT_eevee_next_clamping_volume
248904
+ RENDER_PT_eevee_denoise: bl_ui.properties_render.RENDER_PT_eevee_denoise
248925
248905
 
248926
- RENDER_PT_eevee_next_denoise: bl_ui.properties_render.RENDER_PT_eevee_next_denoise
248906
+ RENDER_PT_eevee_depth_of_field: bl_ui.properties_render.RENDER_PT_eevee_depth_of_field
248927
248907
 
248928
- RENDER_PT_eevee_next_depth_of_field: bl_ui.properties_render.RENDER_PT_eevee_next_depth_of_field
248908
+ RENDER_PT_eevee_film: bl_ui.properties_render.RENDER_PT_eevee_film
248929
248909
 
248930
- RENDER_PT_eevee_next_film: bl_ui.properties_render.RENDER_PT_eevee_next_film
248910
+ RENDER_PT_eevee_gi_approximation: bl_ui.properties_render.RENDER_PT_eevee_gi_approximation
248931
248911
 
248932
- RENDER_PT_eevee_next_gi_approximation: bl_ui.properties_render.RENDER_PT_eevee_next_gi_approximation
248912
+ RENDER_PT_eevee_hair: bl_ui.properties_render.RENDER_PT_eevee_hair
248933
248913
 
248934
- RENDER_PT_eevee_next_motion_blur: bl_ui.properties_render.RENDER_PT_eevee_next_motion_blur
248914
+ RENDER_PT_eevee_motion_blur: bl_ui.properties_render.RENDER_PT_eevee_motion_blur
248935
248915
 
248936
- RENDER_PT_eevee_next_motion_blur_curve: bl_ui.properties_render.RENDER_PT_eevee_next_motion_blur_curve
248916
+ RENDER_PT_eevee_motion_blur_curve: bl_ui.properties_render.RENDER_PT_eevee_motion_blur_curve
248937
248917
 
248938
- RENDER_PT_eevee_next_raytracing: bl_ui.properties_render.RENDER_PT_eevee_next_raytracing
248918
+ RENDER_PT_eevee_performance: bl_ui.properties_render.RENDER_PT_eevee_performance
248939
248919
 
248940
- RENDER_PT_eevee_next_raytracing_presets: bl_ui.properties_render.RENDER_PT_eevee_next_raytracing_presets
248920
+ RENDER_PT_eevee_performance_compositor: bl_ui.properties_render.RENDER_PT_eevee_performance_compositor
248941
248921
 
248942
- RENDER_PT_eevee_next_sampling: bl_ui.properties_render.RENDER_PT_eevee_next_sampling
248922
+ RENDER_PT_eevee_performance_compositor_denoise_settings: bl_ui.properties_render.RENDER_PT_eevee_performance_compositor_denoise_settings
248943
248923
 
248944
- RENDER_PT_eevee_next_sampling_advanced: bl_ui.properties_render.RENDER_PT_eevee_next_sampling_advanced
248924
+ RENDER_PT_eevee_performance_memory: bl_ui.properties_render.RENDER_PT_eevee_performance_memory
248945
248925
 
248946
- RENDER_PT_eevee_next_sampling_render: bl_ui.properties_render.RENDER_PT_eevee_next_sampling_render
248926
+ RENDER_PT_eevee_performance_viewport: bl_ui.properties_render.RENDER_PT_eevee_performance_viewport
248947
248927
 
248948
- RENDER_PT_eevee_next_sampling_shadows: bl_ui.properties_render.RENDER_PT_eevee_next_sampling_shadows
248928
+ RENDER_PT_eevee_raytracing: bl_ui.properties_render.RENDER_PT_eevee_raytracing
248949
248929
 
248950
- RENDER_PT_eevee_next_sampling_viewport: bl_ui.properties_render.RENDER_PT_eevee_next_sampling_viewport
248930
+ RENDER_PT_eevee_raytracing_presets: bl_ui.properties_render.RENDER_PT_eevee_raytracing_presets
248951
248931
 
248952
- RENDER_PT_eevee_next_screen_trace: bl_ui.properties_render.RENDER_PT_eevee_next_screen_trace
248932
+ RENDER_PT_eevee_sampling: bl_ui.properties_render.RENDER_PT_eevee_sampling
248953
248933
 
248954
- RENDER_PT_eevee_next_volumes: bl_ui.properties_render.RENDER_PT_eevee_next_volumes
248934
+ RENDER_PT_eevee_sampling_advanced: bl_ui.properties_render.RENDER_PT_eevee_sampling_advanced
248955
248935
 
248956
- RENDER_PT_eevee_next_volumes_range: bl_ui.properties_render.RENDER_PT_eevee_next_volumes_range
248936
+ RENDER_PT_eevee_sampling_render: bl_ui.properties_render.RENDER_PT_eevee_sampling_render
248957
248937
 
248958
- RENDER_PT_eevee_performance: bl_ui.properties_render.RENDER_PT_eevee_performance
248938
+ RENDER_PT_eevee_sampling_shadows: bl_ui.properties_render.RENDER_PT_eevee_sampling_shadows
248959
248939
 
248960
- RENDER_PT_eevee_performance_compositor: bl_ui.properties_render.RENDER_PT_eevee_performance_compositor
248940
+ RENDER_PT_eevee_sampling_viewport: bl_ui.properties_render.RENDER_PT_eevee_sampling_viewport
248961
248941
 
248962
- RENDER_PT_eevee_performance_compositor_denoise_settings: bl_ui.properties_render.RENDER_PT_eevee_performance_compositor_denoise_settings
248942
+ RENDER_PT_eevee_screen_trace: bl_ui.properties_render.RENDER_PT_eevee_screen_trace
248963
248943
 
248964
- RENDER_PT_eevee_performance_memory: bl_ui.properties_render.RENDER_PT_eevee_performance_memory
248944
+ RENDER_PT_eevee_volumes: bl_ui.properties_render.RENDER_PT_eevee_volumes
248965
248945
 
248966
- RENDER_PT_eevee_performance_viewport: bl_ui.properties_render.RENDER_PT_eevee_performance_viewport
248946
+ RENDER_PT_eevee_volumes_range: bl_ui.properties_render.RENDER_PT_eevee_volumes_range
248967
248947
 
248968
248948
  RENDER_PT_encoding: bl_ui.properties_output.RENDER_PT_encoding
248969
248949
 
@@ -249043,7 +249023,7 @@ SCENE_PT_audio: bl_ui.properties_scene.SCENE_PT_audio
249043
249023
 
249044
249024
  SCENE_PT_custom_props: bl_ui.properties_scene.SCENE_PT_custom_props
249045
249025
 
249046
- SCENE_PT_eevee_next_light_probes: bl_ui.properties_scene.SCENE_PT_eevee_next_light_probes
249026
+ SCENE_PT_eevee_light_probes: bl_ui.properties_scene.SCENE_PT_eevee_light_probes
249047
249027
 
249048
249028
  SCENE_PT_keyframing_settings: bl_ui.properties_scene.SCENE_PT_keyframing_settings
249049
249029
 
@@ -249607,8 +249587,6 @@ USERPREF_PT_viewport_display: bl_ui.space_userpref.USERPREF_PT_viewport_display
249607
249587
 
249608
249588
  USERPREF_PT_viewport_quality: bl_ui.space_userpref.USERPREF_PT_viewport_quality
249609
249589
 
249610
- USERPREF_PT_viewport_selection: bl_ui.space_userpref.USERPREF_PT_viewport_selection
249611
-
249612
249590
  USERPREF_PT_viewport_subdivision: bl_ui.space_userpref.USERPREF_PT_viewport_subdivision
249613
249591
 
249614
249592
  USERPREF_PT_viewport_textures: bl_ui.space_userpref.USERPREF_PT_viewport_textures
@@ -250351,9 +250329,9 @@ VIEW3D_PT_viewport_debug: bl_ui.space_view3d.VIEW3D_PT_viewport_debug
250351
250329
 
250352
250330
  VIEWLAYER_MT_lightgroup_sync: bl_ui.properties_view_layer.VIEWLAYER_MT_lightgroup_sync
250353
250331
 
250354
- VIEWLAYER_PT_eevee_next_layer_passes_data: bl_ui.properties_view_layer.VIEWLAYER_PT_eevee_next_layer_passes_data
250332
+ VIEWLAYER_PT_eevee_layer_passes_data: bl_ui.properties_view_layer.VIEWLAYER_PT_eevee_layer_passes_data
250355
250333
 
250356
- VIEWLAYER_PT_eevee_next_layer_passes_light: bl_ui.properties_view_layer.VIEWLAYER_PT_eevee_next_layer_passes_light
250334
+ VIEWLAYER_PT_eevee_layer_passes_light: bl_ui.properties_view_layer.VIEWLAYER_PT_eevee_layer_passes_light
250357
250335
 
250358
250336
  VIEWLAYER_PT_filter: bl_ui.properties_view_layer.VIEWLAYER_PT_filter
250359
250337
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: fake-bpy-module
3
- Version: 20250613
3
+ Version: 20250614
4
4
  Summary: Collection of the fake Blender Python API module for the code completion.
5
5
  Author: nutti
6
6
  Author-email: nutti.metro@gmail.com
@@ -121,7 +121,7 @@ bl_ui/properties_data_empty/__init__.pyi,sha256=z9mMoK_F_l98c2BxqD7pnoh0gNfemztr
121
121
  bl_ui/properties_data_grease_pencil/__init__.pyi,sha256=LLw4W71zE9vHFUxgDd7Zuz4BS6BpudonIoLUp9z2UGs,15738
122
122
  bl_ui/properties_data_lattice/__init__.pyi,sha256=LJjxH8aOK_NUkVWgSOAg3XbDGJxPzB3Fa_OlpHtFrBo,3501
123
123
  bl_ui/properties_data_light/__init__.pyi,sha256=JwY6srNMWAc7MEtTo-xX4GCMQaQlwN_HfWnU5Gs-tvc,8276
124
- bl_ui/properties_data_lightprobe/__init__.pyi,sha256=LGJv8DPBaZ8vIdj1io2ptFYWb5v5Dhar_amQlZCIMbA,10876
124
+ bl_ui/properties_data_lightprobe/__init__.pyi,sha256=JERvdyqt27UhmXf8mZbkY5dWWpge5E8k1SzTLbghwjs,10866
125
125
  bl_ui/properties_data_mesh/__init__.pyi,sha256=2qTxcOMlC1XBp8QMfbaw_e5Q8v3irVPR_6vsFGw8_k0,15719
126
126
  bl_ui/properties_data_metaball/__init__.pyi,sha256=dfTWTsxfdAkx8cks_Mn23jApxs55-gmEjXR_HJcSQgg,4841
127
127
  bl_ui/properties_data_modifier/__init__.pyi,sha256=Gb9n1vRS8fLzBK90-R-Y3MX0GajxMBXTwoRnHZCcaJQ,7001
@@ -132,7 +132,7 @@ bl_ui/properties_data_volume/__init__.pyi,sha256=6DpZn77KOTLfUt4u6od7K8J6sj-6xqc
132
132
  bl_ui/properties_freestyle/__init__.pyi,sha256=YZyYORnuh0gaFQ2DnH9Gt1Mq_cYzVEB0HkGdmwx1vqY,23257
133
133
  bl_ui/properties_grease_pencil_common/__init__.pyi,sha256=lBnjjvrsnccyJsn3CnMSjrfm7LrJ6IipVuicl3Cd07A,9126
134
134
  bl_ui/properties_mask_common/__init__.pyi,sha256=e-MCY-2_l6yUXamHeDVxV3Qr4Gp-nPJOpeuZkNFHCFw,6267
135
- bl_ui/properties_material/__init__.pyi,sha256=YwcFGUsUKg25se7D9Jj2SjuGv99LpoVHudYYIdhKyLQ,13742
135
+ bl_ui/properties_material/__init__.pyi,sha256=Safiz_9XJWLNqahXcjqQJY239vX6b9mm_-mTtHvR2HQ,13045
136
136
  bl_ui/properties_material_gpencil/__init__.pyi,sha256=NVPNacYJWuv_bCUrxXZuAfe3EwwtDvq_BI415rYtKAM,8713
137
137
  bl_ui/properties_object/__init__.pyi,sha256=ZssF_k42EasHcGKfmoFhSfwGp4rktErksGQXAFxmA8s,15736
138
138
  bl_ui/properties_output/__init__.pyi,sha256=D-gXRDGyha6kurI3JwxxvrweEQ2VWxwl2GbCu2hAV84,15401
@@ -147,10 +147,10 @@ bl_ui/properties_physics_geometry_nodes/__init__.pyi,sha256=dGHGC1zvcMKHqi9DmOa_
147
147
  bl_ui/properties_physics_rigidbody/__init__.pyi,sha256=Xh1W4CqZanzGB4g6Ug3EWgk0eL1SkfUEGvVwEHqo0Nk,7140
148
148
  bl_ui/properties_physics_rigidbody_constraint/__init__.pyi,sha256=99ieEnpjjZUC3kLgBDa3CuXdRa29xaF6DlmtPZFHOLk,11601
149
149
  bl_ui/properties_physics_softbody/__init__.pyi,sha256=an4mH50E9w52Y-dGoa61eEFdjqOB-t-2jzuMrMSM3Dk,11785
150
- bl_ui/properties_render/__init__.pyi,sha256=rx2g0zUIwAS-yd4cxEtvtsrhQ9eT5q_0Jz-PcJTiBNs,36114
151
- bl_ui/properties_scene/__init__.pyi,sha256=Y4gg22or8aW5lgSwDb55eITNTyW4Rbw2IW97Bj9AiZM,12790
150
+ bl_ui/properties_render/__init__.pyi,sha256=zWhs7xUHbx9uOYSHcHWDK1e4dm6f26uvmXH2_LZhNsk,36019
151
+ bl_ui/properties_scene/__init__.pyi,sha256=wmogBtTJVlW8nWJICtB0cRma0D8zr_lBTO8oozdmPP0,12785
152
152
  bl_ui/properties_texture/__init__.pyi,sha256=11Vka3QEv1J0-b2iVtY4qR4bN3Uh6_bRrZzAiBPmcOI,21347
153
- bl_ui/properties_view_layer/__init__.pyi,sha256=9OJV1IZdAGzQV6f5wBDxmqIpxFPfxJhpzrcHij8Rma4,10071
153
+ bl_ui/properties_view_layer/__init__.pyi,sha256=syVFkDy922FAvE8dXmSknRi3qgzpa1Vk_70nDvbA5kU,10055
154
154
  bl_ui/properties_workspace/__init__.pyi,sha256=bR6ctayOId2fcQkyXASYPN_o9I6z6QDffOFkuEDrWTA,3530
155
155
  bl_ui/properties_world/__init__.pyi,sha256=A4jwr9ae3qEgSDM1d7t5149VslXs671_xBTzoa59n64,9316
156
156
  bl_ui/space_clip/__init__.pyi,sha256=_zYgFWqqzBUblDLfw_LWH4mvbsduSyeVIiEQRwZGEkM,46934
@@ -172,7 +172,7 @@ bl_ui/space_time/__init__.pyi,sha256=iRBKmFMXO9UfsL7MpulaQgSzeWlN_jRXE1g-i3ryjrA
172
172
  bl_ui/space_toolsystem_common/__init__.pyi,sha256=UfZHyyto9eWn3sKyFKwJ2saPEzzO_xwb_zidelgz0nc,3434
173
173
  bl_ui/space_toolsystem_toolbar/__init__.pyi,sha256=nzudS0Iwt12ZTNaM-xtK32_MKx2HYfEPdz4lBNhdhQk,10261
174
174
  bl_ui/space_topbar/__init__.pyi,sha256=aryAsIhT2BCJXXIN6M-Y5HopZFTq9C7C9X7p5HRoh0M,15599
175
- bl_ui/space_userpref/__init__.pyi,sha256=SnzRqqazb35wBUWSs8D2dQhCI-FX_NckbfPJuxpN-Wg,81601
175
+ bl_ui/space_userpref/__init__.pyi,sha256=huSODmm7DE-gwL4E6GToedmWCb85wNTuQ9Qk6saLY-0,80694
176
176
  bl_ui/space_view3d/__init__.pyi,sha256=vrLstsa_v78E-hy2y5EetEZfsa_TqVgMXE-ao5KOUvE,159332
177
177
  bl_ui/space_view3d_toolbar/__init__.pyi,sha256=FRuF4j7f-Vg_QV_qHKCg169Tpxucy7Akx_lzDgZNiAc,78338
178
178
  bl_ui/utils/__init__.pyi,sha256=ppvhh_gnI0HP7Z6Y7Mpn9No5eGvsnSqXmNlzWdXop0M,810
@@ -279,7 +279,7 @@ bpy/path/__init__.pyi,sha256=yGX45MUnn9fJYw32UWTsBQ646iN5DbbxfvnoDkREWvI,5537
279
279
  bpy/props/__init__.pyi,sha256=-nYTsIHy-F58ADNh2IDPlVA0C0G7N4k7F4xWz6ap7wM,35841
280
280
  bpy/stub_internal/__init__.pyi,sha256=h3K2LGZ8lcLY-Oo9ym-HEopjGScc4iTfpT1MU_6smTI,126
281
281
  bpy/stub_internal/rna_enums/__init__.pyi,sha256=aL-h4hNstMrYklATc7i8t55R5WHftmpIgjaBLlVzebY,141413
282
- bpy/types/__init__.pyi,sha256=n-J1_z9_3TZfop90P3m8idxpjX14sb4HmuCwHdOoa5w,5808920
282
+ bpy/types/__init__.pyi,sha256=4Ux1vq3DttK4a7RYIqeaKPXRXeJJAwfGxMtAu3fGP4w,5808097
283
283
  bpy/utils/__init__.pyi,sha256=eLZQI2EHAXaZQlYunovDoRa8QtR4CT8yPgygZhBYajk,15535
284
284
  bpy/utils/previews/__init__.pyi,sha256=6tju9gKfoTYwJjnSZ54lys2MYRaKPnihHe5Vs6agoKA,2366
285
285
  bpy/utils/units/__init__.pyi,sha256=zULS_4qRrtzpHLtSU-jfO2761J4WeYBZyK-BTlL4KG0,2671
@@ -361,7 +361,7 @@ rna_prop_ui/__init__.pyi,sha256=E7Xr1GyLCWDiDnB_VSldrUVM6AzWKDvGGoWj3Hj7SZ8,1404
361
361
  rna_prop_ui/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
362
362
  rna_xml/__init__.pyi,sha256=E0_ajcifhpiiQJVaNKnAa2ju-w5Tg9-lk7IqhsPjrw4,652
363
363
  rna_xml/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
364
- fake_bpy_module-20250613.dist-info/METADATA,sha256=onzMxpwUPt6C94drho1C73-hamySTR9DUB3YqhCSYMY,7429
365
- fake_bpy_module-20250613.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
366
- fake_bpy_module-20250613.dist-info/top_level.txt,sha256=SZm3DVRKif7dFSjYKiIIg3_7uqjIwRAwOnCIcT4hRNM,500
367
- fake_bpy_module-20250613.dist-info/RECORD,,
364
+ fake_bpy_module-20250614.dist-info/METADATA,sha256=xP_cT5vi-C7nouyotfzehNDo9kspkPWziNxXks1OVWo,7429
365
+ fake_bpy_module-20250614.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
366
+ fake_bpy_module-20250614.dist-info/top_level.txt,sha256=SZm3DVRKif7dFSjYKiIIg3_7uqjIwRAwOnCIcT4hRNM,500
367
+ fake_bpy_module-20250614.dist-info/RECORD,,