Revision 023ebb8 by Philipp Oeser 23 minutes ago |
Merge branch 'blender-v2.92-release' |
Revision 1c2b203 by Philipp Oeser 25 minutes ago |
Fix T84600: prevent bone groups operators on proxies and library overrides Editing bone groups is not supported on proxies/overrides [changes a re lost on file reload], need to do proper polling (and also prevent this from rna) for: - adding bone groups - removing bone groups - renaming bone groups - setting bone groups colors Previously, this was hinted at by setting the layout inactive, with preoper polls, this is now not needed anymore. note: Selection of bone groups actually makes sense here and is supported, so this is not prevented in this patch, but UI wise this is not nice in the override case, because one cannot set an active_index (aka select) in the UI list. Maniphest Tasks: T84600 Differential Revision: https://developer.blender.org/D10131 |
Revision a1fb3dc by Germano Cavalcante 28 minutes ago |
Fix T84808: Individual projection works even when snap options don't affect the transform mode Individual projection is a different branch of snap and always projects the transformed elements on the surface of objects. Perhaps this option should be limited to the Move mode due to similarity. But in order not to change the current behavior too much, this commit only disables this option in modes not affected by snap. |
Revision 3584f1d by Philipp Oeser 1 hour 18 min ago |
Merge branch 'blender-v2.92-release' |
Revision b4530de by Philipp Oeser 1 hour 27 min ago |
Fix T84586: missing Outliner redraws for certain NLA operators Outliner display under 'Animation' > 'NLA Tracks' was not updating in the following cases: - adding strips - removing strips - duplicating strips (possibly to different track) - swapping strips - reordering tracks - changing strip order by translating - translating strips between tracks - renaming tracks In the case of deleting strips/tracks, this was also resulting in a use- after-free error in Outliner drawing code (this was reported specifically in T84586). Most of these operators already sent a ND_NLA|NA_EDITED notifier, but the Outliner is not listening to these. Listening to NA_EDITED is also not what we want since this also happens a lot in cases irrelevant to the Outliner. Now be a bit more specific and send ND_NLA|NA_ADDED / ND_NLA| NA_REMOVED or a new ND_NLA_ORDER (to distinguish from NA_EDITED 'only' - where a redraw is not neccessary) and listen to these from the Outliner. (note: places that were listening to ND_NLA|NA_EDITED before are also listening to NA_ADDED or NA_REMOVED, so changing NA_EDITED should not be a problem here) (note 2: for cases like swapping tracks/strips order, NA_ADDED or NA_REMOVED does not make sense, neither can we use NA_EDITED [since we dont want to listen to this], so in this case an additional ND_NLA_ORDER is now sent) (note 3: in nla transform code, this is now always sent on confirm. There are cases were the notifier would not be needed, but checking exactly all cases were it actually would be needed seems overkill [history of D10073 has example code to check if strips moved between tracks]) Maniphest Tasks: T84586 Differential Revision: https://developer.blender.org/D10073 |
Revision e061bba by Philipp Oeser 1 hour 30 min ago |
Merge branch 'blender-v2.92-release' |
Revision dfdf79f by Philipp Oeser 1 hour 34 min ago |
Fix T84250: Eevee world/material parameter animation not updating the viewport The WORLD_UPDATE operation (needed to free the gpu material) was already defined in DepsgraphNodeBuilder::build_world, but corresponding relation was only set up for changes in the nodetree, not for changes in the world/material itself in DepsgraphRelationBuilder::build_world. Direct changes to these surface properties in the UI were updating properly through RNA property update callbacks, but these are not called from the animation system. So now add these relations in the depsgraph. Not 100% sure this is the right place for this (since e.g. eevee engine seems to handle e.g. animated light paramters just fine through EEVEE_cache_populate / eevee_light_setup, but properly freeing gpu materials wont happen for worlds in e.g eevee_id_world_update and also not for materials) Maniphest Tasks: T84250 Differential Revision: https://developer.blender.org/D9959 |
Revision 95af2e3 by Bastien Montagne 3 hours 7 min ago |
Merge branch 'blender-v2.92-release' |
Revision 9f2271d by Bastien Montagne 3 hours 10 min ago |
Fix T84739: Crash with curve brush in sculpt mode. No idea why we did not pass context to `ED_paintcurve_undo_push_end`, it is easily availbale everywhere... |
Revision 6251eb8 by Sybren A. Stüvel 3 hours 23 min ago |
Merge remote-tracking branch 'origin/blender-v2.92-release' |
3 hours 26 min ago |
Fix T83657: Pose Mode: Clearing transform doesn't respect Mirror X Extend the pose bone "clear loc/rot/scale" functions so that they respect the "Mirror X" option. Reviewed By: sybren Maniphest Tasks: T83657 Differential Revision: https://developer.blender.org/D9938 |
3 hours 26 min ago |
Fix T83657: Pose Mode: Clearing transform doesn't respect Mirror X Extend the pose bone "clear loc/rot/scale" functions so that they respect the "Mirror X" option. Reviewed By: sybren Maniphest Tasks: T83657 Differential Revision: https://developer.blender.org/D9938 |
Revision 4ef0654 by Antonio Vazquez 1 day and 2 hours ago |
GPencil: Fix Autojoin error using layer transform The target stroke bounding box was not checked properly and when using layer transform the error was noticeable, but really the error was before the layer transform commit. |
Revision 502eadb by Campbell Barton 1 day and 3 hours ago |
Merge branch 'blender-v2.92-release' |
Revision ced673c by Campbell Barton 1 day and 3 hours ago |
Merge branch 'blender-v2.92-release' |
Revision 9fb755f by Campbell Barton 1 day and 3 hours ago |
Merge branch 'blender-v2.92-release' |
Revision 2ee2f87 by Campbell Barton 1 day and 3 hours ago |
Add Object Tool: move extra settings popover last This is intended to be used when settings don't fit in the top bar, so it makes sense to keep them last. |
Revision 06da6e2 by Campbell Barton 1 day and 4 hours ago |
Add Object Tool: scale the cursor plane based on the depth Draw the cursor plane smaller then further away from the view. This makes the plane being drawn onto easier to perceive. |
Revision 5f9358a by Campbell Barton 1 day and 4 hours ago |
Add Object Tool: split aspect & origin options for base/height In practice it's common these settings shouldn't be linked for drawing the initial (base) plane, compared with the height. |
Revision 14bb9f0 by Campbell Barton 1 day and 6 hours ago |
Merge branch 'blender-v2.92-release' |
|