Skip to main content
1-Visitor
October 31, 2016
Question

How to get values of VEC4 in widget

  • October 31, 2016
  • 0 replies
  • 1146 views

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 };