Skip to content

Commit 3f33f78

Browse files
committed
fix(hand-detect): 修复手势花屏问题
1 parent 7af2817 commit 3f33f78

File tree

1 file changed

+7
-5
lines changed

1 file changed

+7
-5
lines changed

miniprogram/packageAPI/pages/ar/hand-detect/hand-detect.js

+7-5
Original file line numberDiff line numberDiff line change
@@ -140,8 +140,8 @@ var EDGE_FSHADER_SOURCE =
140140
varying vec2 posJudge;
141141
142142
float box(float x, float y){
143-
float xc = clamp (x - centerPoint.x, -1.0 , 1.0);
144-
float yc = clamp (y - centerPoint.y, -1.0 , 1.0);
143+
float xc = x - centerPoint.x;
144+
float yc = y - centerPoint.y;
145145
vec2 point = vec2(xc, yc);
146146
float right = rightTopPoint.x;
147147
float top = rightTopPoint.y;
@@ -291,9 +291,11 @@ Component({
291291
gl.useProgram(this.rectEdgeProgram)
292292
gl.program = this.rectEdgeProgram
293293

294-
for (var i = 0; i < anchor2DList.length; i++) {
295-
onDrawRectEdge(gl, anchor2DList[i].origin.x, anchor2DList[i].origin.y, anchor2DList[i].size.width, anchor2DList[i].size.height)
296-
}
294+
// for (var i = 0; i < anchor2DList.length; i++) {
295+
// onDrawRectEdge(gl, anchor2DList[i].origin.x, anchor2DList[i].origin.y, anchor2DList[i].size.width, anchor2DList[i].size.height)
296+
// }
297+
298+
onDrawRectEdge(gl, anchor2DList[0].origin.x, anchor2DList[0].origin.y, anchor2DList[0].size.width, anchor2DList[0].size.height)
297299
}
298300
},
299301
},

0 commit comments

Comments
 (0)