我有一个案例,我有一个父级Group
,其中 1rectangle
用于显示父组的边界和带有groups
标签的子级。Circle
Text
我需要的是当我旋转父母时Group
我只需要旋转Rect
而孩子Group
不应该旋转。
我尝试的是在旋转函数中过滤子组,如下所示并给出了相反的结果
this.rotation = function(degrees) {
group.rotation(degrees);
var childGroup = group.getChildren(function(node){
return node.getClassName() === 'Group';
})
childGroup.each(function(item){
item.rotation(-degrees);
});
App.layer.draw();
};
我可能有多达 100 个子组,这样做是否存在性能问题或是否有其他替代方案?