• 首页
  • 动态
  • 案例
  • 引擎社区
  • API
  • 文档
  • 示例
  • 引擎下载

大约有 1,625 项符合查询结果, 库内数据总量为 30,786 项。 (搜索耗时: 0.0047 秒)

1051. 鼠标交互-自定义事件 [ 60%]

...= Laya.WebGL; export class Interaction_CustomEvent { public static ROTATE: string = "rotate"; private sp: Sprite; constructor() { // 不支持WebGL时自动切换至Canvas Laya.init(Browser.clientWidth, Browser.clientHeight, WebGL); Laya.stage.alignV = Stage.ALIGN_MIDDLE; Laya.stage.alignH = Stage.A...

来源: Laya2.0_示例 发布时间: 20241126

1052. 文本-字符限制 [ 60%]

...os(50, 210); input.restrict = "\u4e00-\u9fa5"; } private createLabel(text: string): Text { var label: Text = new Text(); label.text = text; label.color = "white"; label.fontSize = 20; Laya.stage.addChild(label); return label; } private createInput(): Input { var input: Input = new Input(); input.siz...

来源: Laya2.0_示例 发布时间: 20241126

1053. 动画不显示 [ 60%]

...   private var m_mapLayer:Sprite;         private var m_MapImgUrl:String;         private var m_Role:Animation;         private var m_RolePosition:Point = new Point(1200,1000);         private var m_MovStartPos:Point = new Point();         private var m_MovDistanceX:i...

来源: Laya_社区 发布时间: 20170921

1054. laya.utils.Timer [ 60%]

...id 立即提前执行定时器,执行之后从队列中删除 Timer  toString():String 返回统计信息。TimerProperty DetailcurrFramepropertypublic var currFrame:int = 0 当前的帧数。currTimerproperty public var currTimer:Number 当前帧开始的时间。deltaproperty delta:int  [r...

来源: laya_api 发布时间: 20170929

1055. 缓动动画(TypeScript-LayaAir基础篇(TS)-动画基础) [ 60%]

...r offsetX:number = Laya.stage.width - w >> 1; //显示的字符串 var demoString:string = "LayaBox"; var letterText:Laya.Text; //根据"LayaBox"字符串长度创建单个字符,并对每个单独字符使用缓动动画 for(var i:number = 0,len:number = demoString.length;i(动图2) 结合实...

来源: Laya2.0_文档 发布时间: 20210715

1056. UI-List [ 60%]

...EI); this.img = new Image(); this.addChild(this.img); } public setImg(src: string): void { this.img.skin = src; } } } new laya.UI_List();package { import laya.display.Stage; import laya.ui.List; import laya.utils.Handler; import laya.webgl.WebGL; public class UI_List { public function UI_List() { //...

来源: Laya2.0_示例 发布时间: 20241126

1057. UI-List [ 60%]

...EI); this.img = new Image(); this.addChild(this.img); } public setImg(src: string): void { this.img.skin = src; } } } new laya.UI_List();package { import laya.display.Stage; import laya.ui.List; import laya.utils.Handler; import laya.webgl.WebGL; public class UI_List { public function UI_List() { //...

来源: Laya_示例 发布时间: 20241126

1058. 鼠标交互-键盘交互 [ 60%]

...r(): void { var numKeyDown: number = this.keyDownList.length; var newText: string = '[ '; for (var i: number = 0; i < numKeyDown; i++) { if (this.keyDownList[i]) { newText += i + " "; } } newText += ']'; this.logger.changeText(newText); } /**添加提示文本*/ private createLogger(): void { this.l...

来源: Laya_示例 发布时间: 20241126

1059. 骨骼动画-藤蔓 [ 60%]

...ort WebGL = Laya.WebGL; export class Skeleton_SpineVine { private mAniPath:string; private mStartX:number = 200; private mStartY:number = 500; private mFactory:Templet; private mActionIndex:number = 0; private mCurrIndex:number = 0; private mArmature:Skeleton; private mCurrSkinIndex:number = 0; priv...

来源: Laya2.0_示例 发布时间: 20241126

1060. TypeScript在LayaAir 1.X和2.X中对待module和namespace的异同,求2.x使用自定义namespace的方法(module已经找到方法) [ 60%]

...------------------------ module AM{ export class AC { public static myname:string = "I'm AC!"; } } export default AM; b.ts ---------------------------- module AM{ export class BC { public static myname:string = "I'm BC!"; } } export default AM; c.ts -------------------------- import AM from './a'; /...

来源: Laya_社区 发布时间: 20181026