Changeset View
Changeset View
Standalone View
Standalone View
release/scripts/modules/bpy/utils/__init__.py
| Show All 19 Lines | |||||
| """ | """ | ||||
| This module contains utility functions specific to blender but | This module contains utility functions specific to blender but | ||||
| not associated with blenders internal data. | not associated with blenders internal data. | ||||
| """ | """ | ||||
| __all__ = ( | __all__ = ( | ||||
| "blend_paths", | "blend_paths", | ||||
| "flip_name", | |||||
| "escape_identifier", | "escape_identifier", | ||||
| "unescape_identifier", | "unescape_identifier", | ||||
| "keyconfig_init", | "keyconfig_init", | ||||
| "keyconfig_set", | "keyconfig_set", | ||||
| "load_scripts", | "load_scripts", | ||||
| "modules_from_path", | "modules_from_path", | ||||
| "preset_find", | "preset_find", | ||||
| "preset_paths", | "preset_paths", | ||||
| Show All 19 Lines | __all__ = ( | ||||
| "unregister_tool", | "unregister_tool", | ||||
| "user_resource", | "user_resource", | ||||
| "execfile", | "execfile", | ||||
| ) | ) | ||||
| from _bpy import ( | from _bpy import ( | ||||
| _utils_units as units, | _utils_units as units, | ||||
| blend_paths, | blend_paths, | ||||
| flip_name, | |||||
| escape_identifier, | escape_identifier, | ||||
| unescape_identifier, | unescape_identifier, | ||||
| register_class, | register_class, | ||||
| resource_path, | resource_path, | ||||
| script_paths as _bpy_script_paths, | script_paths as _bpy_script_paths, | ||||
| unregister_class, | unregister_class, | ||||
| user_resource as _user_resource, | user_resource as _user_resource, | ||||
| system_resource, | system_resource, | ||||
| ▲ Show 20 Lines • Show All 1,010 Lines • Show Last 20 Lines | |||||