123456789101112131415161718 |
- import { Component, _decorator } from "cc";
- const { ccclass, property } = _decorator;
-
- /**
- * 该组件将所属节点内的所有输入事件穿透到下层节点,一般用于上层 UI 的背景。
- * 该组件没有任何 API 接口,直接添加到场景即可生效。
- */
- @ccclass
- export class ThroughInputEvents extends Component{
- onLoad(): void {
- // this.node.preventSwallow
- // (this.node as any)._touchListener.setSwallowTouches(false);
- }
- }
|