Blender Git Commit Log
Git Commits -> Revision b23ae77
August 10, 2021, 01:35 (GMT) |
Fix slicing with negative indices Negative indices that remained negative after adding the sequence length caused incorrect slicing. With the default scene for example: bpy.context.scene.objects[-4:2] Gave a different result to: tuple(bpy.context.scene.objects)[-4:2] Clamp indices above zero so loops that step forward works as intended. |
Commit Details:
Full Hash: b23ae77e2ee2b24019b42ff17e0e089a6f33a309
Parent Commit: bad999e
Committed By: YimingWu
Lines Changed: +10, -0