replaced check for 'object->flag & SELECT' with 'base->flag &
BASE_SELECTED'
Details
Details
Diff Detail
Diff Detail
- Repository
- rB Blender
- Branch
- T60821_ (branched from master)
- Build Status
Buildable 3248 Build 3248: arc lint + arc unit
Event Timeline
Comment Actions
object->flag & SELECT is not longer a thing , it's now ob->base_flag & BASE_SELECTED which is synced from base->flag & BASE_SELECTED by the depsgraph. The latter is preferred when possible.