pymiere
pymiere copied to clipboard
I fixed setInterpolationTypeAtKey
I fixed the function setInterpolationTypeAtKey() in /premiere_objects.py I added more parameters, now i'ts working.
Premiere docs
def setInterpolationTypeAtKey(self, time, interpolationType, updateUI):
"""
:type time: Object
:type interpolationType: int
:type updateUI: bool
"""
self._check_type(interpolationType, int, 'arg "interpolationType" of function "ComponentParam.setInterpolationTypeAtKey"')
self._check_type(updateUI, bool, 'arg "updateUI" of function "ComponentParam.setInterpolationTypeAtKey"')
return self._eval_on_this_object("setInterpolationTypeAtKey({}, {}, {})".format(_format_object_to_es(time), _format_object_to_es(interpolationType), _format_object_to_es(updateUI)))