pymiere icon indicating copy to clipboard operation
pymiere copied to clipboard

I fixed setInterpolationTypeAtKey

Open tobsailbot opened this issue 3 years ago • 0 comments

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)))

tobsailbot avatar Aug 07 '22 16:08 tobsailbot