Merge branch 'blender-v3.5-release'

This commit is contained in:
2023-02-21 16:41:47 +01:00
570 changed files with 2039093 additions and 211 deletions

View File

@@ -7,7 +7,7 @@
* the ability to inspect and call operators (defined by C or Python).
*
* \note
* This C module is private, it should only be used by `release/scripts/modules/bpy/ops.py` which
* This C module is private, it should only be used by `scripts/modules/bpy/ops.py` which
* exposes operators as dynamically defined modules & callable objects to access all operators.
*/
@@ -64,7 +64,7 @@ static void op_context_override_deprecated_warning(const char *action, const cha
{
if (PyErr_WarnFormat(
PyExc_DeprecationWarning,
/* Use stack level 2 as this call is wrapped by `release/scripts/modules/bpy/ops.py`,
/* Use stack level 2 as this call is wrapped by `scripts/modules/bpy/ops.py`,
* An extra stack level is needed to show the warning in the authors script. */
2,
"Passing in context overrides is deprecated in favor of "

View File

@@ -7,7 +7,7 @@
*
* We should avoid adding code here, and prefer:
* - `source/blender/makesrna/intern/rna_context.c` using the RNA C API.
* - `release/scripts/modules/bpy_types.py` when additions c an be written in Python.
* - `scripts/modules/bpy_types.py` when additions c an be written in Python.
*
* Otherwise functions can be added here as a last resort.
*/