PyAPI: add bpy.utils.unescape_identifier

Utility to perform the reverse of `bpy.utils.escape_identifier`
This commit is contained in:
2020-12-10 14:09:29 +11:00
parent 2f86518ac0
commit b5bc9d80a1
2 changed files with 55 additions and 0 deletions

View File

@@ -26,6 +26,7 @@ not associated with blenders internal data.
__all__ = (
"blend_paths",
"escape_identifier",
"unescape_identifier",
"keyconfig_init",
"keyconfig_set",
"load_scripts",
@@ -60,6 +61,7 @@ from _bpy import (
_utils_units as units,
blend_paths,
escape_identifier,
unescape_identifier,
register_class,
resource_path,
script_paths as _bpy_script_paths,