doakey3 / VSE_Transform_Tools

Quickly transform, crop and fade video strips in Blender's Video Sequence Editor
GNU General Public License v3.0
223 stars 22 forks source link

Blender 3.4 grabbing / scaling color strip attribute error #38

Open theiwaz opened 1 year ago

theiwaz commented 1 year ago

When grabbing color layer in the VSE:

Python: Traceback (most recent call last):
  File "C:\Users\[user]\AppData\Roaming\Blender Foundation\Blender\3.4\scripts\addons\VSE_Transform_Tools\operators\grab\grab.py", line 328, in invoke
    if strip.use_translation:
AttributeError: 'ColorSequence' object has no attribute 'use_translation'

When scaling a color layer in the VSE:

Python: Traceback (most recent call last):
  File "C:\Users\ravdw\AppData\Roaming\Blender Foundation\Blender\3.4\scripts\addons\VSE_Transform_Tools\operators\scale\scale.py", line 369, in invoke
    left, right, bottom, top = get_group_box([strip])
  File "C:\Users\ravdw\AppData\Roaming\Blender Foundation\Blender\3.4\scripts\addons\VSE_Transform_Tools\operators\utils\geometry\get_group_box.py", line 32, in get_group_box
    boxes.append(get_strip_box(strip))
  File "C:\Users\ravdw\AppData\Roaming\Blender Foundation\Blender\3.4\scripts\addons\VSE_Transform_Tools\operators\utils\geometry\get_strip_box.py", line 32, in get_strip_box
    if not strip.use_translation and not strip.use_crop:
AttributeError: 'MovieClipSequence' object has no attribute 'use_translation'