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

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

271. 设置遮罩(TypeScript-LayaAir基础篇(TS)-位图) [ 85%]

...类,编写代码如下: ```typescript // 程序入口 class MaskDemo{ private Res:string; private img:Laya.Sprite; constructor() { Laya.init(1336,640); //设置舞台背景色 Laya.stage.bgColor = "#ffffff"; //资源路径 this.Res = "res/img/monkey1.png"; //先加载图片资源,在图片资...

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

272. 文本-字符限制 [ 85%]

...Stage.SCALE_SHOWALL; Laya.stage.bgColor = "#232628"; this.createTexts(); } private createTexts(): void { this.createLabel("只允许输入数字:").pos(50, 20); var input: Input = this.createInput(); input.pos(50, 50); input.restrict = "0-9"; this.createLabel("只允许输入字母:").pos(50, 10...

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

273. 屏幕适配的缩放模式详解(TypeScript-2D基础篇(TS)-屏幕适配) [ 85%]

... class SmartScale_T {           //适配模式         private modes:string = "exactfit";         //全局文本信息         private txt: Text;           constructor() {         //初始化舞台大小         Laya.init(1136, 640)...

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

274. iOS wkWebView [ 85%]

...,公司其它ios手机都没问题,求大神给解答下啊!     private connect(): void { console.log("connect...."); this.hr = new Laya.HttpRequest(); this.hr.once(Laya.Event.PROGRESS, this, this.onHttpRequestProgress); this.hr.once(Laya.Event.COMPLETE, this, this.onHttpRequestComplete); t...

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

275. 官方提供的关系链代码执行报错,是不是wx的sharedCanvas不是Laya的canvas导致的问题 [ 85%]

...高度(包括被裁剪的透明区域)。*/ this.sourceHeight=0; /**@private */ //this._loaded=false; /**@private */ this._w=0; /**@private */ this._h=0; /**@private 唯一ID*/ //this.$_GID=NaN; /**图片地址*/ //this.url=null; /**@private */ this._uvID=0; this._atlasID=-1; /**@private */ this...

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

276. Laya.Socket 是不是不支持Safari浏览器二进制格式的数据传输? [ 85%]

...来自: 就是按照官方例子来做的测试 /* * name; */ class Test{ private socket: Laya.Socket; private byte: Laya.Byte; constructor() { //初始化引擎 Laya.init(600, 400, Laya.WebGL); this.byte = new Laya.Byte(); //这里我们采用小端 this.byte.endian = Laya.Byte.LITTLE_ENDIAN; this....

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

277. 图片添加点击事件 有的不生效 [ 85%]

图片添加点击事件 有的不生效 private init():void { //添加点击事件处理 this.v_btn_boy.on(Laya.Event.CLICK, this, this.onClickBtnBoy); this.v_btn_friend.on(Laya.Event.CLICK, this, this.onClickBtnFriend); this.v_btn_shop.on(Laya.Event.CLICK, this, this.onClickBtnShop); console.log(...

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

278. 射线检测报错,outHitInfo.sprite3D=null; [ 85%]

...tHitInfo.sprite3D=null; 代码: class SceneScript extends Laya.Script{  private ray : Laya.Ray; private hit: Laya.RaycastHit; private phasorSprite3D:Laya.PhasorSpriter3D; private camera : Laya.Camera; private scene: Laya.Scene;  public _load(owner : any):void{ this.scene = owner; this.camera = t...

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

279. 分享贝塞尔曲线运动 [ 85%]

...er.frameLoop(1, this, this.move, [0.0003])//主控制  0.0003自己调整 private testSp:Laya.Sprite;//移动物体 private counts=0; //移动        自己做条件判断停止frameLoop private move(arg) { var t = arg * this.counts var point = this.bezier(t, stX, stY, kzX, kxY, endX, endY); t...

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

280. Laya.loader.load 教程代码出错 [ 85%]

...t laya.resource.Texture;     public class LayaSample {         private var img:Sprite ;         private var index:int ;         public function LayaSample() {             //初始化引擎             Laya.init(600, 300);              ...

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