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

@@ -3,6 +3,130 @@ import bpy_types
3
3
 
4
4
  GenericType = typing.TypeVar("GenericType")
5
5
 
6
+ class NODE_FH_image_node(bpy_types.FileHandler):
7
+ """ """
8
+
9
+ bl_file_extensions: typing.Any
10
+ """ """
11
+
12
+ bl_idname: typing.Any
13
+ """ """
14
+
15
+ bl_import_operator: typing.Any
16
+ """ """
17
+
18
+ bl_label: typing.Any
19
+ """ """
20
+
21
+ bl_rna: typing.Any
22
+ """ """
23
+
24
+ id_data: typing.Any
25
+ """ """
26
+
27
+ def as_pointer(self):
28
+ """ """
29
+ ...
30
+
31
+ def bl_rna_get_subclass(self):
32
+ """ """
33
+ ...
34
+
35
+ def bl_rna_get_subclass_py(self):
36
+ """ """
37
+ ...
38
+
39
+ def driver_add(self):
40
+ """ """
41
+ ...
42
+
43
+ def driver_remove(self):
44
+ """ """
45
+ ...
46
+
47
+ def get(self):
48
+ """ """
49
+ ...
50
+
51
+ def id_properties_clear(self):
52
+ """ """
53
+ ...
54
+
55
+ def id_properties_ensure(self):
56
+ """ """
57
+ ...
58
+
59
+ def id_properties_ui(self):
60
+ """ """
61
+ ...
62
+
63
+ def is_property_hidden(self):
64
+ """ """
65
+ ...
66
+
67
+ def is_property_overridable_library(self):
68
+ """ """
69
+ ...
70
+
71
+ def is_property_readonly(self):
72
+ """ """
73
+ ...
74
+
75
+ def is_property_set(self):
76
+ """ """
77
+ ...
78
+
79
+ def items(self):
80
+ """ """
81
+ ...
82
+
83
+ def keyframe_delete(self):
84
+ """ """
85
+ ...
86
+
87
+ def keyframe_insert(self):
88
+ """ """
89
+ ...
90
+
91
+ def keys(self):
92
+ """ """
93
+ ...
94
+
95
+ def path_from_id(self):
96
+ """ """
97
+ ...
98
+
99
+ def path_resolve(self):
100
+ """ """
101
+ ...
102
+
103
+ def poll_drop(self, context):
104
+ """
105
+
106
+ :param context:
107
+ """
108
+ ...
109
+
110
+ def pop(self):
111
+ """ """
112
+ ...
113
+
114
+ def property_overridable_library_set(self):
115
+ """ """
116
+ ...
117
+
118
+ def property_unset(self):
119
+ """ """
120
+ ...
121
+
122
+ def type_recast(self):
123
+ """ """
124
+ ...
125
+
126
+ def values(self):
127
+ """ """
128
+ ...
129
+
6
130
  class NodeAddOperator:
7
131
  """ """
8
132