68 lines
1.5 KiB
JavaScript
68 lines
1.5 KiB
JavaScript
cc.Class({
|
|
extends: cc.Component,
|
|
|
|
properties: {
|
|
part1: {
|
|
default: null,
|
|
type: cc.Node
|
|
},
|
|
part2: {
|
|
default: null,
|
|
type: cc.Node
|
|
},
|
|
part3: {
|
|
default: null,
|
|
type: cc.Node
|
|
},
|
|
part4: {
|
|
default: null,
|
|
type: cc.Node
|
|
},
|
|
part5: {
|
|
default: null,
|
|
type: cc.Node
|
|
},
|
|
processBarPrefab: {
|
|
default: null,
|
|
type: cc.Prefab
|
|
},
|
|
puzzlePrefab: {
|
|
default: null,
|
|
type: cc.Prefab
|
|
},
|
|
tipPrefab: {
|
|
default: null,
|
|
type: cc.Prefab
|
|
},
|
|
imageSwiperPrefab: {
|
|
default: null,
|
|
type: cc.Prefab
|
|
},
|
|
bottomSwiperPrefab: {
|
|
default: null,
|
|
type: cc.Prefab
|
|
}
|
|
},
|
|
|
|
// LIFE-CYCLE CALLBACKS:
|
|
|
|
onLoad () {
|
|
var processBar = cc.instantiate(this.processBarPrefab);
|
|
this.part1.addChild(processBar);
|
|
var puzzle = cc.instantiate(this.puzzlePrefab);
|
|
this.part2.addChild(puzzle);
|
|
var tip = cc.instantiate(this.tipPrefab);
|
|
this.part2.addChild(tip);
|
|
var imageSwiper = cc.instantiate(this.imageSwiperPrefab);
|
|
this.part4.addChild(imageSwiper, 0);
|
|
var bottomSwiper = cc.instantiate(this.bottomSwiperPrefab);
|
|
this.part5.addChild(bottomSwiper);
|
|
},
|
|
|
|
start () {
|
|
},
|
|
|
|
// update (dt) {},
|
|
|
|
});
|