美文网首页
cocos creator 点击区域不规则图形判断

cocos creator 点击区域不规则图形判断

作者: 凡凡的小web | 来源:发表于2020-10-13 18:09 被阅读0次
      let pos = target.convertToNodeSpace(e.getLocation())
                var polygonCollider = target.getComponent(cc.PolygonCollider);
    
                pos.x -= target.getContentSize().width / 2;
                pos.y -= target.getContentSize().height / 2;
    
                if(!cc.Intersection.pointInPolygon(pos, polygonCollider.points)){
                    return
                }
    

    参考https://my.oschina.net/u/4370408/blog/3637441

    相关文章

      网友评论

          本文标题:cocos creator 点击区域不规则图形判断

          本文链接:https://www.haomeiwen.com/subject/wetbpktx.html