laya-coreui-es
Version:
laya核心库、ui库es版本,剔除了媒体、TTF等功能。基于 LayaAir-release_2.12.0 修改
28 lines (27 loc) • 529 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.CommonScript = void 0;
const Component_1 = require("./Component");
class CommonScript extends Component_1.Component {
get isSingleton() {
return false;
}
constructor() {
super();
}
onAwake() {
}
onEnable() {
}
onStart() {
}
onUpdate() {
}
onLateUpdate() {
}
onDisable() {
}
onDestroy() {
}
}
exports.CommonScript = CommonScript;