RxLaboratory / Duik

Duik Ángela | Rigging and animation tools for After Effects
https://rxlaboratory.org/tools/duik/
GNU General Public License v3.0
346 stars 66 forks source link

Kleaner on path problem #1227

Open Jissse opened 3 weeks ago

Jissse commented 3 weeks ago

Description

Add kleaner on an animted path, error:

image

plzfixkthxbye

ilyasok commented 1 week ago

Usually, you don't use kleaner on paths. The workaround is to use key morph or a slider and then use kleaner on the slider.

Tried fixing this bug with hardcoding the missing function (see below), and a new one risen (see the pic)

function isPath(prop){
    if (prop.matchName == "ADBE Vector Shape - Group") return true;
    if (prop.matchName == "ADBE Mask Atom") return true;
    return false;
}

image