fake-bpy-module 20240718__tar.gz → 20240719__tar.gz

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.

Files changed (474) hide show
  1. {fake_bpy_module-20240718 → fake_bpy_module-20240719}/PKG-INFO +1 -1
  2. fake_bpy_module-20240719/bl_operators/add_mesh_torus/__init__.pyi +65 -0
  3. fake_bpy_module-20240719/bl_operators/anim/__init__.pyi +342 -0
  4. fake_bpy_module-20240719/bl_operators/assets/__init__.pyi +150 -0
  5. fake_bpy_module-20240719/bl_operators/bone_selection_sets/__init__.pyi +496 -0
  6. fake_bpy_module-20240719/bl_operators/clip/__init__.pyi +419 -0
  7. fake_bpy_module-20240719/bl_operators/connect_to_output/__init__.pyi +156 -0
  8. fake_bpy_module-20240719/bl_operators/console/__init__.pyi +203 -0
  9. fake_bpy_module-20240719/bl_operators/constraint/__init__.pyi +167 -0
  10. fake_bpy_module-20240719/bl_operators/file/__init__.pyi +127 -0
  11. fake_bpy_module-20240719/bl_operators/freestyle/__init__.pyi +175 -0
  12. fake_bpy_module-20240719/bl_operators/geometry_nodes/__init__.pyi +206 -0
  13. fake_bpy_module-20240719/bl_operators/image/__init__.pyi +181 -0
  14. fake_bpy_module-20240719/bl_operators/image_as_planes/__init__.pyi +287 -0
  15. fake_bpy_module-20240719/bl_operators/mesh/__init__.pyi +135 -0
  16. fake_bpy_module-20240719/bl_operators/node/__init__.pyi +407 -0
  17. fake_bpy_module-20240719/bl_operators/object/__init__.pyi +612 -0
  18. fake_bpy_module-20240719/bl_operators/object_align/__init__.pyi +53 -0
  19. fake_bpy_module-20240719/bl_operators/object_quick_effects/__init__.pyi +159 -0
  20. fake_bpy_module-20240719/bl_operators/object_randomize_transform/__init__.pyi +51 -0
  21. fake_bpy_module-20240719/bl_operators/presets/__init__.pyi +861 -0
  22. fake_bpy_module-20240719/bl_operators/rigidbody/__init__.pyi +135 -0
  23. fake_bpy_module-20240719/bl_operators/screen_play_rendered_anim/__init__.pyi +41 -0
  24. fake_bpy_module-20240719/bl_operators/sequencer/__init__.pyi +362 -0
  25. fake_bpy_module-20240719/bl_operators/spreadsheet/__init__.pyi +61 -0
  26. fake_bpy_module-20240719/bl_operators/userpref/__init__.pyi +908 -0
  27. fake_bpy_module-20240719/bl_operators/uvcalc_follow_active/__init__.pyi +58 -0
  28. fake_bpy_module-20240719/bl_operators/uvcalc_lightmap/__init__.pyi +105 -0
  29. fake_bpy_module-20240719/bl_operators/uvcalc_transform/__init__.pyi +156 -0
  30. fake_bpy_module-20240719/bl_operators/vertexpaint_dirt/__init__.pyi +52 -0
  31. fake_bpy_module-20240719/bl_operators/view3d/__init__.pyi +350 -0
  32. fake_bpy_module-20240719/bl_operators/wm/__init__.pyi +1693 -0
  33. fake_bpy_module-20240719/bl_operators/world/__init__.pyi +47 -0
  34. fake_bpy_module-20240719/bl_ui/__init__.pyi +198 -0
  35. fake_bpy_module-20240719/bl_ui/anim/__init__.pyi +36 -0
  36. fake_bpy_module-20240719/bl_ui/asset_shelf/__init__.pyi +46 -0
  37. fake_bpy_module-20240719/bl_ui/generic_ui_list/__init__.pyi +171 -0
  38. fake_bpy_module-20240719/bl_ui/node_add_menu/__init__.pyi +56 -0
  39. fake_bpy_module-20240719/bl_ui/node_add_menu_compositor/__init__.pyi +531 -0
  40. fake_bpy_module-20240719/bl_ui/node_add_menu_geometry/__init__.pyi +1462 -0
  41. fake_bpy_module-20240719/bl_ui/node_add_menu_shader/__init__.pyi +301 -0
  42. fake_bpy_module-20240719/bl_ui/node_add_menu_texture/__init__.pyi +270 -0
  43. fake_bpy_module-20240719/bl_ui/properties_collection/__init__.pyi +220 -0
  44. fake_bpy_module-20240719/bl_ui/properties_constraint/__init__.pyi +3125 -0
  45. fake_bpy_module-20240719/bl_ui/properties_data_armature/__init__.pyi +631 -0
  46. fake_bpy_module-20240719/bl_ui/properties_data_bone/__init__.pyi +424 -0
  47. fake_bpy_module-20240719/bl_ui/properties_data_camera/__init__.pyi +540 -0
  48. fake_bpy_module-20240719/bl_ui/properties_data_curve/__init__.pyi +614 -0
  49. fake_bpy_module-20240719/bl_ui/properties_data_curves/__init__.pyi +247 -0
  50. fake_bpy_module-20240719/bl_ui/properties_data_empty/__init__.pyi +92 -0
  51. fake_bpy_module-20240719/bl_ui/properties_data_gpencil/__init__.pyi +649 -0
  52. fake_bpy_module-20240719/bl_ui/properties_data_grease_pencil/__init__.pyi +531 -0
  53. fake_bpy_module-20240719/bl_ui/properties_data_lattice/__init__.pyi +118 -0
  54. fake_bpy_module-20240719/bl_ui/properties_data_light/__init__.pyi +498 -0
  55. fake_bpy_module-20240719/bl_ui/properties_data_lightprobe/__init__.pyi +501 -0
  56. fake_bpy_module-20240719/bl_ui/properties_data_mesh/__init__.pyi +766 -0
  57. fake_bpy_module-20240719/bl_ui/properties_data_metaball/__init__.pyi +192 -0
  58. fake_bpy_module-20240719/bl_ui/properties_data_modifier/__init__.pyi +384 -0
  59. fake_bpy_module-20240719/bl_ui/properties_data_pointcloud/__init__.pyi +217 -0
  60. fake_bpy_module-20240719/bl_ui/properties_data_shaderfx/__init__.pyi +45 -0
  61. fake_bpy_module-20240719/bl_ui/properties_data_speaker/__init__.pyi +186 -0
  62. fake_bpy_module-20240719/bl_ui/properties_data_volume/__init__.pyi +304 -0
  63. fake_bpy_module-20240719/bl_ui/properties_freestyle/__init__.pyi +1158 -0
  64. fake_bpy_module-20240719/bl_ui/properties_grease_pencil_common/__init__.pyi +713 -0
  65. fake_bpy_module-20240719/bl_ui/properties_mask_common/__init__.pyi +353 -0
  66. fake_bpy_module-20240719/bl_ui/properties_material/__init__.pyi +629 -0
  67. fake_bpy_module-20240719/bl_ui/properties_material_gpencil/__init__.pyi +390 -0
  68. fake_bpy_module-20240719/bl_ui/properties_object/__init__.pyi +533 -0
  69. fake_bpy_module-20240719/bl_ui/properties_output/__init__.pyi +705 -0
  70. fake_bpy_module-20240719/bl_ui/properties_paint_common/__init__.pyi +350 -0
  71. fake_bpy_module-20240719/bl_ui/properties_particle/__init__.pyi +2221 -0
  72. fake_bpy_module-20240719/bl_ui/properties_physics_cloth/__init__.pyi +538 -0
  73. fake_bpy_module-20240719/bl_ui/properties_physics_common/__init__.pyi +61 -0
  74. fake_bpy_module-20240719/bl_ui/properties_physics_dynamicpaint/__init__.pyi +1076 -0
  75. fake_bpy_module-20240719/bl_ui/properties_physics_field/__init__.pyi +455 -0
  76. fake_bpy_module-20240719/bl_ui/properties_physics_fluid/__init__.pyi +1346 -0
  77. fake_bpy_module-20240719/bl_ui/properties_physics_geometry_nodes/__init__.pyi +56 -0
  78. fake_bpy_module-20240719/bl_ui/properties_physics_rigidbody/__init__.pyi +370 -0
  79. fake_bpy_module-20240719/bl_ui/properties_physics_rigidbody_constraint/__init__.pyi +592 -0
  80. fake_bpy_module-20240719/bl_ui/properties_physics_softbody/__init__.pyi +587 -0
  81. fake_bpy_module-20240719/bl_ui/properties_render/__init__.pyi +2347 -0
  82. fake_bpy_module-20240719/bl_ui/properties_scene/__init__.pyi +588 -0
  83. fake_bpy_module-20240719/bl_ui/properties_texture/__init__.pyi +1023 -0
  84. fake_bpy_module-20240719/bl_ui/properties_view_layer/__init__.pyi +613 -0
  85. fake_bpy_module-20240719/bl_ui/properties_workspace/__init__.pyi +176 -0
  86. fake_bpy_module-20240719/bl_ui/properties_world/__init__.pyi +414 -0
  87. fake_bpy_module-20240719/bl_ui/space_clip/__init__.pyi +2318 -0
  88. fake_bpy_module-20240719/bl_ui/space_console/__init__.pyi +179 -0
  89. fake_bpy_module-20240719/bl_ui/space_dopesheet/__init__.pyi +1044 -0
  90. fake_bpy_module-20240719/bl_ui/space_filebrowser/__init__.pyi +1011 -0
  91. fake_bpy_module-20240719/bl_ui/space_graph/__init__.pyi +581 -0
  92. fake_bpy_module-20240719/bl_ui/space_image/__init__.pyi +2289 -0
  93. fake_bpy_module-20240719/bl_ui/space_info/__init__.pyi +178 -0
  94. fake_bpy_module-20240719/bl_ui/space_nla/__init__.pyi +512 -0
  95. fake_bpy_module-20240719/bl_ui/space_node/__init__.pyi +948 -0
  96. fake_bpy_module-20240719/bl_ui/space_outliner/__init__.pyi +438 -0
  97. fake_bpy_module-20240719/bl_ui/space_properties/__init__.pyi +99 -0
  98. fake_bpy_module-20240719/bl_ui/space_sequencer/__init__.pyi +2784 -0
  99. fake_bpy_module-20240719/bl_ui/space_spreadsheet/__init__.pyi +85 -0
  100. fake_bpy_module-20240719/bl_ui/space_statusbar/__init__.pyi +36 -0
  101. fake_bpy_module-20240719/bl_ui/space_text/__init__.pyi +472 -0
  102. fake_bpy_module-20240719/bl_ui/space_time/__init__.pyi +259 -0
  103. {fake_bpy_module-20240718 → fake_bpy_module-20240719}/bl_ui/space_toolsystem_common/__init__.pyi +2 -118
  104. {fake_bpy_module-20240718 → fake_bpy_module-20240719}/bl_ui/space_toolsystem_toolbar/__init__.pyi +13 -476
  105. fake_bpy_module-20240719/bl_ui/space_topbar/__init__.pyi +816 -0
  106. fake_bpy_module-20240719/bl_ui/space_userpref/__init__.pyi +3690 -0
  107. fake_bpy_module-20240719/bl_ui/space_view3d/__init__.pyi +8459 -0
  108. fake_bpy_module-20240719/bl_ui/space_view3d_toolbar/__init__.pyi +4057 -0
  109. fake_bpy_module-20240719/bl_ui/temp_anim_layers/__init__.pyi +49 -0
  110. fake_bpy_module-20240719/bl_ui/utils/__init__.pyi +35 -0
  111. {fake_bpy_module-20240718 → fake_bpy_module-20240719}/bpy/ops/outliner/__init__.pyi +0 -1
  112. {fake_bpy_module-20240718 → fake_bpy_module-20240719}/bpy/types/__init__.pyi +65 -1
  113. {fake_bpy_module-20240718 → fake_bpy_module-20240719}/bpy_extras/node_shader_utils/__init__.pyi +0 -8
  114. {fake_bpy_module-20240718 → fake_bpy_module-20240719}/fake_bpy_module.egg-info/PKG-INFO +1 -1
  115. {fake_bpy_module-20240718 → fake_bpy_module-20240719}/freestyle/utils/__init__.pyi +1 -1
  116. fake_bpy_module-20240719/keyingsets_builtins/__init__.pyi +743 -0
  117. {fake_bpy_module-20240718 → fake_bpy_module-20240719}/nodeitems_builtins/__init__.pyi +1 -7
  118. fake_bpy_module-20240718/bl_operators/add_mesh_torus/__init__.pyi +0 -254
  119. fake_bpy_module-20240718/bl_operators/anim/__init__.pyi +0 -1742
  120. fake_bpy_module-20240718/bl_operators/assets/__init__.pyi +0 -682
  121. fake_bpy_module-20240718/bl_operators/bone_selection_sets/__init__.pyi +0 -2989
  122. fake_bpy_module-20240718/bl_operators/clip/__init__.pyi +0 -2169
  123. fake_bpy_module-20240718/bl_operators/connect_to_output/__init__.pyi +0 -329
  124. fake_bpy_module-20240718/bl_operators/console/__init__.pyi +0 -1078
  125. fake_bpy_module-20240718/bl_operators/constraint/__init__.pyi +0 -867
  126. fake_bpy_module-20240718/bl_operators/file/__init__.pyi +0 -652
  127. fake_bpy_module-20240718/bl_operators/freestyle/__init__.pyi +0 -875
  128. fake_bpy_module-20240718/bl_operators/geometry_nodes/__init__.pyi +0 -906
  129. fake_bpy_module-20240718/bl_operators/image/__init__.pyi +0 -1045
  130. fake_bpy_module-20240718/bl_operators/image_as_planes/__init__.pyi +0 -707
  131. fake_bpy_module-20240718/bl_operators/mesh/__init__.pyi +0 -660
  132. fake_bpy_module-20240718/bl_operators/node/__init__.pyi +0 -2313
  133. fake_bpy_module-20240718/bl_operators/object/__init__.pyi +0 -3237
  134. fake_bpy_module-20240718/bl_operators/object_align/__init__.pyi +0 -228
  135. fake_bpy_module-20240718/bl_operators/object_quick_effects/__init__.pyi +0 -880
  136. fake_bpy_module-20240718/bl_operators/object_randomize_transform/__init__.pyi +0 -226
  137. fake_bpy_module-20240718/bl_operators/presets/__init__.pyi +0 -5943
  138. fake_bpy_module-20240718/bl_operators/rigidbody/__init__.pyi +0 -660
  139. fake_bpy_module-20240718/bl_operators/screen_play_rendered_anim/__init__.pyi +0 -216
  140. fake_bpy_module-20240718/bl_operators/sequencer/__init__.pyi +0 -1750
  141. fake_bpy_module-20240718/bl_operators/spreadsheet/__init__.pyi +0 -236
  142. fake_bpy_module-20240718/bl_operators/userpref/__init__.pyi +0 -5282
  143. fake_bpy_module-20240718/bl_operators/uvcalc_follow_active/__init__.pyi +0 -233
  144. fake_bpy_module-20240718/bl_operators/uvcalc_lightmap/__init__.pyi +0 -280
  145. fake_bpy_module-20240718/bl_operators/uvcalc_transform/__init__.pyi +0 -506
  146. fake_bpy_module-20240718/bl_operators/vertexpaint_dirt/__init__.pyi +0 -227
  147. fake_bpy_module-20240718/bl_operators/view3d/__init__.pyi +0 -1717
  148. fake_bpy_module-20240718/bl_operators/wm/__init__.pyi +0 -9864
  149. fake_bpy_module-20240718/bl_operators/world/__init__.pyi +0 -222
  150. fake_bpy_module-20240718/bl_ui/__init__.pyi +0 -729
  151. fake_bpy_module-20240718/bl_ui/anim/__init__.pyi +0 -279
  152. fake_bpy_module-20240718/bl_ui/asset_shelf/__init__.pyi +0 -234
  153. fake_bpy_module-20240718/bl_ui/generic_ui_list/__init__.pyi +0 -762
  154. fake_bpy_module-20240718/bl_ui/node_add_menu/__init__.pyi +0 -299
  155. fake_bpy_module-20240718/bl_ui/node_add_menu_compositor/__init__.pyi +0 -4905
  156. fake_bpy_module-20240718/bl_ui/node_add_menu_geometry/__init__.pyi +0 -13610
  157. fake_bpy_module-20240718/bl_ui/node_add_menu_shader/__init__.pyi +0 -2738
  158. fake_bpy_module-20240718/bl_ui/node_add_menu_texture/__init__.pyi +0 -2457
  159. fake_bpy_module-20240718/bl_ui/properties_collection/__init__.pyi +0 -1434
  160. fake_bpy_module-20240718/bl_ui/properties_constraint/__init__.pyi +0 -34273
  161. fake_bpy_module-20240718/bl_ui/properties_data_armature/__init__.pyi +0 -4157
  162. fake_bpy_module-20240718/bl_ui/properties_data_bone/__init__.pyi +0 -2335
  163. fake_bpy_module-20240718/bl_ui/properties_data_camera/__init__.pyi +0 -3358
  164. fake_bpy_module-20240718/bl_ui/properties_data_curve/__init__.pyi +0 -3517
  165. fake_bpy_module-20240718/bl_ui/properties_data_curves/__init__.pyi +0 -1463
  166. fake_bpy_module-20240718/bl_ui/properties_data_empty/__init__.pyi +0 -475
  167. fake_bpy_module-20240718/bl_ui/properties_data_gpencil/__init__.pyi +0 -4286
  168. fake_bpy_module-20240718/bl_ui/properties_data_grease_pencil/__init__.pyi +0 -3414
  169. fake_bpy_module-20240718/bl_ui/properties_data_lattice/__init__.pyi +0 -710
  170. fake_bpy_module-20240718/bl_ui/properties_data_light/__init__.pyi +0 -2800
  171. fake_bpy_module-20240718/bl_ui/properties_data_lightprobe/__init__.pyi +0 -2993
  172. fake_bpy_module-20240718/bl_ui/properties_data_mesh/__init__.pyi +0 -4823
  173. fake_bpy_module-20240718/bl_ui/properties_data_metaball/__init__.pyi +0 -1165
  174. fake_bpy_module-20240718/bl_ui/properties_data_modifier/__init__.pyi +0 -2678
  175. fake_bpy_module-20240718/bl_ui/properties_data_pointcloud/__init__.pyi +0 -1236
  176. fake_bpy_module-20240718/bl_ui/properties_data_shaderfx/__init__.pyi +0 -233
  177. fake_bpy_module-20240718/bl_ui/properties_data_speaker/__init__.pyi +0 -1168
  178. fake_bpy_module-20240718/bl_ui/properties_data_volume/__init__.pyi +0 -1860
  179. fake_bpy_module-20240718/bl_ui/properties_freestyle/__init__.pyi +0 -5856
  180. fake_bpy_module-20240718/bl_ui/properties_grease_pencil_common/__init__.pyi +0 -4368
  181. fake_bpy_module-20240718/bl_ui/properties_mask_common/__init__.pyi +0 -1999
  182. fake_bpy_module-20240718/bl_ui/properties_material/__init__.pyi +0 -3736
  183. fake_bpy_module-20240718/bl_ui/properties_material_gpencil/__init__.pyi +0 -2424
  184. fake_bpy_module-20240718/bl_ui/properties_object/__init__.pyi +0 -3244
  185. fake_bpy_module-20240718/bl_ui/properties_output/__init__.pyi +0 -4314
  186. fake_bpy_module-20240718/bl_ui/properties_paint_common/__init__.pyi +0 -1233
  187. fake_bpy_module-20240718/bl_ui/properties_particle/__init__.pyi +0 -12106
  188. fake_bpy_module-20240718/bl_ui/properties_physics_cloth/__init__.pyi +0 -3298
  189. fake_bpy_module-20240718/bl_ui/properties_physics_common/__init__.pyi +0 -256
  190. fake_bpy_module-20240718/bl_ui/properties_physics_dynamicpaint/__init__.pyi +0 -6058
  191. fake_bpy_module-20240718/bl_ui/properties_physics_field/__init__.pyi +0 -2461
  192. fake_bpy_module-20240718/bl_ui/properties_physics_fluid/__init__.pyi +0 -8157
  193. fake_bpy_module-20240718/bl_ui/properties_physics_geometry_nodes/__init__.pyi +0 -244
  194. fake_bpy_module-20240718/bl_ui/properties_physics_rigidbody/__init__.pyi +0 -1868
  195. fake_bpy_module-20240718/bl_ui/properties_physics_rigidbody_constraint/__init__.pyi +0 -3036
  196. fake_bpy_module-20240718/bl_ui/properties_physics_softbody/__init__.pyi +0 -3484
  197. fake_bpy_module-20240718/bl_ui/properties_render/__init__.pyi +0 -12847
  198. fake_bpy_module-20240718/bl_ui/properties_scene/__init__.pyi +0 -3469
  199. fake_bpy_module-20240718/bl_ui/properties_texture/__init__.pyi +0 -6072
  200. fake_bpy_module-20240718/bl_ui/properties_view_layer/__init__.pyi +0 -4176
  201. fake_bpy_module-20240718/bl_ui/properties_workspace/__init__.pyi +0 -939
  202. fake_bpy_module-20240718/bl_ui/properties_world/__init__.pyi +0 -2323
  203. fake_bpy_module-20240718/bl_ui/space_clip/__init__.pyi +0 -17584
  204. fake_bpy_module-20240718/bl_ui/space_console/__init__.pyi +0 -1582
  205. fake_bpy_module-20240718/bl_ui/space_dopesheet/__init__.pyi +0 -7807
  206. fake_bpy_module-20240718/bl_ui/space_filebrowser/__init__.pyi +0 -7313
  207. fake_bpy_module-20240718/bl_ui/space_graph/__init__.pyi +0 -5244
  208. fake_bpy_module-20240718/bl_ui/space_image/__init__.pyi +0 -17592
  209. fake_bpy_module-20240718/bl_ui/space_info/__init__.pyi +0 -1581
  210. fake_bpy_module-20240718/bl_ui/space_nla/__init__.pyi +0 -4453
  211. fake_bpy_module-20240718/bl_ui/space_node/__init__.pyi +0 -6898
  212. fake_bpy_module-20240718/bl_ui/space_outliner/__init__.pyi +0 -3730
  213. fake_bpy_module-20240718/bl_ui/space_properties/__init__.pyi +0 -663
  214. fake_bpy_module-20240718/bl_ui/space_sequencer/__init__.pyi +0 -19596
  215. fake_bpy_module-20240718/bl_ui/space_spreadsheet/__init__.pyi +0 -273
  216. fake_bpy_module-20240718/bl_ui/space_statusbar/__init__.pyi +0 -224
  217. fake_bpy_module-20240718/bl_ui/space_text/__init__.pyi +0 -4140
  218. fake_bpy_module-20240718/bl_ui/space_time/__init__.pyi +0 -1812
  219. fake_bpy_module-20240718/bl_ui/space_topbar/__init__.pyi +0 -6763
  220. fake_bpy_module-20240718/bl_ui/space_userpref/__init__.pyi +0 -21667
  221. fake_bpy_module-20240718/bl_ui/space_view3d/__init__.pyi +0 -72199
  222. fake_bpy_module-20240718/bl_ui/space_view3d_toolbar/__init__.pyi +0 -25667
  223. fake_bpy_module-20240718/bl_ui/temp_anim_layers/__init__.pyi +0 -237
  224. fake_bpy_module-20240718/bl_ui/utils/__init__.pyi +0 -70
  225. fake_bpy_module-20240718/keyingsets_builtins/__init__.pyi +0 -4923
  226. {fake_bpy_module-20240718 → fake_bpy_module-20240719}/README.md +0 -0
  227. {fake_bpy_module-20240718 → fake_bpy_module-20240719}/_bpy_internal/__init__.pyi +0 -0
  228. {fake_bpy_module-20240718 → fake_bpy_module-20240719}/_bpy_internal/addons/__init__.pyi +0 -0
  229. {fake_bpy_module-20240718 → fake_bpy_module-20240719}/_bpy_internal/addons/cli/__init__.pyi +0 -0
  230. {fake_bpy_module-20240718 → fake_bpy_module-20240719}/_bpy_internal/extensions/__init__.pyi +0 -0
  231. {fake_bpy_module-20240718 → fake_bpy_module-20240719}/_bpy_internal/extensions/junction_module/__init__.pyi +0 -0
  232. {fake_bpy_module-20240718 → fake_bpy_module-20240719}/_bpy_internal/extensions/wheel_manager/__init__.pyi +0 -0
  233. {fake_bpy_module-20240718 → fake_bpy_module-20240719}/_bpy_internal/freedesktop/__init__.pyi +0 -0
  234. {fake_bpy_module-20240718 → fake_bpy_module-20240719}/_bpy_internal/py.typed +0 -0
  235. {fake_bpy_module-20240718 → fake_bpy_module-20240719}/addon_utils/__init__.pyi +0 -0
  236. {fake_bpy_module-20240718 → fake_bpy_module-20240719}/addon_utils/py.typed +0 -0
  237. {fake_bpy_module-20240718 → fake_bpy_module-20240719}/animsys_refactor/__init__.pyi +0 -0
  238. {fake_bpy_module-20240718 → fake_bpy_module-20240719}/animsys_refactor/py.typed +0 -0
  239. {fake_bpy_module-20240718 → fake_bpy_module-20240719}/aud/__init__.pyi +0 -0
  240. {fake_bpy_module-20240718 → fake_bpy_module-20240719}/aud/py.typed +0 -0
  241. {fake_bpy_module-20240718 → fake_bpy_module-20240719}/bgl/__init__.pyi +0 -0
  242. {fake_bpy_module-20240718 → fake_bpy_module-20240719}/bgl/py.typed +0 -0
  243. {fake_bpy_module-20240718 → fake_bpy_module-20240719}/bl_app_override/__init__.pyi +0 -0
  244. {fake_bpy_module-20240718 → fake_bpy_module-20240719}/bl_app_override/helpers/__init__.pyi +0 -0
  245. {fake_bpy_module-20240718 → fake_bpy_module-20240719}/bl_app_override/py.typed +0 -0
  246. {fake_bpy_module-20240718 → fake_bpy_module-20240719}/bl_app_template_utils/__init__.pyi +0 -0
  247. {fake_bpy_module-20240718 → fake_bpy_module-20240719}/bl_app_template_utils/py.typed +0 -0
  248. {fake_bpy_module-20240718 → fake_bpy_module-20240719}/bl_console_utils/__init__.pyi +0 -0
  249. {fake_bpy_module-20240718 → fake_bpy_module-20240719}/bl_console_utils/autocomplete/__init__.pyi +0 -0
  250. {fake_bpy_module-20240718 → fake_bpy_module-20240719}/bl_console_utils/autocomplete/complete_calltip/__init__.pyi +0 -0
  251. {fake_bpy_module-20240718 → fake_bpy_module-20240719}/bl_console_utils/autocomplete/complete_import/__init__.pyi +0 -0
  252. {fake_bpy_module-20240718 → fake_bpy_module-20240719}/bl_console_utils/autocomplete/complete_namespace/__init__.pyi +0 -0
  253. {fake_bpy_module-20240718 → fake_bpy_module-20240719}/bl_console_utils/autocomplete/intellisense/__init__.pyi +0 -0
  254. {fake_bpy_module-20240718 → fake_bpy_module-20240719}/bl_console_utils/py.typed +0 -0
  255. {fake_bpy_module-20240718 → fake_bpy_module-20240719}/bl_i18n_utils/__init__.pyi +0 -0
  256. {fake_bpy_module-20240718 → fake_bpy_module-20240719}/bl_i18n_utils/bl_extract_messages/__init__.pyi +0 -0
  257. {fake_bpy_module-20240718 → fake_bpy_module-20240719}/bl_i18n_utils/merge_po/__init__.pyi +0 -0
  258. {fake_bpy_module-20240718 → fake_bpy_module-20240719}/bl_i18n_utils/py.typed +0 -0
  259. {fake_bpy_module-20240718 → fake_bpy_module-20240719}/bl_i18n_utils/settings/__init__.pyi +0 -0
  260. {fake_bpy_module-20240718 → fake_bpy_module-20240719}/bl_i18n_utils/utils/__init__.pyi +0 -0
  261. {fake_bpy_module-20240718 → fake_bpy_module-20240719}/bl_i18n_utils/utils_cli/__init__.pyi +0 -0
  262. {fake_bpy_module-20240718 → fake_bpy_module-20240719}/bl_i18n_utils/utils_languages_menu/__init__.pyi +0 -0
  263. {fake_bpy_module-20240718 → fake_bpy_module-20240719}/bl_i18n_utils/utils_rtl/__init__.pyi +0 -0
  264. {fake_bpy_module-20240718 → fake_bpy_module-20240719}/bl_keymap_utils/__init__.pyi +0 -0
  265. {fake_bpy_module-20240718 → fake_bpy_module-20240719}/bl_keymap_utils/io/__init__.pyi +0 -0
  266. {fake_bpy_module-20240718 → fake_bpy_module-20240719}/bl_keymap_utils/keymap_from_toolbar/__init__.pyi +0 -0
  267. {fake_bpy_module-20240718 → fake_bpy_module-20240719}/bl_keymap_utils/keymap_hierarchy/__init__.pyi +0 -0
  268. {fake_bpy_module-20240718 → fake_bpy_module-20240719}/bl_keymap_utils/platform_helpers/__init__.pyi +0 -0
  269. {fake_bpy_module-20240718 → fake_bpy_module-20240719}/bl_keymap_utils/py.typed +0 -0
  270. {fake_bpy_module-20240718 → fake_bpy_module-20240719}/bl_keymap_utils/versioning/__init__.pyi +0 -0
  271. {fake_bpy_module-20240718 → fake_bpy_module-20240719}/bl_math/__init__.pyi +0 -0
  272. {fake_bpy_module-20240718 → fake_bpy_module-20240719}/bl_math/py.typed +0 -0
  273. {fake_bpy_module-20240718 → fake_bpy_module-20240719}/bl_operators/__init__.pyi +0 -0
  274. {fake_bpy_module-20240718 → fake_bpy_module-20240719}/bl_operators/bmesh/__init__.pyi +0 -0
  275. {fake_bpy_module-20240718 → fake_bpy_module-20240719}/bl_operators/bmesh/find_adjacent/__init__.pyi +0 -0
  276. {fake_bpy_module-20240718 → fake_bpy_module-20240719}/bl_operators/node_editor/__init__.pyi +0 -0
  277. {fake_bpy_module-20240718 → fake_bpy_module-20240719}/bl_operators/node_editor/node_functions/__init__.pyi +0 -0
  278. {fake_bpy_module-20240718 → fake_bpy_module-20240719}/bl_operators/py.typed +0 -0
  279. {fake_bpy_module-20240718 → fake_bpy_module-20240719}/bl_previews_utils/__init__.pyi +0 -0
  280. {fake_bpy_module-20240718 → fake_bpy_module-20240719}/bl_previews_utils/bl_previews_render/__init__.pyi +0 -0
  281. {fake_bpy_module-20240718 → fake_bpy_module-20240719}/bl_previews_utils/py.typed +0 -0
  282. {fake_bpy_module-20240718 → fake_bpy_module-20240719}/bl_rna_utils/__init__.pyi +0 -0
  283. {fake_bpy_module-20240718 → fake_bpy_module-20240719}/bl_rna_utils/data_path/__init__.pyi +0 -0
  284. {fake_bpy_module-20240718 → fake_bpy_module-20240719}/bl_rna_utils/py.typed +0 -0
  285. {fake_bpy_module-20240718 → fake_bpy_module-20240719}/bl_text_utils/__init__.pyi +0 -0
  286. {fake_bpy_module-20240718 → fake_bpy_module-20240719}/bl_text_utils/external_editor/__init__.pyi +0 -0
  287. {fake_bpy_module-20240718 → fake_bpy_module-20240719}/bl_text_utils/py.typed +0 -0
  288. {fake_bpy_module-20240718 → fake_bpy_module-20240719}/bl_ui/properties_animviz/__init__.pyi +0 -0
  289. {fake_bpy_module-20240718 → fake_bpy_module-20240719}/bl_ui/py.typed +0 -0
  290. {fake_bpy_module-20240718 → fake_bpy_module-20240719}/bl_ui_utils/__init__.pyi +0 -0
  291. {fake_bpy_module-20240718 → fake_bpy_module-20240719}/bl_ui_utils/bug_report_url/__init__.pyi +0 -0
  292. {fake_bpy_module-20240718 → fake_bpy_module-20240719}/bl_ui_utils/layout/__init__.pyi +0 -0
  293. {fake_bpy_module-20240718 → fake_bpy_module-20240719}/bl_ui_utils/py.typed +0 -0
  294. {fake_bpy_module-20240718 → fake_bpy_module-20240719}/blend_render_info/__init__.pyi +0 -0
  295. {fake_bpy_module-20240718 → fake_bpy_module-20240719}/blend_render_info/py.typed +0 -0
  296. {fake_bpy_module-20240718 → fake_bpy_module-20240719}/blf/__init__.pyi +0 -0
  297. {fake_bpy_module-20240718 → fake_bpy_module-20240719}/blf/py.typed +0 -0
  298. {fake_bpy_module-20240718 → fake_bpy_module-20240719}/bmesh/__init__.pyi +0 -0
  299. {fake_bpy_module-20240718 → fake_bpy_module-20240719}/bmesh/geometry/__init__.pyi +0 -0
  300. {fake_bpy_module-20240718 → fake_bpy_module-20240719}/bmesh/ops/__init__.pyi +0 -0
  301. {fake_bpy_module-20240718 → fake_bpy_module-20240719}/bmesh/py.typed +0 -0
  302. {fake_bpy_module-20240718 → fake_bpy_module-20240719}/bmesh/types/__init__.pyi +0 -0
  303. {fake_bpy_module-20240718 → fake_bpy_module-20240719}/bmesh/utils/__init__.pyi +0 -0
  304. {fake_bpy_module-20240718 → fake_bpy_module-20240719}/bpy/__init__.pyi +0 -0
  305. {fake_bpy_module-20240718 → fake_bpy_module-20240719}/bpy/app/__init__.pyi +0 -0
  306. {fake_bpy_module-20240718 → fake_bpy_module-20240719}/bpy/app/handlers/__init__.pyi +0 -0
  307. {fake_bpy_module-20240718 → fake_bpy_module-20240719}/bpy/app/icons/__init__.pyi +0 -0
  308. {fake_bpy_module-20240718 → fake_bpy_module-20240719}/bpy/app/timers/__init__.pyi +0 -0
  309. {fake_bpy_module-20240718 → fake_bpy_module-20240719}/bpy/app/translations/__init__.pyi +0 -0
  310. {fake_bpy_module-20240718 → fake_bpy_module-20240719}/bpy/msgbus/__init__.pyi +0 -0
  311. {fake_bpy_module-20240718 → fake_bpy_module-20240719}/bpy/ops/__init__.pyi +0 -0
  312. {fake_bpy_module-20240718 → fake_bpy_module-20240719}/bpy/ops/action/__init__.pyi +0 -0
  313. {fake_bpy_module-20240718 → fake_bpy_module-20240719}/bpy/ops/anim/__init__.pyi +0 -0
  314. {fake_bpy_module-20240718 → fake_bpy_module-20240719}/bpy/ops/armature/__init__.pyi +0 -0
  315. {fake_bpy_module-20240718 → fake_bpy_module-20240719}/bpy/ops/asset/__init__.pyi +0 -0
  316. {fake_bpy_module-20240718 → fake_bpy_module-20240719}/bpy/ops/boid/__init__.pyi +0 -0
  317. {fake_bpy_module-20240718 → fake_bpy_module-20240719}/bpy/ops/brush/__init__.pyi +0 -0
  318. {fake_bpy_module-20240718 → fake_bpy_module-20240719}/bpy/ops/buttons/__init__.pyi +0 -0
  319. {fake_bpy_module-20240718 → fake_bpy_module-20240719}/bpy/ops/cachefile/__init__.pyi +0 -0
  320. {fake_bpy_module-20240718 → fake_bpy_module-20240719}/bpy/ops/camera/__init__.pyi +0 -0
  321. {fake_bpy_module-20240718 → fake_bpy_module-20240719}/bpy/ops/clip/__init__.pyi +0 -0
  322. {fake_bpy_module-20240718 → fake_bpy_module-20240719}/bpy/ops/cloth/__init__.pyi +0 -0
  323. {fake_bpy_module-20240718 → fake_bpy_module-20240719}/bpy/ops/collection/__init__.pyi +0 -0
  324. {fake_bpy_module-20240718 → fake_bpy_module-20240719}/bpy/ops/console/__init__.pyi +0 -0
  325. {fake_bpy_module-20240718 → fake_bpy_module-20240719}/bpy/ops/constraint/__init__.pyi +0 -0
  326. {fake_bpy_module-20240718 → fake_bpy_module-20240719}/bpy/ops/curve/__init__.pyi +0 -0
  327. {fake_bpy_module-20240718 → fake_bpy_module-20240719}/bpy/ops/curves/__init__.pyi +0 -0
  328. {fake_bpy_module-20240718 → fake_bpy_module-20240719}/bpy/ops/cycles/__init__.pyi +0 -0
  329. {fake_bpy_module-20240718 → fake_bpy_module-20240719}/bpy/ops/dpaint/__init__.pyi +0 -0
  330. {fake_bpy_module-20240718 → fake_bpy_module-20240719}/bpy/ops/ed/__init__.pyi +0 -0
  331. {fake_bpy_module-20240718 → fake_bpy_module-20240719}/bpy/ops/export_anim/__init__.pyi +0 -0
  332. {fake_bpy_module-20240718 → fake_bpy_module-20240719}/bpy/ops/export_scene/__init__.pyi +0 -0
  333. {fake_bpy_module-20240718 → fake_bpy_module-20240719}/bpy/ops/extensions/__init__.pyi +0 -0
  334. {fake_bpy_module-20240718 → fake_bpy_module-20240719}/bpy/ops/file/__init__.pyi +0 -0
  335. {fake_bpy_module-20240718 → fake_bpy_module-20240719}/bpy/ops/fluid/__init__.pyi +0 -0
  336. {fake_bpy_module-20240718 → fake_bpy_module-20240719}/bpy/ops/font/__init__.pyi +0 -0
  337. {fake_bpy_module-20240718 → fake_bpy_module-20240719}/bpy/ops/geometry/__init__.pyi +0 -0
  338. {fake_bpy_module-20240718 → fake_bpy_module-20240719}/bpy/ops/gizmogroup/__init__.pyi +0 -0
  339. {fake_bpy_module-20240718 → fake_bpy_module-20240719}/bpy/ops/gpencil/__init__.pyi +0 -0
  340. {fake_bpy_module-20240718 → fake_bpy_module-20240719}/bpy/ops/graph/__init__.pyi +0 -0
  341. {fake_bpy_module-20240718 → fake_bpy_module-20240719}/bpy/ops/grease_pencil/__init__.pyi +0 -0
  342. {fake_bpy_module-20240718 → fake_bpy_module-20240719}/bpy/ops/image/__init__.pyi +0 -0
  343. {fake_bpy_module-20240718 → fake_bpy_module-20240719}/bpy/ops/import_anim/__init__.pyi +0 -0
  344. {fake_bpy_module-20240718 → fake_bpy_module-20240719}/bpy/ops/import_curve/__init__.pyi +0 -0
  345. {fake_bpy_module-20240718 → fake_bpy_module-20240719}/bpy/ops/import_scene/__init__.pyi +0 -0
  346. {fake_bpy_module-20240718 → fake_bpy_module-20240719}/bpy/ops/info/__init__.pyi +0 -0
  347. {fake_bpy_module-20240718 → fake_bpy_module-20240719}/bpy/ops/lattice/__init__.pyi +0 -0
  348. {fake_bpy_module-20240718 → fake_bpy_module-20240719}/bpy/ops/marker/__init__.pyi +0 -0
  349. {fake_bpy_module-20240718 → fake_bpy_module-20240719}/bpy/ops/mask/__init__.pyi +0 -0
  350. {fake_bpy_module-20240718 → fake_bpy_module-20240719}/bpy/ops/material/__init__.pyi +0 -0
  351. {fake_bpy_module-20240718 → fake_bpy_module-20240719}/bpy/ops/mball/__init__.pyi +0 -0
  352. {fake_bpy_module-20240718 → fake_bpy_module-20240719}/bpy/ops/mesh/__init__.pyi +0 -0
  353. {fake_bpy_module-20240718 → fake_bpy_module-20240719}/bpy/ops/nla/__init__.pyi +0 -0
  354. {fake_bpy_module-20240718 → fake_bpy_module-20240719}/bpy/ops/node/__init__.pyi +0 -0
  355. {fake_bpy_module-20240718 → fake_bpy_module-20240719}/bpy/ops/object/__init__.pyi +0 -0
  356. {fake_bpy_module-20240718 → fake_bpy_module-20240719}/bpy/ops/paint/__init__.pyi +0 -0
  357. {fake_bpy_module-20240718 → fake_bpy_module-20240719}/bpy/ops/paintcurve/__init__.pyi +0 -0
  358. {fake_bpy_module-20240718 → fake_bpy_module-20240719}/bpy/ops/palette/__init__.pyi +0 -0
  359. {fake_bpy_module-20240718 → fake_bpy_module-20240719}/bpy/ops/particle/__init__.pyi +0 -0
  360. {fake_bpy_module-20240718 → fake_bpy_module-20240719}/bpy/ops/pose/__init__.pyi +0 -0
  361. {fake_bpy_module-20240718 → fake_bpy_module-20240719}/bpy/ops/poselib/__init__.pyi +0 -0
  362. {fake_bpy_module-20240718 → fake_bpy_module-20240719}/bpy/ops/preferences/__init__.pyi +0 -0
  363. {fake_bpy_module-20240718 → fake_bpy_module-20240719}/bpy/ops/ptcache/__init__.pyi +0 -0
  364. {fake_bpy_module-20240718 → fake_bpy_module-20240719}/bpy/ops/render/__init__.pyi +0 -0
  365. {fake_bpy_module-20240718 → fake_bpy_module-20240719}/bpy/ops/rigidbody/__init__.pyi +0 -0
  366. {fake_bpy_module-20240718 → fake_bpy_module-20240719}/bpy/ops/scene/__init__.pyi +0 -0
  367. {fake_bpy_module-20240718 → fake_bpy_module-20240719}/bpy/ops/screen/__init__.pyi +0 -0
  368. {fake_bpy_module-20240718 → fake_bpy_module-20240719}/bpy/ops/script/__init__.pyi +0 -0
  369. {fake_bpy_module-20240718 → fake_bpy_module-20240719}/bpy/ops/sculpt/__init__.pyi +0 -0
  370. {fake_bpy_module-20240718 → fake_bpy_module-20240719}/bpy/ops/sculpt_curves/__init__.pyi +0 -0
  371. {fake_bpy_module-20240718 → fake_bpy_module-20240719}/bpy/ops/sequencer/__init__.pyi +0 -0
  372. {fake_bpy_module-20240718 → fake_bpy_module-20240719}/bpy/ops/sound/__init__.pyi +0 -0
  373. {fake_bpy_module-20240718 → fake_bpy_module-20240719}/bpy/ops/spreadsheet/__init__.pyi +0 -0
  374. {fake_bpy_module-20240718 → fake_bpy_module-20240719}/bpy/ops/surface/__init__.pyi +0 -0
  375. {fake_bpy_module-20240718 → fake_bpy_module-20240719}/bpy/ops/text/__init__.pyi +0 -0
  376. {fake_bpy_module-20240718 → fake_bpy_module-20240719}/bpy/ops/text_editor/__init__.pyi +0 -0
  377. {fake_bpy_module-20240718 → fake_bpy_module-20240719}/bpy/ops/texture/__init__.pyi +0 -0
  378. {fake_bpy_module-20240718 → fake_bpy_module-20240719}/bpy/ops/transform/__init__.pyi +0 -0
  379. {fake_bpy_module-20240718 → fake_bpy_module-20240719}/bpy/ops/ui/__init__.pyi +0 -0
  380. {fake_bpy_module-20240718 → fake_bpy_module-20240719}/bpy/ops/uilist/__init__.pyi +0 -0
  381. {fake_bpy_module-20240718 → fake_bpy_module-20240719}/bpy/ops/uv/__init__.pyi +0 -0
  382. {fake_bpy_module-20240718 → fake_bpy_module-20240719}/bpy/ops/view2d/__init__.pyi +0 -0
  383. {fake_bpy_module-20240718 → fake_bpy_module-20240719}/bpy/ops/view3d/__init__.pyi +0 -0
  384. {fake_bpy_module-20240718 → fake_bpy_module-20240719}/bpy/ops/wm/__init__.pyi +0 -0
  385. {fake_bpy_module-20240718 → fake_bpy_module-20240719}/bpy/ops/workspace/__init__.pyi +0 -0
  386. {fake_bpy_module-20240718 → fake_bpy_module-20240719}/bpy/ops/world/__init__.pyi +0 -0
  387. {fake_bpy_module-20240718 → fake_bpy_module-20240719}/bpy/path/__init__.pyi +0 -0
  388. {fake_bpy_module-20240718 → fake_bpy_module-20240719}/bpy/props/__init__.pyi +0 -0
  389. {fake_bpy_module-20240718 → fake_bpy_module-20240719}/bpy/py.typed +0 -0
  390. {fake_bpy_module-20240718 → fake_bpy_module-20240719}/bpy/utils/__init__.pyi +0 -0
  391. {fake_bpy_module-20240718 → fake_bpy_module-20240719}/bpy/utils/previews/__init__.pyi +0 -0
  392. {fake_bpy_module-20240718 → fake_bpy_module-20240719}/bpy/utils/units/__init__.pyi +0 -0
  393. {fake_bpy_module-20240718 → fake_bpy_module-20240719}/bpy_extras/__init__.pyi +0 -0
  394. {fake_bpy_module-20240718 → fake_bpy_module-20240719}/bpy_extras/anim_utils/__init__.pyi +0 -0
  395. {fake_bpy_module-20240718 → fake_bpy_module-20240719}/bpy_extras/asset_utils/__init__.pyi +0 -0
  396. {fake_bpy_module-20240718 → fake_bpy_module-20240719}/bpy_extras/bmesh_utils/__init__.pyi +0 -0
  397. {fake_bpy_module-20240718 → fake_bpy_module-20240719}/bpy_extras/id_map_utils/__init__.pyi +0 -0
  398. {fake_bpy_module-20240718 → fake_bpy_module-20240719}/bpy_extras/image_utils/__init__.pyi +0 -0
  399. {fake_bpy_module-20240718 → fake_bpy_module-20240719}/bpy_extras/io_utils/__init__.pyi +0 -0
  400. {fake_bpy_module-20240718 → fake_bpy_module-20240719}/bpy_extras/keyconfig_utils/__init__.pyi +0 -0
  401. {fake_bpy_module-20240718 → fake_bpy_module-20240719}/bpy_extras/mesh_utils/__init__.pyi +0 -0
  402. {fake_bpy_module-20240718 → fake_bpy_module-20240719}/bpy_extras/node_utils/__init__.pyi +0 -0
  403. {fake_bpy_module-20240718 → fake_bpy_module-20240719}/bpy_extras/object_utils/__init__.pyi +0 -0
  404. {fake_bpy_module-20240718 → fake_bpy_module-20240719}/bpy_extras/py.typed +0 -0
  405. {fake_bpy_module-20240718 → fake_bpy_module-20240719}/bpy_extras/view3d_utils/__init__.pyi +0 -0
  406. {fake_bpy_module-20240718 → fake_bpy_module-20240719}/bpy_extras/wm_utils/__init__.pyi +0 -0
  407. {fake_bpy_module-20240718 → fake_bpy_module-20240719}/bpy_extras/wm_utils/progress_report/__init__.pyi +0 -0
  408. {fake_bpy_module-20240718 → fake_bpy_module-20240719}/bpy_restrict_state/__init__.pyi +0 -0
  409. {fake_bpy_module-20240718 → fake_bpy_module-20240719}/bpy_restrict_state/py.typed +0 -0
  410. {fake_bpy_module-20240718 → fake_bpy_module-20240719}/bpy_types/__init__.pyi +0 -0
  411. {fake_bpy_module-20240718 → fake_bpy_module-20240719}/bpy_types/py.typed +0 -0
  412. {fake_bpy_module-20240718 → fake_bpy_module-20240719}/console_python/__init__.pyi +0 -0
  413. {fake_bpy_module-20240718 → fake_bpy_module-20240719}/console_python/py.typed +0 -0
  414. {fake_bpy_module-20240718 → fake_bpy_module-20240719}/console_shell/__init__.pyi +0 -0
  415. {fake_bpy_module-20240718 → fake_bpy_module-20240719}/console_shell/py.typed +0 -0
  416. {fake_bpy_module-20240718 → fake_bpy_module-20240719}/fake_bpy_module.egg-info/SOURCES.txt +0 -0
  417. {fake_bpy_module-20240718 → fake_bpy_module-20240719}/fake_bpy_module.egg-info/dependency_links.txt +0 -0
  418. {fake_bpy_module-20240718 → fake_bpy_module-20240719}/fake_bpy_module.egg-info/top_level.txt +0 -0
  419. {fake_bpy_module-20240718 → fake_bpy_module-20240719}/freestyle/__init__.pyi +0 -0
  420. {fake_bpy_module-20240718 → fake_bpy_module-20240719}/freestyle/chainingiterators/__init__.pyi +0 -0
  421. {fake_bpy_module-20240718 → fake_bpy_module-20240719}/freestyle/functions/__init__.pyi +0 -0
  422. {fake_bpy_module-20240718 → fake_bpy_module-20240719}/freestyle/predicates/__init__.pyi +0 -0
  423. {fake_bpy_module-20240718 → fake_bpy_module-20240719}/freestyle/py.typed +0 -0
  424. {fake_bpy_module-20240718 → fake_bpy_module-20240719}/freestyle/shaders/__init__.pyi +0 -0
  425. {fake_bpy_module-20240718 → fake_bpy_module-20240719}/freestyle/types/__init__.pyi +0 -0
  426. {fake_bpy_module-20240718 → fake_bpy_module-20240719}/freestyle/utils/ContextFunctions/__init__.pyi +0 -0
  427. {fake_bpy_module-20240718 → fake_bpy_module-20240719}/gpu/__init__.pyi +0 -0
  428. {fake_bpy_module-20240718 → fake_bpy_module-20240719}/gpu/capabilities/__init__.pyi +0 -0
  429. {fake_bpy_module-20240718 → fake_bpy_module-20240719}/gpu/matrix/__init__.pyi +0 -0
  430. {fake_bpy_module-20240718 → fake_bpy_module-20240719}/gpu/platform/__init__.pyi +0 -0
  431. {fake_bpy_module-20240718 → fake_bpy_module-20240719}/gpu/py.typed +0 -0
  432. {fake_bpy_module-20240718 → fake_bpy_module-20240719}/gpu/select/__init__.pyi +0 -0
  433. {fake_bpy_module-20240718 → fake_bpy_module-20240719}/gpu/shader/__init__.pyi +0 -0
  434. {fake_bpy_module-20240718 → fake_bpy_module-20240719}/gpu/state/__init__.pyi +0 -0
  435. {fake_bpy_module-20240718 → fake_bpy_module-20240719}/gpu/texture/__init__.pyi +0 -0
  436. {fake_bpy_module-20240718 → fake_bpy_module-20240719}/gpu/types/__init__.pyi +0 -0
  437. {fake_bpy_module-20240718 → fake_bpy_module-20240719}/gpu_extras/__init__.pyi +0 -0
  438. {fake_bpy_module-20240718 → fake_bpy_module-20240719}/gpu_extras/batch/__init__.pyi +0 -0
  439. {fake_bpy_module-20240718 → fake_bpy_module-20240719}/gpu_extras/presets/__init__.pyi +0 -0
  440. {fake_bpy_module-20240718 → fake_bpy_module-20240719}/gpu_extras/py.typed +0 -0
  441. {fake_bpy_module-20240718 → fake_bpy_module-20240719}/graphviz_export/__init__.pyi +0 -0
  442. {fake_bpy_module-20240718 → fake_bpy_module-20240719}/graphviz_export/py.typed +0 -0
  443. {fake_bpy_module-20240718 → fake_bpy_module-20240719}/idprop/__init__.pyi +0 -0
  444. {fake_bpy_module-20240718 → fake_bpy_module-20240719}/idprop/py.typed +0 -0
  445. {fake_bpy_module-20240718 → fake_bpy_module-20240719}/idprop/types/__init__.pyi +0 -0
  446. {fake_bpy_module-20240718 → fake_bpy_module-20240719}/imbuf/__init__.pyi +0 -0
  447. {fake_bpy_module-20240718 → fake_bpy_module-20240719}/imbuf/py.typed +0 -0
  448. {fake_bpy_module-20240718 → fake_bpy_module-20240719}/imbuf/types/__init__.pyi +0 -0
  449. {fake_bpy_module-20240718 → fake_bpy_module-20240719}/keyingsets_builtins/py.typed +0 -0
  450. {fake_bpy_module-20240718 → fake_bpy_module-20240719}/keyingsets_utils/__init__.pyi +0 -0
  451. {fake_bpy_module-20240718 → fake_bpy_module-20240719}/keyingsets_utils/py.typed +0 -0
  452. {fake_bpy_module-20240718 → fake_bpy_module-20240719}/mathutils/__init__.pyi +0 -0
  453. {fake_bpy_module-20240718 → fake_bpy_module-20240719}/mathutils/bvhtree/__init__.pyi +0 -0
  454. {fake_bpy_module-20240718 → fake_bpy_module-20240719}/mathutils/geometry/__init__.pyi +0 -0
  455. {fake_bpy_module-20240718 → fake_bpy_module-20240719}/mathutils/interpolate/__init__.pyi +0 -0
  456. {fake_bpy_module-20240718 → fake_bpy_module-20240719}/mathutils/kdtree/__init__.pyi +0 -0
  457. {fake_bpy_module-20240718 → fake_bpy_module-20240719}/mathutils/noise/__init__.pyi +0 -0
  458. {fake_bpy_module-20240718 → fake_bpy_module-20240719}/mathutils/py.typed +0 -0
  459. {fake_bpy_module-20240718 → fake_bpy_module-20240719}/nodeitems_builtins/py.typed +0 -0
  460. {fake_bpy_module-20240718 → fake_bpy_module-20240719}/nodeitems_utils/__init__.pyi +0 -0
  461. {fake_bpy_module-20240718 → fake_bpy_module-20240719}/nodeitems_utils/py.typed +0 -0
  462. {fake_bpy_module-20240718 → fake_bpy_module-20240719}/pyproject.toml +0 -0
  463. {fake_bpy_module-20240718 → fake_bpy_module-20240719}/rna_info/__init__.pyi +0 -0
  464. {fake_bpy_module-20240718 → fake_bpy_module-20240719}/rna_info/py.typed +0 -0
  465. {fake_bpy_module-20240718 → fake_bpy_module-20240719}/rna_keymap_ui/__init__.pyi +0 -0
  466. {fake_bpy_module-20240718 → fake_bpy_module-20240719}/rna_keymap_ui/py.typed +0 -0
  467. {fake_bpy_module-20240718 → fake_bpy_module-20240719}/rna_prop_ui/__init__.pyi +0 -0
  468. {fake_bpy_module-20240718 → fake_bpy_module-20240719}/rna_prop_ui/py.typed +0 -0
  469. {fake_bpy_module-20240718 → fake_bpy_module-20240719}/rna_xml/__init__.pyi +0 -0
  470. {fake_bpy_module-20240718 → fake_bpy_module-20240719}/rna_xml/py.typed +0 -0
  471. {fake_bpy_module-20240718 → fake_bpy_module-20240719}/setup.cfg +0 -0
  472. {fake_bpy_module-20240718 → fake_bpy_module-20240719}/setup.py +0 -0
  473. {fake_bpy_module-20240718 → fake_bpy_module-20240719}/sys_info/__init__.pyi +0 -0
  474. {fake_bpy_module-20240718 → fake_bpy_module-20240719}/sys_info/py.typed +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: fake-bpy-module
