fake-bpy-module 20240510__py3-none-any.whl → 20240514__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.
- aud/__init__.pyi +2 -1
- bl_operators/__init__.pyi +1 -0
- bl_operators/world/__init__.pyi +143 -0
- bl_operators/world/py.typed +0 -0
- bl_ui/properties_data_grease_pencil/__init__.pyi +181 -0
- bl_ui/properties_grease_pencil_common/__init__.pyi +362 -0
- bl_ui/space_clip/__init__.pyi +181 -0
- bl_ui/space_sequencer/__init__.pyi +228 -111
- bl_ui/space_toolsystem_toolbar/__init__.pyi +43 -43
- blf/__init__.pyi +3 -2
- bpy/ops/anim/__init__.pyi +1 -1
- bpy/ops/export_scene/__init__.pyi +2 -2
- bpy/ops/grease_pencil/__init__.pyi +70 -0
- bpy/ops/nla/__init__.pyi +2 -2
- bpy/ops/sculpt/__init__.pyi +2 -2
- bpy/ops/ui/__init__.pyi +3 -0
- bpy/ops/world/__init__.pyi +16 -0
- bpy/props/__init__.pyi +2 -2
- bpy/types/__init__.pyi +1408 -1563
- bpy_types/__init__.pyi +45 -0
- {fake_bpy_module-20240510.dist-info → fake_bpy_module-20240514.dist-info}/METADATA +1 -1
- {fake_bpy_module-20240510.dist-info → fake_bpy_module-20240514.dist-info}/RECORD +27 -25
- freestyle/types/__init__.pyi +5 -2
- mathutils/__init__.pyi +2 -2
- mathutils/geometry/__init__.pyi +2 -1
- {fake_bpy_module-20240510.dist-info → fake_bpy_module-20240514.dist-info}/WHEEL +0 -0
- {fake_bpy_module-20240510.dist-info → fake_bpy_module-20240514.dist-info}/top_level.txt +0 -0
aud/__init__.pyi
CHANGED
|
@@ -740,11 +740,12 @@ class Sound:
|
|
|
740
740
|
"""
|
|
741
741
|
...
|
|
742
742
|
|
|
743
|
-
def loop(self, count) -> Sound:
|
|
743
|
+
def loop(self, count: int) -> Sound:
|
|
744
744
|
"""Loops a sound.
|
|
745
745
|
|
|
746
746
|
:param count: How often the sound should be looped.
|
|
747
747
|
Negative values mean endlessly.
|
|
748
|
+
:type count: int
|
|
748
749
|
:return: The created `Sound` object.
|
|
749
750
|
:rtype: Sound
|
|
750
751
|
"""
|
bl_operators/__init__.pyi
CHANGED
|
@@ -0,0 +1,143 @@
|
|
|
1
|
+
import typing
|
|
2
|
+
import bpy_types
|
|
3
|
+
|
|
4
|
+
GenericType = typing.TypeVar("GenericType")
|
|
5
|
+
|
|
6
|
+
class WORLD_OT_convert_volume_to_mesh(bpy_types.Operator):
|
|
7
|
+
""" """
|
|
8
|
+
|
|
9
|
+
bl_idname: typing.Any
|
|
10
|
+
""" """
|
|
11
|
+
|
|
12
|
+
bl_label: typing.Any
|
|
13
|
+
""" """
|
|
14
|
+
|
|
15
|
+
bl_options: typing.Any
|
|
16
|
+
""" """
|
|
17
|
+
|
|
18
|
+
bl_rna: typing.Any
|
|
19
|
+
""" """
|
|
20
|
+
|
|
21
|
+
id_data: typing.Any
|
|
22
|
+
""" """
|
|
23
|
+
|
|
24
|
+
def as_keywords(self, ignore):
|
|
25
|
+
"""
|
|
26
|
+
|
|
27
|
+
:param ignore:
|
|
28
|
+
"""
|
|
29
|
+
...
|
|
30
|
+
|
|
31
|
+
def as_pointer(self):
|
|
32
|
+
""" """
|
|
33
|
+
...
|
|
34
|
+
|
|
35
|
+
def bl_rna_get_subclass(self):
|
|
36
|
+
""" """
|
|
37
|
+
...
|
|
38
|
+
|
|
39
|
+
def bl_rna_get_subclass_py(self):
|
|
40
|
+
""" """
|
|
41
|
+
...
|
|
42
|
+
|
|
43
|
+
def driver_add(self):
|
|
44
|
+
""" """
|
|
45
|
+
...
|
|
46
|
+
|
|
47
|
+
def driver_remove(self):
|
|
48
|
+
""" """
|
|
49
|
+
...
|
|
50
|
+
|
|
51
|
+
def execute(self, context):
|
|
52
|
+
"""
|
|
53
|
+
|
|
54
|
+
:param context:
|
|
55
|
+
"""
|
|
56
|
+
...
|
|
57
|
+
|
|
58
|
+
def get(self):
|
|
59
|
+
""" """
|
|
60
|
+
...
|
|
61
|
+
|
|
62
|
+
def id_properties_clear(self):
|
|
63
|
+
""" """
|
|
64
|
+
...
|
|
65
|
+
|
|
66
|
+
def id_properties_ensure(self):
|
|
67
|
+
""" """
|
|
68
|
+
...
|
|
69
|
+
|
|
70
|
+
def id_properties_ui(self):
|
|
71
|
+
""" """
|
|
72
|
+
...
|
|
73
|
+
|
|
74
|
+
def is_property_hidden(self):
|
|
75
|
+
""" """
|
|
76
|
+
...
|
|
77
|
+
|
|
78
|
+
def is_property_overridable_library(self):
|
|
79
|
+
""" """
|
|
80
|
+
...
|
|
81
|
+
|
|
82
|
+
def is_property_readonly(self):
|
|
83
|
+
""" """
|
|
84
|
+
...
|
|
85
|
+
|
|
86
|
+
def is_property_set(self):
|
|
87
|
+
""" """
|
|
88
|
+
...
|
|
89
|
+
|
|
90
|
+
def items(self):
|
|
91
|
+
""" """
|
|
92
|
+
...
|
|
93
|
+
|
|
94
|
+
def keyframe_delete(self):
|
|
95
|
+
""" """
|
|
96
|
+
...
|
|
97
|
+
|
|
98
|
+
def keyframe_insert(self):
|
|
99
|
+
""" """
|
|
100
|
+
...
|
|
101
|
+
|
|
102
|
+
def keys(self):
|
|
103
|
+
""" """
|
|
104
|
+
...
|
|
105
|
+
|
|
106
|
+
def path_from_id(self):
|
|
107
|
+
""" """
|
|
108
|
+
...
|
|
109
|
+
|
|
110
|
+
def path_resolve(self):
|
|
111
|
+
""" """
|
|
112
|
+
...
|
|
113
|
+
|
|
114
|
+
def poll(self, context):
|
|
115
|
+
"""
|
|
116
|
+
|
|
117
|
+
:param context:
|
|
118
|
+
"""
|
|
119
|
+
...
|
|
120
|
+
|
|
121
|
+
def poll_message_set(self):
|
|
122
|
+
""" """
|
|
123
|
+
...
|
|
124
|
+
|
|
125
|
+
def pop(self):
|
|
126
|
+
""" """
|
|
127
|
+
...
|
|
128
|
+
|
|
129
|
+
def property_overridable_library_set(self):
|
|
130
|
+
""" """
|
|
131
|
+
...
|
|
132
|
+
|
|
133
|
+
def property_unset(self):
|
|
134
|
+
""" """
|
|
135
|
+
...
|
|
136
|
+
|
|
137
|
+
def type_recast(self):
|
|
138
|
+
""" """
|
|
139
|
+
...
|
|
140
|
+
|
|
141
|
+
def values(self):
|
|
142
|
+
""" """
|
|
143
|
+
...
|
|
File without changes
|
|
@@ -262,6 +262,187 @@ class GREASE_PENCIL_MT_grease_pencil_add_layer_extra(
|
|
|
262
262
|
""" """
|
|
263
263
|
...
|
|
264
264
|
|
|
265
|
+
class GREASE_PENCIL_MT_group_context_menu(bpy_types.Menu, bpy_types._GenericUI):
|
|
266
|
+
""" """
|
|
267
|
+
|
|
268
|
+
bl_label: typing.Any
|
|
269
|
+
""" """
|
|
270
|
+
|
|
271
|
+
bl_rna: typing.Any
|
|
272
|
+
""" """
|
|
273
|
+
|
|
274
|
+
id_data: typing.Any
|
|
275
|
+
""" """
|
|
276
|
+
|
|
277
|
+
def append(self, draw_func):
|
|
278
|
+
"""
|
|
279
|
+
|
|
280
|
+
:param draw_func:
|
|
281
|
+
"""
|
|
282
|
+
...
|
|
283
|
+
|
|
284
|
+
def as_pointer(self):
|
|
285
|
+
""" """
|
|
286
|
+
...
|
|
287
|
+
|
|
288
|
+
def bl_rna_get_subclass(self):
|
|
289
|
+
""" """
|
|
290
|
+
...
|
|
291
|
+
|
|
292
|
+
def bl_rna_get_subclass_py(self):
|
|
293
|
+
""" """
|
|
294
|
+
...
|
|
295
|
+
|
|
296
|
+
def draw(self, context):
|
|
297
|
+
"""
|
|
298
|
+
|
|
299
|
+
:param context:
|
|
300
|
+
"""
|
|
301
|
+
...
|
|
302
|
+
|
|
303
|
+
def draw_collapsible(self, context, layout):
|
|
304
|
+
"""
|
|
305
|
+
|
|
306
|
+
:param context:
|
|
307
|
+
:param layout:
|
|
308
|
+
"""
|
|
309
|
+
...
|
|
310
|
+
|
|
311
|
+
def draw_preset(self, _context):
|
|
312
|
+
"""
|
|
313
|
+
|
|
314
|
+
:param _context:
|
|
315
|
+
"""
|
|
316
|
+
...
|
|
317
|
+
|
|
318
|
+
def driver_add(self):
|
|
319
|
+
""" """
|
|
320
|
+
...
|
|
321
|
+
|
|
322
|
+
def driver_remove(self):
|
|
323
|
+
""" """
|
|
324
|
+
...
|
|
325
|
+
|
|
326
|
+
def get(self):
|
|
327
|
+
""" """
|
|
328
|
+
...
|
|
329
|
+
|
|
330
|
+
def id_properties_clear(self):
|
|
331
|
+
""" """
|
|
332
|
+
...
|
|
333
|
+
|
|
334
|
+
def id_properties_ensure(self):
|
|
335
|
+
""" """
|
|
336
|
+
...
|
|
337
|
+
|
|
338
|
+
def id_properties_ui(self):
|
|
339
|
+
""" """
|
|
340
|
+
...
|
|
341
|
+
|
|
342
|
+
def is_extended(self):
|
|
343
|
+
""" """
|
|
344
|
+
...
|
|
345
|
+
|
|
346
|
+
def is_property_hidden(self):
|
|
347
|
+
""" """
|
|
348
|
+
...
|
|
349
|
+
|
|
350
|
+
def is_property_overridable_library(self):
|
|
351
|
+
""" """
|
|
352
|
+
...
|
|
353
|
+
|
|
354
|
+
def is_property_readonly(self):
|
|
355
|
+
""" """
|
|
356
|
+
...
|
|
357
|
+
|
|
358
|
+
def is_property_set(self):
|
|
359
|
+
""" """
|
|
360
|
+
...
|
|
361
|
+
|
|
362
|
+
def items(self):
|
|
363
|
+
""" """
|
|
364
|
+
...
|
|
365
|
+
|
|
366
|
+
def keyframe_delete(self):
|
|
367
|
+
""" """
|
|
368
|
+
...
|
|
369
|
+
|
|
370
|
+
def keyframe_insert(self):
|
|
371
|
+
""" """
|
|
372
|
+
...
|
|
373
|
+
|
|
374
|
+
def keys(self):
|
|
375
|
+
""" """
|
|
376
|
+
...
|
|
377
|
+
|
|
378
|
+
def path_from_id(self):
|
|
379
|
+
""" """
|
|
380
|
+
...
|
|
381
|
+
|
|
382
|
+
def path_menu(
|
|
383
|
+
self,
|
|
384
|
+
searchpaths,
|
|
385
|
+
operator,
|
|
386
|
+
props_default,
|
|
387
|
+
prop_filepath,
|
|
388
|
+
filter_ext,
|
|
389
|
+
filter_path,
|
|
390
|
+
display_name,
|
|
391
|
+
add_operator,
|
|
392
|
+
add_operator_props,
|
|
393
|
+
):
|
|
394
|
+
"""
|
|
395
|
+
|
|
396
|
+
:param searchpaths:
|
|
397
|
+
:param operator:
|
|
398
|
+
:param props_default:
|
|
399
|
+
:param prop_filepath:
|
|
400
|
+
:param filter_ext:
|
|
401
|
+
:param filter_path:
|
|
402
|
+
:param display_name:
|
|
403
|
+
:param add_operator:
|
|
404
|
+
:param add_operator_props:
|
|
405
|
+
"""
|
|
406
|
+
...
|
|
407
|
+
|
|
408
|
+
def path_resolve(self):
|
|
409
|
+
""" """
|
|
410
|
+
...
|
|
411
|
+
|
|
412
|
+
def pop(self):
|
|
413
|
+
""" """
|
|
414
|
+
...
|
|
415
|
+
|
|
416
|
+
def prepend(self, draw_func):
|
|
417
|
+
"""
|
|
418
|
+
|
|
419
|
+
:param draw_func:
|
|
420
|
+
"""
|
|
421
|
+
...
|
|
422
|
+
|
|
423
|
+
def property_overridable_library_set(self):
|
|
424
|
+
""" """
|
|
425
|
+
...
|
|
426
|
+
|
|
427
|
+
def property_unset(self):
|
|
428
|
+
""" """
|
|
429
|
+
...
|
|
430
|
+
|
|
431
|
+
def remove(self, draw_func):
|
|
432
|
+
"""
|
|
433
|
+
|
|
434
|
+
:param draw_func:
|
|
435
|
+
"""
|
|
436
|
+
...
|
|
437
|
+
|
|
438
|
+
def type_recast(self):
|
|
439
|
+
""" """
|
|
440
|
+
...
|
|
441
|
+
|
|
442
|
+
def values(self):
|
|
443
|
+
""" """
|
|
444
|
+
...
|
|
445
|
+
|
|
265
446
|
class GREASE_PENCIL_MT_layer_mask_add(bpy_types.Menu, bpy_types._GenericUI):
|
|
266
447
|
""" """
|
|
267
448
|
|
|
@@ -2369,6 +2369,368 @@ class GREASE_PENCIL_MT_move_to_layer(bpy_types.Menu, bpy_types._GenericUI):
|
|
|
2369
2369
|
""" """
|
|
2370
2370
|
...
|
|
2371
2371
|
|
|
2372
|
+
class GREASE_PENCIL_MT_snap(bpy_types.Menu, bpy_types._GenericUI):
|
|
2373
|
+
""" """
|
|
2374
|
+
|
|
2375
|
+
bl_label: typing.Any
|
|
2376
|
+
""" """
|
|
2377
|
+
|
|
2378
|
+
bl_rna: typing.Any
|
|
2379
|
+
""" """
|
|
2380
|
+
|
|
2381
|
+
id_data: typing.Any
|
|
2382
|
+
""" """
|
|
2383
|
+
|
|
2384
|
+
def append(self, draw_func):
|
|
2385
|
+
"""
|
|
2386
|
+
|
|
2387
|
+
:param draw_func:
|
|
2388
|
+
"""
|
|
2389
|
+
...
|
|
2390
|
+
|
|
2391
|
+
def as_pointer(self):
|
|
2392
|
+
""" """
|
|
2393
|
+
...
|
|
2394
|
+
|
|
2395
|
+
def bl_rna_get_subclass(self):
|
|
2396
|
+
""" """
|
|
2397
|
+
...
|
|
2398
|
+
|
|
2399
|
+
def bl_rna_get_subclass_py(self):
|
|
2400
|
+
""" """
|
|
2401
|
+
...
|
|
2402
|
+
|
|
2403
|
+
def draw(self, _context):
|
|
2404
|
+
"""
|
|
2405
|
+
|
|
2406
|
+
:param _context:
|
|
2407
|
+
"""
|
|
2408
|
+
...
|
|
2409
|
+
|
|
2410
|
+
def draw_collapsible(self, context, layout):
|
|
2411
|
+
"""
|
|
2412
|
+
|
|
2413
|
+
:param context:
|
|
2414
|
+
:param layout:
|
|
2415
|
+
"""
|
|
2416
|
+
...
|
|
2417
|
+
|
|
2418
|
+
def draw_preset(self, _context):
|
|
2419
|
+
"""
|
|
2420
|
+
|
|
2421
|
+
:param _context:
|
|
2422
|
+
"""
|
|
2423
|
+
...
|
|
2424
|
+
|
|
2425
|
+
def driver_add(self):
|
|
2426
|
+
""" """
|
|
2427
|
+
...
|
|
2428
|
+
|
|
2429
|
+
def driver_remove(self):
|
|
2430
|
+
""" """
|
|
2431
|
+
...
|
|
2432
|
+
|
|
2433
|
+
def get(self):
|
|
2434
|
+
""" """
|
|
2435
|
+
...
|
|
2436
|
+
|
|
2437
|
+
def id_properties_clear(self):
|
|
2438
|
+
""" """
|
|
2439
|
+
...
|
|
2440
|
+
|
|
2441
|
+
def id_properties_ensure(self):
|
|
2442
|
+
""" """
|
|
2443
|
+
...
|
|
2444
|
+
|
|
2445
|
+
def id_properties_ui(self):
|
|
2446
|
+
""" """
|
|
2447
|
+
...
|
|
2448
|
+
|
|
2449
|
+
def is_extended(self):
|
|
2450
|
+
""" """
|
|
2451
|
+
...
|
|
2452
|
+
|
|
2453
|
+
def is_property_hidden(self):
|
|
2454
|
+
""" """
|
|
2455
|
+
...
|
|
2456
|
+
|
|
2457
|
+
def is_property_overridable_library(self):
|
|
2458
|
+
""" """
|
|
2459
|
+
...
|
|
2460
|
+
|
|
2461
|
+
def is_property_readonly(self):
|
|
2462
|
+
""" """
|
|
2463
|
+
...
|
|
2464
|
+
|
|
2465
|
+
def is_property_set(self):
|
|
2466
|
+
""" """
|
|
2467
|
+
...
|
|
2468
|
+
|
|
2469
|
+
def items(self):
|
|
2470
|
+
""" """
|
|
2471
|
+
...
|
|
2472
|
+
|
|
2473
|
+
def keyframe_delete(self):
|
|
2474
|
+
""" """
|
|
2475
|
+
...
|
|
2476
|
+
|
|
2477
|
+
def keyframe_insert(self):
|
|
2478
|
+
""" """
|
|
2479
|
+
...
|
|
2480
|
+
|
|
2481
|
+
def keys(self):
|
|
2482
|
+
""" """
|
|
2483
|
+
...
|
|
2484
|
+
|
|
2485
|
+
def path_from_id(self):
|
|
2486
|
+
""" """
|
|
2487
|
+
...
|
|
2488
|
+
|
|
2489
|
+
def path_menu(
|
|
2490
|
+
self,
|
|
2491
|
+
searchpaths,
|
|
2492
|
+
operator,
|
|
2493
|
+
props_default,
|
|
2494
|
+
prop_filepath,
|
|
2495
|
+
filter_ext,
|
|
2496
|
+
filter_path,
|
|
2497
|
+
display_name,
|
|
2498
|
+
add_operator,
|
|
2499
|
+
add_operator_props,
|
|
2500
|
+
):
|
|
2501
|
+
"""
|
|
2502
|
+
|
|
2503
|
+
:param searchpaths:
|
|
2504
|
+
:param operator:
|
|
2505
|
+
:param props_default:
|
|
2506
|
+
:param prop_filepath:
|
|
2507
|
+
:param filter_ext:
|
|
2508
|
+
:param filter_path:
|
|
2509
|
+
:param display_name:
|
|
2510
|
+
:param add_operator:
|
|
2511
|
+
:param add_operator_props:
|
|
2512
|
+
"""
|
|
2513
|
+
...
|
|
2514
|
+
|
|
2515
|
+
def path_resolve(self):
|
|
2516
|
+
""" """
|
|
2517
|
+
...
|
|
2518
|
+
|
|
2519
|
+
def pop(self):
|
|
2520
|
+
""" """
|
|
2521
|
+
...
|
|
2522
|
+
|
|
2523
|
+
def prepend(self, draw_func):
|
|
2524
|
+
"""
|
|
2525
|
+
|
|
2526
|
+
:param draw_func:
|
|
2527
|
+
"""
|
|
2528
|
+
...
|
|
2529
|
+
|
|
2530
|
+
def property_overridable_library_set(self):
|
|
2531
|
+
""" """
|
|
2532
|
+
...
|
|
2533
|
+
|
|
2534
|
+
def property_unset(self):
|
|
2535
|
+
""" """
|
|
2536
|
+
...
|
|
2537
|
+
|
|
2538
|
+
def remove(self, draw_func):
|
|
2539
|
+
"""
|
|
2540
|
+
|
|
2541
|
+
:param draw_func:
|
|
2542
|
+
"""
|
|
2543
|
+
...
|
|
2544
|
+
|
|
2545
|
+
def type_recast(self):
|
|
2546
|
+
""" """
|
|
2547
|
+
...
|
|
2548
|
+
|
|
2549
|
+
def values(self):
|
|
2550
|
+
""" """
|
|
2551
|
+
...
|
|
2552
|
+
|
|
2553
|
+
class GREASE_PENCIL_MT_snap_pie(bpy_types.Menu, bpy_types._GenericUI):
|
|
2554
|
+
""" """
|
|
2555
|
+
|
|
2556
|
+
bl_label: typing.Any
|
|
2557
|
+
""" """
|
|
2558
|
+
|
|
2559
|
+
bl_rna: typing.Any
|
|
2560
|
+
""" """
|
|
2561
|
+
|
|
2562
|
+
id_data: typing.Any
|
|
2563
|
+
""" """
|
|
2564
|
+
|
|
2565
|
+
def append(self, draw_func):
|
|
2566
|
+
"""
|
|
2567
|
+
|
|
2568
|
+
:param draw_func:
|
|
2569
|
+
"""
|
|
2570
|
+
...
|
|
2571
|
+
|
|
2572
|
+
def as_pointer(self):
|
|
2573
|
+
""" """
|
|
2574
|
+
...
|
|
2575
|
+
|
|
2576
|
+
def bl_rna_get_subclass(self):
|
|
2577
|
+
""" """
|
|
2578
|
+
...
|
|
2579
|
+
|
|
2580
|
+
def bl_rna_get_subclass_py(self):
|
|
2581
|
+
""" """
|
|
2582
|
+
...
|
|
2583
|
+
|
|
2584
|
+
def draw(self, _context):
|
|
2585
|
+
"""
|
|
2586
|
+
|
|
2587
|
+
:param _context:
|
|
2588
|
+
"""
|
|
2589
|
+
...
|
|
2590
|
+
|
|
2591
|
+
def draw_collapsible(self, context, layout):
|
|
2592
|
+
"""
|
|
2593
|
+
|
|
2594
|
+
:param context:
|
|
2595
|
+
:param layout:
|
|
2596
|
+
"""
|
|
2597
|
+
...
|
|
2598
|
+
|
|
2599
|
+
def draw_preset(self, _context):
|
|
2600
|
+
"""
|
|
2601
|
+
|
|
2602
|
+
:param _context:
|
|
2603
|
+
"""
|
|
2604
|
+
...
|
|
2605
|
+
|
|
2606
|
+
def driver_add(self):
|
|
2607
|
+
""" """
|
|
2608
|
+
...
|
|
2609
|
+
|
|
2610
|
+
def driver_remove(self):
|
|
2611
|
+
""" """
|
|
2612
|
+
...
|
|
2613
|
+
|
|
2614
|
+
def get(self):
|
|
2615
|
+
""" """
|
|
2616
|
+
...
|
|
2617
|
+
|
|
2618
|
+
def id_properties_clear(self):
|
|
2619
|
+
""" """
|
|
2620
|
+
...
|
|
2621
|
+
|
|
2622
|
+
def id_properties_ensure(self):
|
|
2623
|
+
""" """
|
|
2624
|
+
...
|
|
2625
|
+
|
|
2626
|
+
def id_properties_ui(self):
|
|
2627
|
+
""" """
|
|
2628
|
+
...
|
|
2629
|
+
|
|
2630
|
+
def is_extended(self):
|
|
2631
|
+
""" """
|
|
2632
|
+
...
|
|
2633
|
+
|
|
2634
|
+
def is_property_hidden(self):
|
|
2635
|
+
""" """
|
|
2636
|
+
...
|
|
2637
|
+
|
|
2638
|
+
def is_property_overridable_library(self):
|
|
2639
|
+
""" """
|
|
2640
|
+
...
|
|
2641
|
+
|
|
2642
|
+
def is_property_readonly(self):
|
|
2643
|
+
""" """
|
|
2644
|
+
...
|
|
2645
|
+
|
|
2646
|
+
def is_property_set(self):
|
|
2647
|
+
""" """
|
|
2648
|
+
...
|
|
2649
|
+
|
|
2650
|
+
def items(self):
|
|
2651
|
+
""" """
|
|
2652
|
+
...
|
|
2653
|
+
|
|
2654
|
+
def keyframe_delete(self):
|
|
2655
|
+
""" """
|
|
2656
|
+
...
|
|
2657
|
+
|
|
2658
|
+
def keyframe_insert(self):
|
|
2659
|
+
""" """
|
|
2660
|
+
...
|
|
2661
|
+
|
|
2662
|
+
def keys(self):
|
|
2663
|
+
""" """
|
|
2664
|
+
...
|
|
2665
|
+
|
|
2666
|
+
def path_from_id(self):
|
|
2667
|
+
""" """
|
|
2668
|
+
...
|
|
2669
|
+
|
|
2670
|
+
def path_menu(
|
|
2671
|
+
self,
|
|
2672
|
+
searchpaths,
|
|
2673
|
+
operator,
|
|
2674
|
+
props_default,
|
|
2675
|
+
prop_filepath,
|
|
2676
|
+
filter_ext,
|
|
2677
|
+
filter_path,
|
|
2678
|
+
display_name,
|
|
2679
|
+
add_operator,
|
|
2680
|
+
add_operator_props,
|
|
2681
|
+
):
|
|
2682
|
+
"""
|
|
2683
|
+
|
|
2684
|
+
:param searchpaths:
|
|
2685
|
+
:param operator:
|
|
2686
|
+
:param props_default:
|
|
2687
|
+
:param prop_filepath:
|
|
2688
|
+
:param filter_ext:
|
|
2689
|
+
:param filter_path:
|
|
2690
|
+
:param display_name:
|
|
2691
|
+
:param add_operator:
|
|
2692
|
+
:param add_operator_props:
|
|
2693
|
+
"""
|
|
2694
|
+
...
|
|
2695
|
+
|
|
2696
|
+
def path_resolve(self):
|
|
2697
|
+
""" """
|
|
2698
|
+
...
|
|
2699
|
+
|
|
2700
|
+
def pop(self):
|
|
2701
|
+
""" """
|
|
2702
|
+
...
|
|
2703
|
+
|
|
2704
|
+
def prepend(self, draw_func):
|
|
2705
|
+
"""
|
|
2706
|
+
|
|
2707
|
+
:param draw_func:
|
|
2708
|
+
"""
|
|
2709
|
+
...
|
|
2710
|
+
|
|
2711
|
+
def property_overridable_library_set(self):
|
|
2712
|
+
""" """
|
|
2713
|
+
...
|
|
2714
|
+
|
|
2715
|
+
def property_unset(self):
|
|
2716
|
+
""" """
|
|
2717
|
+
...
|
|
2718
|
+
|
|
2719
|
+
def remove(self, draw_func):
|
|
2720
|
+
"""
|
|
2721
|
+
|
|
2722
|
+
:param draw_func:
|
|
2723
|
+
"""
|
|
2724
|
+
...
|
|
2725
|
+
|
|
2726
|
+
def type_recast(self):
|
|
2727
|
+
""" """
|
|
2728
|
+
...
|
|
2729
|
+
|
|
2730
|
+
def values(self):
|
|
2731
|
+
""" """
|
|
2732
|
+
...
|
|
2733
|
+
|
|
2372
2734
|
class GreasePencilBrushFalloff:
|
|
2373
2735
|
""" """
|
|
2374
2736
|
|