请问,编辑器选中节点的IPC消息 ??

请问,编辑器选中节点的IPC消息 ??

        'selection:activated': function ( event, type, id ) {
            if ( type !== 'node' || !id ) {
                return;
            }

            let node = cc.engine.getInstanceById(id);
            let itemPath = node ? _Scene.NodeUtils.getNodePath(node) : '';
        },

谢谢。:kissing_heart:

mark2