layaair-example

This commit is contained in:
King Wang
2021-07-21 23:11:13 +08:00
parent c3aa1f918e
commit 4bfe797a89
203 changed files with 257823 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
/**This class is automatically generated by LayaAirIDE, please do not make any modifications. */
import View=Laya.View;
import Dialog=Laya.Dialog;
import Scene=Laya.Scene;
var REG: Function = Laya.ClassUtils.regClass;
export module ui.test {
export class TestSceneUI extends Scene {
public scoreLbl:Laya.Label;
public tipLbll:Laya.Label;
constructor(){ super()}
createChildren():void {
super.createChildren();
this.loadScene("test/TestScene");
}
}
REG("ui.test.TestSceneUI",TestSceneUI);
}