missed some files last commit.
This commit is contained in:
@@ -60,8 +60,8 @@ def load_scripts(reload_scripts=False, refresh_scripts=False):
|
|||||||
|
|
||||||
if reload_scripts:
|
if reload_scripts:
|
||||||
# reload modules that may not be directly included
|
# reload modules that may not be directly included
|
||||||
for type_class_name in dir(types):
|
for type_class_name in dir(_bpy.types):
|
||||||
type_class = getattr(types, type_class_name)
|
type_class = getattr(_bpy.types, type_class_name)
|
||||||
module_name = getattr(type_class, "__module__", "")
|
module_name = getattr(type_class, "__module__", "")
|
||||||
|
|
||||||
if module_name and module_name != "bpy.types": # hard coded for C types
|
if module_name and module_name != "bpy.types": # hard coded for C types
|
||||||
|
|||||||
@@ -49,6 +49,7 @@
|
|||||||
|
|
||||||
#include "WM_types.h"
|
#include "WM_types.h"
|
||||||
|
|
||||||
|
#include "BLI_threads.h"
|
||||||
|
|
||||||
EnumPropertyItem snap_target_items[] = {
|
EnumPropertyItem snap_target_items[] = {
|
||||||
{SCE_SNAP_TARGET_CLOSEST, "CLOSEST", 0, "Closest", "Snap closest point onto target."},
|
{SCE_SNAP_TARGET_CLOSEST, "CLOSEST", 0, "Closest", "Snap closest point onto target."},
|
||||||
|
|||||||
Reference in New Issue
Block a user