37 lines
1008 B
JavaScript
37 lines
1008 B
JavaScript
// Learn cc.Class:
|
|
// - [Chinese] https://docs.cocos.com/creator/manual/zh/scripting/class.html
|
|
// - [English] http://docs.cocos2d-x.org/creator/manual/en/scripting/class.html
|
|
// Learn Attribute:
|
|
// - [Chinese] https://docs.cocos.com/creator/manual/zh/scripting/reference/attributes.html
|
|
// - [English] http://docs.cocos2d-x.org/creator/manual/en/scripting/reference/attributes.html
|
|
// Learn life-cycle callbacks:
|
|
// - [Chinese] https://docs.cocos.com/creator/manual/zh/scripting/life-cycle-callbacks.html
|
|
// - [English] https://www.cocos2d-x.org/docs/creator/manual/en/scripting/life-cycle-callbacks.html
|
|
|
|
//var Main = require("Main");
|
|
cc.Class({
|
|
extends: cc.Component,
|
|
|
|
properties: {
|
|
pbmain: {
|
|
default: null,
|
|
type: cc.Prefab,
|
|
},
|
|
},
|
|
|
|
// LIFE-CYCLE CALLBACKS:
|
|
|
|
// onLoad () {},
|
|
|
|
start() {
|
|
try {
|
|
var nd1 = cc.instantiate(this.pbmain);
|
|
this.node.parent.addChild(nd1);
|
|
} catch (error) {
|
|
console.log(error);
|
|
}
|
|
},
|
|
|
|
// update (dt) {},
|
|
});
|