点击事件:hittest

流程:
1、层级管理器中,添加点触区域
2、预设控制脚本,

    properties: {
        collider: {
            default: null,
            type: cc.PolygonCollider
        },
        title: {
            default: null,
            type: cc.Label
        }
    },

3、onLoad启动:

//启动碰撞控制:
        cc.director.getCollisionManager().enabled = true;
//启动碰撞边缘显示:
        cc.director.getCollisionManager().enabledDebugDraw = true;
//监听触动事件
        this.node.on(cc.Node.EventType.TOUCH_START, function (touch, event) {
            var touchLoc = touch.getLocation(); 
//点触事件发生时,判断是否在区域内,并提示           
            if (cc.Intersection.pointInPolygon(touchLoc, this.collider.world.points)) {
                this.title.string = 'Hit';
            }
            else {
                this.title.string = 'Not hit';
            }
        }, this);

你可能感兴趣的:(点击事件:hittest)