23 lines
318 B
JavaScript
23 lines
318 B
JavaScript
|
export default {
|
||
|
name: 'star',
|
||
|
buttons: [
|
||
|
{
|
||
|
title: 'Star Tool'
|
||
|
}
|
||
|
],
|
||
|
contextTools: [
|
||
|
{
|
||
|
title: 'Number of Sides',
|
||
|
label: 'points'
|
||
|
},
|
||
|
{
|
||
|
title: 'Pointiness',
|
||
|
label: 'Pointiness'
|
||
|
},
|
||
|
{
|
||
|
title: 'Twists the star',
|
||
|
label: 'Radial Shift'
|
||
|
}
|
||
|
]
|
||
|
};
|