mirror of
https://github.com/xibyte/jsketcher
synced 2025-12-22 00:14:31 +01:00
21 lines
275 B
JavaScript
21 lines
275 B
JavaScript
export default {
|
|
edges: {
|
|
type: 'array',
|
|
itemType: ['edge', 'face'],
|
|
|
|
max: 1,
|
|
initializeBySelection: true,
|
|
ui: {
|
|
|
|
}
|
|
},
|
|
thickness: {
|
|
type: 'number',
|
|
defaultValue: 20,
|
|
min: 10,
|
|
max: 30,
|
|
ui: {
|
|
widget: 'slider'
|
|
}
|
|
}
|
|
}
|