Community Tip - Learn all about PTC Community Badges. Engage with PTC and see how many you can earn! X
Hey, I cant figure out how can i get data from vec4 baseType. My code is like:
props['PaneBGColorLinear'+a] = {
description: 'X1,Y1,X2,Y1 for linear gradient',
baseType: 'VEC4',
defaultValue: '0,0,0,0',
};
var vec = this.getPropertyEx('PaneBGColorLinear'+b);
bgColor = { x1: vec.x, y1: vec.y, x2: vec.z, y2: vec.w };