superframe icon indicating copy to clipboard operation
superframe copied to clipboard

sun-sky sunPosition default value does not match vec3 type

Open crcdng opened this issue 8 years ago • 0 comments

The default value 0 0 -1 does not match type vec3.

kframe/components/sun-sky/index.js line 10 sunPosition: {type: 'vec3', default: '0 0 -1', is: 'uniform'} should now be sunPosition: {type: 'vec3', default: { x: 0, y: 0, z: -1 }, is: 'uniform'}

crcdng avatar Jul 20 '17 12:07 crcdng