mirror of
https://projects.blender.org/blender/blender.git
synced 2025-01-22 15:32:15 -05:00
b9f253564e
This PR adds new RNA properties that deprecate and replace any `sequence` property. The old prooperties are still there and fully functional, but the description is changed to indicate that these will be removed in the future and that the new properties should be used instead. | Deprecated property | Replacement property | | --------------------------------- | ----------------------------------- | | `context.active_sequence_strip` | `context.active_strip` | | `context.selected_editable_sequences` | `context.selected_editable_strips` | | `context.selected_sequences` | `context.selected_strips` | | `context.sequences` | `context.strips` | | `SequenceEditor.sequences` | `SequenceEditor.strips` | | `SequenceEditor.sequences_all` | `SequenceEditor.strips_all` | | `MetaStrip.sequences` | `MetaStrip.strips` | Previously, rna paths for animation data on strips started with `sequence_editor.sequences`. This PRadds versioning for the rna paths to make sure to use the new naming scheme. This does mean that in previous versions of blender, the animations don't show but the data is not lost (even if the file is saved in the older version). Also do some cleanup of existing python scripts inside the source to use the new properties. Part of #132963. Pull Request: https://projects.blender.org/blender/blender/pulls/133156 |
||
---|---|---|
.. | ||
check_blender_release | ||
check_docs | ||
check_source | ||
config | ||
debug/gdb | ||
git | ||
modules | ||
svn_rev_map | ||
triage | ||
utils | ||
utils_api | ||
utils_build | ||
utils_doc | ||
utils_ide | ||
utils_maintenance | ||
readme.rst |
Blender Dev Tools ################# This repository is intended for miscellaneous tools, utilities, configurations and anything that helps with Blender development, but aren't directly related to building Blender. Some of the tools included may be used stand-alone, others expect Blenders source code to be available. Usage ===== While this is a stand-alone repository, some of the scripts which access Blenders source code assume this repository will be located at ``tools`` within Blenders source code repository. At some point this may be included as a submodule. Some tools also rely on the ``blender`` binary, this is assumed to be located at: ``../../blender.bin``. *The root directory of Blender's git repository* Categories ========== Check Source ------------ Any tools for scanning source files to report issues with code, style, conventions, deprecated features etc. Config ------ Configuration for 3rd party applications (IDE's, code-analysis, debugging tools... etc). Git --- Scripts and utilities for working with git. Utils ----- Programs (scripts) to help with development (currently for converting formats, creating mouse cursor, updating themes).