UNPKG

io3fix

Version:

toolkit for interior apps

37 lines 720 B
export default { description: 'simple box object', params: { v: { type: 'number', defaultValue: 0, optional: true, description: 'version' }, l: { // length in meters type: 'number', defaultValue: 1, optional: false, min: 0.01, description: 'length' }, w: { // width in meters type: 'number', defaultValue: 1, optional: false, min: 0.01, description: 'width' }, h: { // height in meters type: 'number', defaultValue: 1, optional: false, min: 0.01, description: 'height' } }, childrenTypes: [], parentTypes: ['level'], aframeComponent: { name: 'io3d-box' } }