mirror of
https://github.com/tidys/cc-inspector-chrome
synced 2025-04-20 08:58:41 +00:00
不再拾取Canvas,影响体验
This commit is contained in:
parent
0678a2c2ad
commit
a7801cccd1
@ -11,8 +11,15 @@ export class HintV3 extends HintAdapter {
|
|||||||
return cc.UITransformComponent || cc.UITransform;
|
return cc.UITransformComponent || cc.UITransform;
|
||||||
}
|
}
|
||||||
hitTest(node: any, x: number, y: number): boolean {
|
hitTest(node: any, x: number, y: number): boolean {
|
||||||
|
if (node === this.inspectorCanvas) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
if (node.getComponent(cc.Canvas)) {
|
||||||
|
// 因为Canvas会全屏,所以暂时不拾取,会干扰体验
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
let hitTest = null;
|
let hitTest = null;
|
||||||
// hitTest = node._uiProps?.uiTransformComp?.hitTest;
|
|
||||||
const tr = node.getComponent(this.transformComponent);
|
const tr = node.getComponent(this.transformComponent);
|
||||||
if (tr) {
|
if (tr) {
|
||||||
if (tr.hitTest) {
|
if (tr.hitTest) {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user