3
- Version: 20240718
3
+ Version: 20240719
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
@@ -0,0 +1,65 @@
1
+ import typing
2
+ import collections.abc
3
+ import typing_extensions
4
+ import bpy.types
5
+ import bpy_extras.object_utils
6
+
7
+ GenericType1 = typing.TypeVar("GenericType1")
8
+ GenericType2 = typing.TypeVar("GenericType2")
9
+
10
+ class AddTorus(bpy.types.Operator, bpy_extras.object_utils.AddObjectHelper):
11
+ """Construct a torus mesh"""
12
+
13
+ bl_idname: typing.Any
14
+ bl_label: typing.Any
15
+ bl_options: typing.Any
16
+ bl_rna: typing.Any
17
+ id_data: typing.Any
18
+
19
+ def bl_rna_get_subclass(self) -> bpy.types.Struct:
20
+ """
21
+
22
+ :return: The RNA type or default when not found.
23
+ :rtype: bpy.types.Struct
24
+ """
25
+ ...
26
+
27
+ def bl_rna_get_subclass_py(self) -> typing.Any:
28
+ """
29
+
30
+ :return: The class or default when not found.
31
+ :rtype: typing.Any
32
+ """
33
+ ...
34
+
35
+ def draw(self, _context):
36
+ """
37
+
38
+ :param _context:
39
+ """
40
+ ...
41
+
42
+ def execute(self, context):
43
+ """
44
+
45
+ :param context:
46
+ """
47
+ ...
48
+
49
+ def invoke(self, context, _event):
50
+ """
51
+
52
+ :param context:
53
+ :param _event:
54
+ """
55
+ ...
56
+
57
+ def mode_update_callback(self, _context):
58
+ """
59
+
60
+ :param _context:
61
+ """
62
+ ...
63
+
64
+ def add_torus(major_rad, minor_rad, major_seg, minor_seg): ...
65
+ def add_uvs(mesh, minor_seg, major_seg): ...
@@ -0,0 +1,342 @@
1
+ import typing
2
+ import collections.abc
3
+ import typing_extensions
4
+ import bpy.types
5
+
6
+ GenericType1 = typing.TypeVar("GenericType1")
7
+ GenericType2 = typing.TypeVar("GenericType2")
8
+
9
+ class ANIM_OT_keying_set_export(bpy.types.Operator):
10
+ """Export Keying Set to a Python script"""
11
+
12
+ bl_idname: typing.Any
13
+ bl_label: typing.Any
14
+ bl_rna: typing.Any
15
+ id_data: typing.Any
16
+
17
+ def bl_rna_get_subclass(self) -> bpy.types.Struct:
18
+ """
19
+
20
+ :return: The RNA type or default when not found.
21
+ :rtype: bpy.types.Struct
22
+ """
23
+ ...
24
+
25
+ def bl_rna_get_subclass_py(self) -> typing.Any:
26
+ """
27
+
28
+ :return: The class or default when not found.
29
+ :rtype: typing.Any
30
+ """
31
+ ...
32
+
33
+ def execute(self, context):
34
+ """
35
+
36
+ :param context:
37
+ """
38
+ ...
39
+
40
+ def invoke(self, context, _event):
41
+ """
42
+
43
+ :param context:
44
+ :param _event:
45
+ """
46
+ ...
47
+
48
+ class ARMATURE_OT_collection_remove_unused(bpy.types.Operator):
49
+ """Remove all bone collections that have neither bones nor children. This is done recursively, so bone collections that only have unused children are also removed"""
50
+
51
+ bl_idname: typing.Any
52
+ bl_label: typing.Any
53
+ bl_options: typing.Any
54
+ bl_rna: typing.Any
55
+ id_data: typing.Any
56
+
57
+ def bl_rna_get_subclass(self) -> bpy.types.Struct:
58
+ """
59
+
60
+ :return: The RNA type or default when not found.
61
+ :rtype: bpy.types.Struct
62
+ """
63
+ ...
64
+
65
+ def bl_rna_get_subclass_py(self) -> typing.Any:
66
+ """
67
+
68
+ :return: The class or default when not found.
69
+ :rtype: typing.Any
70
+ """
71
+ ...
72
+
73
+ def execute(self, context):
74
+ """
75
+
76
+ :param context:
77
+ """
78
+ ...
79
+
80
+ def execute_edit_mode(self, context):
81
+ """
82
+
83
+ :param context:
84
+ """
85
+ ...
86
+
87
+ @classmethod
88
+ def poll(cls, context):
89
+ """
90
+
91
+ :param context:
92
+ """
93
+ ...
94
+
95
+ def remove_bcolls(self, armature, bcolls_to_remove):
96
+ """
97
+
98
+ :param armature:
99
+ :param bcolls_to_remove:
100
+ """
101
+ ...
102
+
103
+ def visit(self, bcoll, bcolls_with_bones, bcolls_to_remove):
104
+ """
105
+
106
+ :param bcoll:
107
+ :param bcolls_with_bones:
108
+ :param bcolls_to_remove:
109
+ """
110
+ ...
111
+
112
+ class ARMATURE_OT_collection_show_all(bpy.types.Operator):
113
+ """Show all bone collections"""
114
+
115
+ bl_idname: typing.Any
116
+ bl_label: typing.Any
117
+ bl_options: typing.Any
118
+ bl_rna: typing.Any
119
+ id_data: typing.Any
120
+
121
+ def bl_rna_get_subclass(self) -> bpy.types.Struct:
122
+ """
123
+
124
+ :return: The RNA type or default when not found.
125
+ :rtype: bpy.types.Struct
126
+ """
127
+ ...
128
+
129
+ def bl_rna_get_subclass_py(self) -> typing.Any:
130
+ """
131
+
132
+ :return: The class or default when not found.
133
+ :rtype: typing.Any
134
+ """
135
+ ...
136
+
137
+ def execute(self, context):
138
+ """
139
+
140
+ :param context:
141
+ """
142
+ ...
143
+
144
+ @classmethod
145
+ def poll(cls, context):
146
+ """
147
+
148
+ :param context:
149
+ """
150
+ ...
151
+
152
+ class ARMATURE_OT_collection_unsolo_all(bpy.types.Operator):
153
+ """Clear the 'solo' setting on all bone collections"""
154
+
155
+ bl_idname: typing.Any
156
+ bl_label: typing.Any
157
+ bl_options: typing.Any
158
+ bl_rna: typing.Any
159
+ id_data: typing.Any
160
+
161
+ def bl_rna_get_subclass(self) -> bpy.types.Struct:
162
+ """
163
+
164
+ :return: The RNA type or default when not found.
165
+ :rtype: bpy.types.Struct
166
+ """
167
+ ...
168
+
169
+ def bl_rna_get_subclass_py(self) -> typing.Any:
170
+ """
171
+
172
+ :return: The class or default when not found.
173
+ :rtype: typing.Any
174
+ """
175
+ ...
176
+
177
+ def execute(self, context):
178
+ """
179
+
180
+ :param context:
181
+ """
182
+ ...
183
+
184
+ @classmethod
185
+ def poll(cls, context):
186
+ """
187
+
188
+ :param context:
189
+ """
190
+ ...
191
+
192
+ class ARMATURE_OT_copy_bone_color_to_selected(bpy.types.Operator):
193
+ """Copy the bone color of the active bone to all selected bones"""
194
+
195
+ bl_idname: typing.Any
196
+ bl_label: typing.Any
197
+ bl_options: typing.Any
198
+ bl_rna: typing.Any
199
+ id_data: typing.Any
200
+
201
+ def bl_rna_get_subclass(self) -> bpy.types.Struct:
202
+ """
203
+
204
+ :return: The RNA type or default when not found.
205
+ :rtype: bpy.types.Struct
206
+ """
207
+ ...
208
+
209
+ def bl_rna_get_subclass_py(self) -> typing.Any:
210
+ """
211
+
212
+ :return: The class or default when not found.
213
+ :rtype: typing.Any
214
+ """
215
+ ...
216
+
217
+ def execute(self, context):
218
+ """
219
+
220
+ :param context:
221
+ """
222
+ ...
223
+
224
+ @classmethod
225
+ def poll(cls, context):
226
+ """
227
+
228
+ :param context:
229
+ """
230
+ ...
231
+
232
+ class ClearUselessActions(bpy.types.Operator):
233
+ """Mark actions with no F-Curves for deletion after save and reload of file preserving "action libraries" """
234
+
235
+ bl_idname: typing.Any
236
+ bl_label: typing.Any
237
+ bl_options: typing.Any
238
+ bl_rna: typing.Any
239
+ id_data: typing.Any
240
+
241
+ def bl_rna_get_subclass(self) -> bpy.types.Struct:
242
+ """
243
+
244
+ :return: The RNA type or default when not found.
245
+ :rtype: bpy.types.Struct
246
+ """
247
+ ...
248
+
249
+ def bl_rna_get_subclass_py(self) -> typing.Any:
250
+ """
251
+
252
+ :return: The class or default when not found.
253
+ :rtype: typing.Any
254
+ """
255
+ ...
256
+
257
+ def execute(self, _context):
258
+ """
259
+
260
+ :param _context:
261
+ """
262
+ ...
263
+
264
+ @classmethod
265
+ def poll(cls, _context):
266
+ """
267
+
268
+ :param _context:
269
+ """
270
+ ...
271
+
272
+ class NLA_OT_bake(bpy.types.Operator):
273
+ """Bake all selected objects location/scale/rotation animation to an action"""
274
+
275
+ bl_idname: typing.Any
276
+ bl_label: typing.Any
277
+ bl_options: typing.Any
278
+ bl_rna: typing.Any
279
+ id_data: typing.Any
280
+
281
+ def bl_rna_get_subclass(self) -> bpy.types.Struct:
282
+ """
283
+
284
+ :return: The RNA type or default when not found.
285
+ :rtype: bpy.types.Struct
286
+ """
287
+ ...
288
+
289
+ def bl_rna_get_subclass_py(self) -> typing.Any:
290
+ """
291
+
292
+ :return: The class or default when not found.
293
+ :rtype: typing.Any
294
+ """
295
+ ...
296
+
297
+ def execute(self, context):
298
+ """
299
+
300
+ :param context:
301
+ """
302
+ ...
303
+
304
+ def invoke(self, context, _event):
305
+ """
306
+
307
+ :param context:
308
+ :param _event:
309
+ """
310
+ ...
311
+
312
+ class UpdateAnimatedTransformConstraint(bpy.types.Operator):
313
+ """Update f-curves/drivers affecting Transform constraints (use it with files from 2.70 and earlier)"""
314
+
315
+ bl_idname: typing.Any
316
+ bl_label: typing.Any
317
+ bl_options: typing.Any
318
+ bl_rna: typing.Any
319
+ id_data: typing.Any
320
+
321
+ def bl_rna_get_subclass(self) -> bpy.types.Struct:
322
+ """
323
+
324
+ :return: The RNA type or default when not found.
325
+ :rtype: bpy.types.Struct
326
+ """
327
+ ...
328
+
329
+ def bl_rna_get_subclass_py(self) -> typing.Any:
330
+ """
331
+
332
+ :return: The class or default when not found.
333
+ :rtype: typing.Any
334
+ """
335
+ ...
336
+
337
+ def execute(self, context):
338
+ """
339
+
340
+ :param context:
341
+ """
342
+ ...
@@ -0,0 +1,150 @@
1
+ import typing
2
+ import collections.abc
3
+ import typing_extensions
4
+ import bpy.types
5
+
6
+ GenericType1 = typing.TypeVar("GenericType1")
7
+ GenericType2 = typing.TypeVar("GenericType2")
8
+
9
+ class ASSET_OT_open_containing_blend_file(bpy.types.Operator):
10
+ """Open the blend file that contains the active asset"""
11
+
12
+ bl_idname: typing.Any
13
+ bl_label: typing.Any
14
+ bl_options: typing.Any
15
+ bl_rna: typing.Any
16
+ id_data: typing.Any
17
+
18
+ def bl_rna_get_subclass(self) -> bpy.types.Struct:
19
+ """
20
+
21
+ :return: The RNA type or default when not found.
22
+ :rtype: bpy.types.Struct
23
+ """
24
+ ...
25
+
26
+ def bl_rna_get_subclass_py(self) -> typing.Any:
27
+ """
28
+
29
+ :return: The class or default when not found.
30
+ :rtype: typing.Any
31
+ """
32
+ ...
33
+
34
+ def cancel(self, context):
35
+ """
36
+
37
+ :param context:
38
+ """
39
+ ...
40
+
41
+ def execute(self, context):
42
+ """
43
+
44
+ :param context:
45
+ """
46
+ ...
47
+
48
+ def modal(self, context, event):
49
+ """
50
+
51
+ :param context:
52
+ :param event:
53
+ """
54
+ ...
55
+
56
+ def open_in_new_blender(self, filepath):
57
+ """
58
+
59
+ :param filepath:
60
+ """
61
+ ...
62
+
63
+ @classmethod
64
+ def poll(cls, context):
65
+ """
66
+
67
+ :param context:
68
+ """
69
+ ...
70
+
71
+ class ASSET_OT_tag_add(AssetBrowserMetadataOperator, bpy.types.Operator):
72
+ """Add a new keyword tag to the active asset"""
73
+
74
+ bl_idname: typing.Any
75
+ bl_label: typing.Any
76
+ bl_options: typing.Any
77
+ bl_rna: typing.Any
78
+ id_data: typing.Any
79
+
80
+ def bl_rna_get_subclass(self) -> bpy.types.Struct:
81
+ """
82
+
83
+ :return: The RNA type or default when not found.
84
+ :rtype: bpy.types.Struct
85
+ """
86
+ ...
87
+
88
+ def bl_rna_get_subclass_py(self) -> typing.Any:
89
+ """
90
+
91
+ :return: The class or default when not found.
92
+ :rtype: typing.Any
93
+ """
94
+ ...
95
+
96
+ def execute(self, context):
97
+ """
98
+
99
+ :param context:
100
+ """
101
+ ...
102
+
103
+ class ASSET_OT_tag_remove(AssetBrowserMetadataOperator, bpy.types.Operator):
104
+ """Remove an existing keyword tag from the active asset"""
105
+
106
+ bl_idname: typing.Any
107
+ bl_label: typing.Any
108
+ bl_options: typing.Any
109
+ bl_rna: typing.Any
110
+ id_data: typing.Any
111
+
112
+ def bl_rna_get_subclass(self) -> bpy.types.Struct:
113
+ """
114
+
115
+ :return: The RNA type or default when not found.
116
+ :rtype: bpy.types.Struct
117
+ """
118
+ ...
119
+
120
+ def bl_rna_get_subclass_py(self) -> typing.Any:
121
+ """
122
+
123
+ :return: The class or default when not found.
124
+ :rtype: typing.Any
125
+ """
126
+ ...
127
+
128
+ def execute(self, context):
129
+ """
130
+
131
+ :param context:
132
+ """
133
+ ...
134
+
135
+ @classmethod
136
+ def poll(cls, context):
137
+ """
138
+
139
+ :param context:
140
+ """
141
+ ...
142
+
143
+ class AssetBrowserMetadataOperator:
144
+ @classmethod
145
+ def poll(cls, context):
146
+ """
147
+
148
+ :param context:
149
+ """
150
+ ...