fake-bpy-module 20240514__py3-none-any.whl → 20240516__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_ui/properties_render/__init__.pyi +183 -0
- bl_ui/properties_world/__init__.pyi +499 -2
- bl_ui/space_toolsystem_toolbar/__init__.pyi +3 -0
- bl_ui/space_userpref/__init__.pyi +2 -2
- bl_ui/space_view3d/__init__.pyi +329 -2
- bl_ui/space_view3d_toolbar/__init__.pyi +170 -0
- bmesh/utils/__init__.pyi +2 -2
- bpy/app/__init__.pyi +2 -2
- bpy/ops/__init__.pyi +1 -2
- bpy/ops/bl_pkg/__init__.pyi +511 -0
- bpy/ops/export_scene/__init__.pyi +2 -81
- bpy/ops/grease_pencil/__init__.pyi +41 -0
- bpy/ops/import_scene/__init__.pyi +0 -28
- bpy/ops/nla/__init__.pyi +2 -2
- bpy/ops/preferences/__init__.pyi +6 -3
- bpy/types/__init__.pyi +50845 -50660
- {fake_bpy_module-20240514.dist-info → fake_bpy_module-20240516.dist-info}/METADATA +2 -1
- {fake_bpy_module-20240514.dist-info → fake_bpy_module-20240516.dist-info}/RECORD +23 -25
- mathutils/__init__.pyi +72 -71
- mathutils/geometry/__init__.pyi +4 -4
- bpy/ops/export_mesh/__init__.pyi +0 -67
- bpy/ops/import_mesh/__init__.pyi +0 -49
- bpy/ops/import_mesh/py.typed +0 -0
- /bpy/ops/{export_mesh → bl_pkg}/py.typed +0 -0
- {fake_bpy_module-20240514.dist-info → fake_bpy_module-20240516.dist-info}/WHEEL +0 -0
- {fake_bpy_module-20240514.dist-info → fake_bpy_module-20240516.dist-info}/top_level.txt +0 -0
|
@@ -5,6 +5,19 @@ import bpy_types
|
|
|
5
5
|
|
|
6
6
|
GenericType = typing.TypeVar("GenericType")
|
|
7
7
|
|
|
8
|
+
class CompositorPerformanceButtonsPanel:
|
|
9
|
+
""" """
|
|
10
|
+
|
|
11
|
+
bl_label: typing.Any
|
|
12
|
+
""" """
|
|
13
|
+
|
|
14
|
+
def draw(self, context):
|
|
15
|
+
"""
|
|
16
|
+
|
|
17
|
+
:param context:
|
|
18
|
+
"""
|
|
19
|
+
...
|
|
20
|
+
|
|
8
21
|
class RenderButtonsPanel:
|
|
9
22
|
""" """
|
|
10
23
|
|
|
@@ -5392,6 +5405,176 @@ class RENDER_PT_eevee_performance(
|
|
|
5392
5405
|
""" """
|
|
5393
5406
|
...
|
|
5394
5407
|
|
|
5408
|
+
class RENDER_PT_eevee_performance_compositor(
|
|
5409
|
+
bpy_types.Panel,
|
|
5410
|
+
RenderButtonsPanel,
|
|
5411
|
+
CompositorPerformanceButtonsPanel,
|
|
5412
|
+
bpy_types._GenericUI,
|
|
5413
|
+
):
|
|
5414
|
+
""" """
|
|
5415
|
+
|
|
5416
|
+
COMPAT_ENGINES: typing.Any
|
|
5417
|
+
""" """
|
|
5418
|
+
|
|
5419
|
+
bl_context: typing.Any
|
|
5420
|
+
""" """
|
|
5421
|
+
|
|
5422
|
+
bl_label: typing.Any
|
|
5423
|
+
""" """
|
|
5424
|
+
|
|
5425
|
+
bl_options: typing.Any
|
|
5426
|
+
""" """
|
|
5427
|
+
|
|
5428
|
+
bl_parent_id: typing.Any
|
|
5429
|
+
""" """
|
|
5430
|
+
|
|
5431
|
+
bl_region_type: typing.Any
|
|
5432
|
+
""" """
|
|
5433
|
+
|
|
5434
|
+
bl_rna: typing.Any
|
|
5435
|
+
""" """
|
|
5436
|
+
|
|
5437
|
+
bl_space_type: typing.Any
|
|
5438
|
+
""" """
|
|
5439
|
+
|
|
5440
|
+
id_data: typing.Any
|
|
5441
|
+
""" """
|
|
5442
|
+
|
|
5443
|
+
def append(self, draw_func):
|
|
5444
|
+
"""
|
|
5445
|
+
|
|
5446
|
+
:param draw_func:
|
|
5447
|
+
"""
|
|
5448
|
+
...
|
|
5449
|
+
|
|
5450
|
+
def as_pointer(self):
|
|
5451
|
+
""" """
|
|
5452
|
+
...
|
|
5453
|
+
|
|
5454
|
+
def bl_rna_get_subclass(self):
|
|
5455
|
+
""" """
|
|
5456
|
+
...
|
|
5457
|
+
|
|
5458
|
+
def bl_rna_get_subclass_py(self):
|
|
5459
|
+
""" """
|
|
5460
|
+
...
|
|
5461
|
+
|
|
5462
|
+
def draw(self, context):
|
|
5463
|
+
"""
|
|
5464
|
+
|
|
5465
|
+
:param context:
|
|
5466
|
+
"""
|
|
5467
|
+
...
|
|
5468
|
+
|
|
5469
|
+
def driver_add(self):
|
|
5470
|
+
""" """
|
|
5471
|
+
...
|
|
5472
|
+
|
|
5473
|
+
def driver_remove(self):
|
|
5474
|
+
""" """
|
|
5475
|
+
...
|
|
5476
|
+
|
|
5477
|
+
def get(self):
|
|
5478
|
+
""" """
|
|
5479
|
+
...
|
|
5480
|
+
|
|
5481
|
+
def id_properties_clear(self):
|
|
5482
|
+
""" """
|
|
5483
|
+
...
|
|
5484
|
+
|
|
5485
|
+
def id_properties_ensure(self):
|
|
5486
|
+
""" """
|
|
5487
|
+
...
|
|
5488
|
+
|
|
5489
|
+
def id_properties_ui(self):
|
|
5490
|
+
""" """
|
|
5491
|
+
...
|
|
5492
|
+
|
|
5493
|
+
def is_extended(self):
|
|
5494
|
+
""" """
|
|
5495
|
+
...
|
|
5496
|
+
|
|
5497
|
+
def is_property_hidden(self):
|
|
5498
|
+
""" """
|
|
5499
|
+
...
|
|
5500
|
+
|
|
5501
|
+
def is_property_overridable_library(self):
|
|
5502
|
+
""" """
|
|
5503
|
+
...
|
|
5504
|
+
|
|
5505
|
+
def is_property_readonly(self):
|
|
5506
|
+
""" """
|
|
5507
|
+
...
|
|
5508
|
+
|
|
5509
|
+
def is_property_set(self):
|
|
5510
|
+
""" """
|
|
5511
|
+
...
|
|
5512
|
+
|
|
5513
|
+
def items(self):
|
|
5514
|
+
""" """
|
|
5515
|
+
...
|
|
5516
|
+
|
|
5517
|
+
def keyframe_delete(self):
|
|
5518
|
+
""" """
|
|
5519
|
+
...
|
|
5520
|
+
|
|
5521
|
+
def keyframe_insert(self):
|
|
5522
|
+
""" """
|
|
5523
|
+
...
|
|
5524
|
+
|
|
5525
|
+
def keys(self):
|
|
5526
|
+
""" """
|
|
5527
|
+
...
|
|
5528
|
+
|
|
5529
|
+
def path_from_id(self):
|
|
5530
|
+
""" """
|
|
5531
|
+
...
|
|
5532
|
+
|
|
5533
|
+
def path_resolve(self):
|
|
5534
|
+
""" """
|
|
5535
|
+
...
|
|
5536
|
+
|
|
5537
|
+
def poll(self, context):
|
|
5538
|
+
"""
|
|
5539
|
+
|
|
5540
|
+
:param context:
|
|
5541
|
+
"""
|
|
5542
|
+
...
|
|
5543
|
+
|
|
5544
|
+
def pop(self):
|
|
5545
|
+
""" """
|
|
5546
|
+
...
|
|
5547
|
+
|
|
5548
|
+
def prepend(self, draw_func):
|
|
5549
|
+
"""
|
|
5550
|
+
|
|
5551
|
+
:param draw_func:
|
|
5552
|
+
"""
|
|
5553
|
+
...
|
|
5554
|
+
|
|
5555
|
+
def property_overridable_library_set(self):
|
|
5556
|
+
""" """
|
|
5557
|
+
...
|
|
5558
|
+
|
|
5559
|
+
def property_unset(self):
|
|
5560
|
+
""" """
|
|
5561
|
+
...
|
|
5562
|
+
|
|
5563
|
+
def remove(self, draw_func):
|
|
5564
|
+
"""
|
|
5565
|
+
|
|
5566
|
+
:param draw_func:
|
|
5567
|
+
"""
|
|
5568
|
+
...
|
|
5569
|
+
|
|
5570
|
+
def type_recast(self):
|
|
5571
|
+
""" """
|
|
5572
|
+
...
|
|
5573
|
+
|
|
5574
|
+
def values(self):
|
|
5575
|
+
""" """
|
|
5576
|
+
...
|
|
5577
|
+
|
|
5395
5578
|
class RENDER_PT_eevee_performance_memory(
|
|
5396
5579
|
bpy_types.Panel, RenderButtonsPanel, bpy_types._GenericUI
|
|
5397
5580
|
):
|
|
@@ -23,6 +23,170 @@ class WorldButtonsPanel:
|
|
|
23
23
|
"""
|
|
24
24
|
...
|
|
25
25
|
|
|
26
|
+
class EEVEE_WORLD_PT_lightprobe(
|
|
27
|
+
bpy_types.Panel, WorldButtonsPanel, bpy_types._GenericUI
|
|
28
|
+
):
|
|
29
|
+
""" """
|
|
30
|
+
|
|
31
|
+
COMPAT_ENGINES: typing.Any
|
|
32
|
+
""" """
|
|
33
|
+
|
|
34
|
+
bl_context: typing.Any
|
|
35
|
+
""" """
|
|
36
|
+
|
|
37
|
+
bl_label: typing.Any
|
|
38
|
+
""" """
|
|
39
|
+
|
|
40
|
+
bl_parent_id: typing.Any
|
|
41
|
+
""" """
|
|
42
|
+
|
|
43
|
+
bl_region_type: typing.Any
|
|
44
|
+
""" """
|
|
45
|
+
|
|
46
|
+
bl_rna: typing.Any
|
|
47
|
+
""" """
|
|
48
|
+
|
|
49
|
+
bl_space_type: typing.Any
|
|
50
|
+
""" """
|
|
51
|
+
|
|
52
|
+
id_data: typing.Any
|
|
53
|
+
""" """
|
|
54
|
+
|
|
55
|
+
def append(self, draw_func):
|
|
56
|
+
"""
|
|
57
|
+
|
|
58
|
+
:param draw_func:
|
|
59
|
+
"""
|
|
60
|
+
...
|
|
61
|
+
|
|
62
|
+
def as_pointer(self):
|
|
63
|
+
""" """
|
|
64
|
+
...
|
|
65
|
+
|
|
66
|
+
def bl_rna_get_subclass(self):
|
|
67
|
+
""" """
|
|
68
|
+
...
|
|
69
|
+
|
|
70
|
+
def bl_rna_get_subclass_py(self):
|
|
71
|
+
""" """
|
|
72
|
+
...
|
|
73
|
+
|
|
74
|
+
def draw(self, context):
|
|
75
|
+
"""
|
|
76
|
+
|
|
77
|
+
:param context:
|
|
78
|
+
"""
|
|
79
|
+
...
|
|
80
|
+
|
|
81
|
+
def driver_add(self):
|
|
82
|
+
""" """
|
|
83
|
+
...
|
|
84
|
+
|
|
85
|
+
def driver_remove(self):
|
|
86
|
+
""" """
|
|
87
|
+
...
|
|
88
|
+
|
|
89
|
+
def get(self):
|
|
90
|
+
""" """
|
|
91
|
+
...
|
|
92
|
+
|
|
93
|
+
def id_properties_clear(self):
|
|
94
|
+
""" """
|
|
95
|
+
...
|
|
96
|
+
|
|
97
|
+
def id_properties_ensure(self):
|
|
98
|
+
""" """
|
|
99
|
+
...
|
|
100
|
+
|
|
101
|
+
def id_properties_ui(self):
|
|
102
|
+
""" """
|
|
103
|
+
...
|
|
104
|
+
|
|
105
|
+
def is_extended(self):
|
|
106
|
+
""" """
|
|
107
|
+
...
|
|
108
|
+
|
|
109
|
+
def is_property_hidden(self):
|
|
110
|
+
""" """
|
|
111
|
+
...
|
|
112
|
+
|
|
113
|
+
def is_property_overridable_library(self):
|
|
114
|
+
""" """
|
|
115
|
+
...
|
|
116
|
+
|
|
117
|
+
def is_property_readonly(self):
|
|
118
|
+
""" """
|
|
119
|
+
...
|
|
120
|
+
|
|
121
|
+
def is_property_set(self):
|
|
122
|
+
""" """
|
|
123
|
+
...
|
|
124
|
+
|
|
125
|
+
def items(self):
|
|
126
|
+
""" """
|
|
127
|
+
...
|
|
128
|
+
|
|
129
|
+
def keyframe_delete(self):
|
|
130
|
+
""" """
|
|
131
|
+
...
|
|
132
|
+
|
|
133
|
+
def keyframe_insert(self):
|
|
134
|
+
""" """
|
|
135
|
+
...
|
|
136
|
+
|
|
137
|
+
def keys(self):
|
|
138
|
+
""" """
|
|
139
|
+
...
|
|
140
|
+
|
|
141
|
+
def path_from_id(self):
|
|
142
|
+
""" """
|
|
143
|
+
...
|
|
144
|
+
|
|
145
|
+
def path_resolve(self):
|
|
146
|
+
""" """
|
|
147
|
+
...
|
|
148
|
+
|
|
149
|
+
def poll(self, context):
|
|
150
|
+
"""
|
|
151
|
+
|
|
152
|
+
:param context:
|
|
153
|
+
"""
|
|
154
|
+
...
|
|
155
|
+
|
|
156
|
+
def pop(self):
|
|
157
|
+
""" """
|
|
158
|
+
...
|
|
159
|
+
|
|
160
|
+
def prepend(self, draw_func):
|
|
161
|
+
"""
|
|
162
|
+
|
|
163
|
+
:param draw_func:
|
|
164
|
+
"""
|
|
165
|
+
...
|
|
166
|
+
|
|
167
|
+
def property_overridable_library_set(self):
|
|
168
|
+
""" """
|
|
169
|
+
...
|
|
170
|
+
|
|
171
|
+
def property_unset(self):
|
|
172
|
+
""" """
|
|
173
|
+
...
|
|
174
|
+
|
|
175
|
+
def remove(self, draw_func):
|
|
176
|
+
"""
|
|
177
|
+
|
|
178
|
+
:param draw_func:
|
|
179
|
+
"""
|
|
180
|
+
...
|
|
181
|
+
|
|
182
|
+
def type_recast(self):
|
|
183
|
+
""" """
|
|
184
|
+
...
|
|
185
|
+
|
|
186
|
+
def values(self):
|
|
187
|
+
""" """
|
|
188
|
+
...
|
|
189
|
+
|
|
26
190
|
class EEVEE_WORLD_PT_mist(bpy_types.Panel, WorldButtonsPanel, bpy_types._GenericUI):
|
|
27
191
|
""" """
|
|
28
192
|
|
|
@@ -185,7 +349,7 @@ class EEVEE_WORLD_PT_mist(bpy_types.Panel, WorldButtonsPanel, bpy_types._Generic
|
|
|
185
349
|
""" """
|
|
186
350
|
...
|
|
187
351
|
|
|
188
|
-
class
|
|
352
|
+
class EEVEE_WORLD_PT_settings(bpy_types.Panel, WorldButtonsPanel, bpy_types._GenericUI):
|
|
189
353
|
""" """
|
|
190
354
|
|
|
191
355
|
COMPAT_ENGINES: typing.Any
|
|
@@ -209,7 +373,333 @@ class EEVEE_WORLD_PT_probe(bpy_types.Panel, WorldButtonsPanel, bpy_types._Generi
|
|
|
209
373
|
bl_space_type: typing.Any
|
|
210
374
|
""" """
|
|
211
375
|
|
|
212
|
-
|
|
376
|
+
id_data: typing.Any
|
|
377
|
+
""" """
|
|
378
|
+
|
|
379
|
+
def append(self, draw_func):
|
|
380
|
+
"""
|
|
381
|
+
|
|
382
|
+
:param draw_func:
|
|
383
|
+
"""
|
|
384
|
+
...
|
|
385
|
+
|
|
386
|
+
def as_pointer(self):
|
|
387
|
+
""" """
|
|
388
|
+
...
|
|
389
|
+
|
|
390
|
+
def bl_rna_get_subclass(self):
|
|
391
|
+
""" """
|
|
392
|
+
...
|
|
393
|
+
|
|
394
|
+
def bl_rna_get_subclass_py(self):
|
|
395
|
+
""" """
|
|
396
|
+
...
|
|
397
|
+
|
|
398
|
+
def draw(self, context):
|
|
399
|
+
"""
|
|
400
|
+
|
|
401
|
+
:param context:
|
|
402
|
+
"""
|
|
403
|
+
...
|
|
404
|
+
|
|
405
|
+
def driver_add(self):
|
|
406
|
+
""" """
|
|
407
|
+
...
|
|
408
|
+
|
|
409
|
+
def driver_remove(self):
|
|
410
|
+
""" """
|
|
411
|
+
...
|
|
412
|
+
|
|
413
|
+
def get(self):
|
|
414
|
+
""" """
|
|
415
|
+
...
|
|
416
|
+
|
|
417
|
+
def id_properties_clear(self):
|
|
418
|
+
""" """
|
|
419
|
+
...
|
|
420
|
+
|
|
421
|
+
def id_properties_ensure(self):
|
|
422
|
+
""" """
|
|
423
|
+
...
|
|
424
|
+
|
|
425
|
+
def id_properties_ui(self):
|
|
426
|
+
""" """
|
|
427
|
+
...
|
|
428
|
+
|
|
429
|
+
def is_extended(self):
|
|
430
|
+
""" """
|
|
431
|
+
...
|
|
432
|
+
|
|
433
|
+
def is_property_hidden(self):
|
|
434
|
+
""" """
|
|
435
|
+
...
|
|
436
|
+
|
|
437
|
+
def is_property_overridable_library(self):
|
|
438
|
+
""" """
|
|
439
|
+
...
|
|
440
|
+
|
|
441
|
+
def is_property_readonly(self):
|
|
442
|
+
""" """
|
|
443
|
+
...
|
|
444
|
+
|
|
445
|
+
def is_property_set(self):
|
|
446
|
+
""" """
|
|
447
|
+
...
|
|
448
|
+
|
|
449
|
+
def items(self):
|
|
450
|
+
""" """
|
|
451
|
+
...
|
|
452
|
+
|
|
453
|
+
def keyframe_delete(self):
|
|
454
|
+
""" """
|
|
455
|
+
...
|
|
456
|
+
|
|
457
|
+
def keyframe_insert(self):
|
|
458
|
+
""" """
|
|
459
|
+
...
|
|
460
|
+
|
|
461
|
+
def keys(self):
|
|
462
|
+
""" """
|
|
463
|
+
...
|
|
464
|
+
|
|
465
|
+
def path_from_id(self):
|
|
466
|
+
""" """
|
|
467
|
+
...
|
|
468
|
+
|
|
469
|
+
def path_resolve(self):
|
|
470
|
+
""" """
|
|
471
|
+
...
|
|
472
|
+
|
|
473
|
+
def poll(self, context):
|
|
474
|
+
"""
|
|
475
|
+
|
|
476
|
+
:param context:
|
|
477
|
+
"""
|
|
478
|
+
...
|
|
479
|
+
|
|
480
|
+
def pop(self):
|
|
481
|
+
""" """
|
|
482
|
+
...
|
|
483
|
+
|
|
484
|
+
def prepend(self, draw_func):
|
|
485
|
+
"""
|
|
486
|
+
|
|
487
|
+
:param draw_func:
|
|
488
|
+
"""
|
|
489
|
+
...
|
|
490
|
+
|
|
491
|
+
def property_overridable_library_set(self):
|
|
492
|
+
""" """
|
|
493
|
+
...
|
|
494
|
+
|
|
495
|
+
def property_unset(self):
|
|
496
|
+
""" """
|
|
497
|
+
...
|
|
498
|
+
|
|
499
|
+
def remove(self, draw_func):
|
|
500
|
+
"""
|
|
501
|
+
|
|
502
|
+
:param draw_func:
|
|
503
|
+
"""
|
|
504
|
+
...
|
|
505
|
+
|
|
506
|
+
def type_recast(self):
|
|
507
|
+
""" """
|
|
508
|
+
...
|
|
509
|
+
|
|
510
|
+
def values(self):
|
|
511
|
+
""" """
|
|
512
|
+
...
|
|
513
|
+
|
|
514
|
+
class EEVEE_WORLD_PT_sun(bpy_types.Panel, WorldButtonsPanel, bpy_types._GenericUI):
|
|
515
|
+
""" """
|
|
516
|
+
|
|
517
|
+
COMPAT_ENGINES: typing.Any
|
|
518
|
+
""" """
|
|
519
|
+
|
|
520
|
+
bl_context: typing.Any
|
|
521
|
+
""" """
|
|
522
|
+
|
|
523
|
+
bl_label: typing.Any
|
|
524
|
+
""" """
|
|
525
|
+
|
|
526
|
+
bl_parent_id: typing.Any
|
|
527
|
+
""" """
|
|
528
|
+
|
|
529
|
+
bl_region_type: typing.Any
|
|
530
|
+
""" """
|
|
531
|
+
|
|
532
|
+
bl_rna: typing.Any
|
|
533
|
+
""" """
|
|
534
|
+
|
|
535
|
+
bl_space_type: typing.Any
|
|
536
|
+
""" """
|
|
537
|
+
|
|
538
|
+
id_data: typing.Any
|
|
539
|
+
""" """
|
|
540
|
+
|
|
541
|
+
def append(self, draw_func):
|
|
542
|
+
"""
|
|
543
|
+
|
|
544
|
+
:param draw_func:
|
|
545
|
+
"""
|
|
546
|
+
...
|
|
547
|
+
|
|
548
|
+
def as_pointer(self):
|
|
549
|
+
""" """
|
|
550
|
+
...
|
|
551
|
+
|
|
552
|
+
def bl_rna_get_subclass(self):
|
|
553
|
+
""" """
|
|
554
|
+
...
|
|
555
|
+
|
|
556
|
+
def bl_rna_get_subclass_py(self):
|
|
557
|
+
""" """
|
|
558
|
+
...
|
|
559
|
+
|
|
560
|
+
def draw(self, context):
|
|
561
|
+
"""
|
|
562
|
+
|
|
563
|
+
:param context:
|
|
564
|
+
"""
|
|
565
|
+
...
|
|
566
|
+
|
|
567
|
+
def driver_add(self):
|
|
568
|
+
""" """
|
|
569
|
+
...
|
|
570
|
+
|
|
571
|
+
def driver_remove(self):
|
|
572
|
+
""" """
|
|
573
|
+
...
|
|
574
|
+
|
|
575
|
+
def get(self):
|
|
576
|
+
""" """
|
|
577
|
+
...
|
|
578
|
+
|
|
579
|
+
def id_properties_clear(self):
|
|
580
|
+
""" """
|
|
581
|
+
...
|
|
582
|
+
|
|
583
|
+
def id_properties_ensure(self):
|
|
584
|
+
""" """
|
|
585
|
+
...
|
|
586
|
+
|
|
587
|
+
def id_properties_ui(self):
|
|
588
|
+
""" """
|
|
589
|
+
...
|
|
590
|
+
|
|
591
|
+
def is_extended(self):
|
|
592
|
+
""" """
|
|
593
|
+
...
|
|
594
|
+
|
|
595
|
+
def is_property_hidden(self):
|
|
596
|
+
""" """
|
|
597
|
+
...
|
|
598
|
+
|
|
599
|
+
def is_property_overridable_library(self):
|
|
600
|
+
""" """
|
|
601
|
+
...
|
|
602
|
+
|
|
603
|
+
def is_property_readonly(self):
|
|
604
|
+
""" """
|
|
605
|
+
...
|
|
606
|
+
|
|
607
|
+
def is_property_set(self):
|
|
608
|
+
""" """
|
|
609
|
+
...
|
|
610
|
+
|
|
611
|
+
def items(self):
|
|
612
|
+
""" """
|
|
613
|
+
...
|
|
614
|
+
|
|
615
|
+
def keyframe_delete(self):
|
|
616
|
+
""" """
|
|
617
|
+
...
|
|
618
|
+
|
|
619
|
+
def keyframe_insert(self):
|
|
620
|
+
""" """
|
|
621
|
+
...
|
|
622
|
+
|
|
623
|
+
def keys(self):
|
|
624
|
+
""" """
|
|
625
|
+
...
|
|
626
|
+
|
|
627
|
+
def path_from_id(self):
|
|
628
|
+
""" """
|
|
629
|
+
...
|
|
630
|
+
|
|
631
|
+
def path_resolve(self):
|
|
632
|
+
""" """
|
|
633
|
+
...
|
|
634
|
+
|
|
635
|
+
def poll(self, context):
|
|
636
|
+
"""
|
|
637
|
+
|
|
638
|
+
:param context:
|
|
639
|
+
"""
|
|
640
|
+
...
|
|
641
|
+
|
|
642
|
+
def pop(self):
|
|
643
|
+
""" """
|
|
644
|
+
...
|
|
645
|
+
|
|
646
|
+
def prepend(self, draw_func):
|
|
647
|
+
"""
|
|
648
|
+
|
|
649
|
+
:param draw_func:
|
|
650
|
+
"""
|
|
651
|
+
...
|
|
652
|
+
|
|
653
|
+
def property_overridable_library_set(self):
|
|
654
|
+
""" """
|
|
655
|
+
...
|
|
656
|
+
|
|
657
|
+
def property_unset(self):
|
|
658
|
+
""" """
|
|
659
|
+
...
|
|
660
|
+
|
|
661
|
+
def remove(self, draw_func):
|
|
662
|
+
"""
|
|
663
|
+
|
|
664
|
+
:param draw_func:
|
|
665
|
+
"""
|
|
666
|
+
...
|
|
667
|
+
|
|
668
|
+
def type_recast(self):
|
|
669
|
+
""" """
|
|
670
|
+
...
|
|
671
|
+
|
|
672
|
+
def values(self):
|
|
673
|
+
""" """
|
|
674
|
+
...
|
|
675
|
+
|
|
676
|
+
class EEVEE_WORLD_PT_sun_shadow(
|
|
677
|
+
bpy_types.Panel, WorldButtonsPanel, bpy_types._GenericUI
|
|
678
|
+
):
|
|
679
|
+
""" """
|
|
680
|
+
|
|
681
|
+
COMPAT_ENGINES: typing.Any
|
|
682
|
+
""" """
|
|
683
|
+
|
|
684
|
+
bl_context: typing.Any
|
|
685
|
+
""" """
|
|
686
|
+
|
|
687
|
+
bl_label: typing.Any
|
|
688
|
+
""" """
|
|
689
|
+
|
|
690
|
+
bl_options: typing.Any
|
|
691
|
+
""" """
|
|
692
|
+
|
|
693
|
+
bl_parent_id: typing.Any
|
|
694
|
+
""" """
|
|
695
|
+
|
|
696
|
+
bl_region_type: typing.Any
|
|
697
|
+
""" """
|
|
698
|
+
|
|
699
|
+
bl_rna: typing.Any
|
|
700
|
+
""" """
|
|
701
|
+
|
|
702
|
+
bl_space_type: typing.Any
|
|
213
703
|
""" """
|
|
214
704
|
|
|
215
705
|
id_data: typing.Any
|
|
@@ -241,6 +731,13 @@ class EEVEE_WORLD_PT_probe(bpy_types.Panel, WorldButtonsPanel, bpy_types._Generi
|
|
|
241
731
|
"""
|
|
242
732
|
...
|
|
243
733
|
|
|
734
|
+
def draw_header(self, context):
|
|
735
|
+
"""
|
|
736
|
+
|
|
737
|
+
:param context:
|
|
738
|
+
"""
|
|
739
|
+
...
|
|
740
|
+
|
|
244
741
|
def driver_add(self):
|
|
245
742
|
""" """
|
|
246
743
|
...
|