大约有 446 项符合查询结果, 库内数据总量为 30,782 项。 (搜索耗时: 0.0053 秒)
...e.addChild(new HelloWorld) //HelloWorld.ts export default class HelloWorld extends Laya.Text { constructor(){ super() this.text = "Hello Layabox" this.color = '#ffffff' } } 2017-11-20 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请: 与内容相关的链...
来源: Laya_社区 发布时间: 20171120
... layaMaxUI.ts代码如下 export gm { export class GmPanelUI extends Laya.Base { public bg:Laya.Sprite; public input:Laya.TextInput; public btnSend:Laya.Button; public btnClose:Laya.Button; constructor(){ super()} ...
来源: Laya_社区 发布时间: 20190128
... number = 8080; let IP: string = "127.0.0.1"; export class NetSocket extends Laya.Socket{ private static _instance: NetSocket; public static get instance(): NetSocket { if (!NetSocket._instance) { NetSocket._instance = new NetSo...
来源: Laya_社区 发布时间: 20170602
...port laya.utils.Browser; import ui.test.HtmlPageUI; public class HtmlView1 extends HtmlPageUI { private var str:String; private var str2:String; private var isSend:Boolean=false; public function HtmlView1() { super(); // 文本样式一 str="<span color='blue' style=' font" + ":18px 华文琥珀'...
来源: Laya_社区 发布时间: 20170107
...错,这个时候借用下any吧,如: classA implements IA{ } classB extends classA{ } var items:IA = ; function(item:classB):void { //items.push(item);//报错,提示类型错误 //方案一 items.push(<any>item); //方案二 var temp:IA = <IA>item; items.push(temp); ...
来源: Laya_社区 发布时间: 20161109
...ize; import laya.ui.Image; public class ProcessTimer extends Sprite { public var img:Image; public var maskSp:Sprite; public var percent:Number; public var type:String = "PROGRESS_TIMER_TYPE_RADIAL"; p...
来源: Laya_社区 发布时间: 20180404
...rement the ticker tick += 1; } } } import laya.display.Sprite; class Laser extends Sprite { public var life:int; }
来源: Laya_示例 发布时间: 20241120
...18-05-08 0 0 分享 微博 QZONE 微信 Miller 赞同来自: class Item extends Laya.Box { public static WID: number = 600; public static HEI: number = 85; private img: Laya.Image; //private text: Laya.Label; constructor(){ super(); this.size(Item.WID, Item.HEI); this.img = ne...
来源: Laya_社区 发布时间: 20180507
... const { regClass, property } = Laya; @regClass() export class NewScript extends Laya.Script { //declare owner : Laya.Sprite3D; @property({ type: Laya.Sprite }) public sprite1: Laya.Sprite; @property({ type: Laya.Sprite }) public sprite2: Laya.Sprite; constructor() { super(); } /** * 组件被激活...
来源: Laya3.0_文档 发布时间: 20241014
...示例 const { regClass, property } = Laya; @regClass() export class Main extends Laya.Script { private tMap:Laya.TiledMap; onEnable() { //创建地图对象 this.tMap = new Laya.TiledMap(); //创建Rectangle实例,视口区域 var viewRect:Laya.Rectangle = new Laya.Rectangle(0, 0, Laya.stage.desi...
来源: Laya3.0_文档 发布时间: 20230303