123456789101112131415161718192021222324252627 |
- 'use strict';
- module.exports = {
- load () {
-
- },
- unload () {
-
- },
-
- messages: {
- 'open' () {
-
- Editor.Panel.open('bezier');
- },
- 'say-hello' () {
- Editor.log('Hello World!');
-
- Editor.Ipc.sendToPanel('bezier', 'bezier:hello');
- },
- 'pointClick' () {
- Editor.log('Button clicked!');
- }
- },
- };
|