LayaAir在引入類等方面確實沒有Egret做的好(比較麻煩),本人喜歡模塊,所以給出了在Laya中使用模塊(module)的解決方案.
成都創(chuàng)新互聯(lián)公司網(wǎng)站建設公司提供網(wǎng)站設計和自適應建站服務。團隊由有經(jīng)驗的網(wǎng)頁設計師、程序員和市場專家組成,能夠提供從H5網(wǎng)站設計,網(wǎng)站制作,廣告投放,模板建站到小程序設計等全方位服務。 以客戶為中心,致力于為客戶提供創(chuàng)新、高效的解決方案,幫助您打造成功的企業(yè)網(wǎng)站。一 : 關于MaskDemo.ts的寫法
export module demo{
export class MaskDemo{
private Res : string = null;
private img : Laya.Sprite = null;
private cMask : Laya.Sprite = null;
public constructor(){
Laya.init(1336,640);
Laya.stage.bgColor = "#ffffff";
this.Res = "res/atlas/comp.png";
Laya.loader.load( this.Res , Laya.Handler.create(this,this.graphicsImg) );
}
private graphicsImg() : void{
this.img = new Laya.Sprite();
this.img.graphics.drawTexture(Laya.loader.getRes(this.Res), 300 , 100);
Laya.stage.addChild(this.img);
// this.cMask = new Laya.Sprite();
// this.cMask.graphics.drawCircle(80,80,50,"#ff0000");
// this.cMask.pos(120,50);
// this.img.mask = this.cMask;
}
}
}
注意 :
①,module前面也要以export修飾
import { demo } from "./MaskDemo";
注意: ①{}里面寫入module名稱
使用 : let $mask : demo.MaskDemo = new demo.MaskDemo();
-擴展(如果MaskDemo在script里面)
import { demo } from "./script/MaskDemo";
補充 , 另一種方案
import demo = require("./demo/MaskDemo");
import demo1 = require("./demo/DrawShapes");
運用
let $mask : demo.demo.MaskDemo = new demo.demo.MaskDemo();
let $draw : demo1.demo.DrawShapes = new demo1.demo.DrawShapes();
另外有需要云服務器可以了解下創(chuàng)新互聯(lián)cdcxhl.cn,海內(nèi)外云服務器15元起步,三天無理由+7*72小時售后在線,公司持有idc許可證,提供“云服務器、裸金屬服務器、高防服務器、香港服務器、美國服務器、虛擬主機、免備案服務器”等云主機租用服務以及企業(yè)上云的綜合解決方案,具有“安全穩(wěn)定、簡單易用、服務可用性高、性價比高”等特點與優(yōu)勢,專為企業(yè)上云打造定制,能夠滿足用戶豐富、多元化的應用場景需求。