两个版本的插件

This commit is contained in:
onvia
2023-07-20 19:00:23 +08:00
parent 44bce05250
commit 68895155e5
2385 changed files with 1826008 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.CCCompPrefabInfo = void 0;
const Utils_1 = require("../../utils/Utils");
const UIObject_1 = require("../UIObject");
// @cctype("cc.CompPrefabInfo")
class CCCompPrefabInfo extends UIObject_1.UIObject {
constructor() {
super();
this.__type__ = "cc.CompPrefabInfo";
this.fileId = "";
this.fileId = Utils_1.utils.compressUuid(this.uuid);
}
}
exports.CCCompPrefabInfo = CCCompPrefabInfo;