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

大约有 2,023 项符合查询结果, 库内数据总量为 30,779 项。 (搜索耗时: 0.0062 秒)

671. 引擎中的修改意见 [ 80%]

...的使用形同虚设: public function set text(value:String):void { if (this._text !== value) { var a:Array = (value + "").split("|"); var p:Array; if(a.length > 1){ p = a.slice(1); lang(a[0],p); }else if(a.length == 1){ lang(a[0]); }else { lang(""); } isChanged = true; event(Event.CHANGE); } ...

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

672. Cannot read property 'rayCast' of undefined [ 80%]

...ort default class indexscene extends Laya.Script { constructor(){ super(); this.rotation = new Laya.Vector3(0, 0.01, 0); this.point = new Laya.Vector2(); this.ray = new Laya.Ray(new Laya.Vector3(),new Laya.Vector3()); //1.开启第四个参数 let config3D = new Laya.Config3D(); config3D.isAlpha = t...

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

673. 怎么播放声音? [ 80%]

...var bg_sound:Laya.Sound =new Laya.Sound(); bg_sound.on(Laya.Event.COMPLETE,this,this.loadcom_f); bg_sound.on(Laya.Event.PROGRESS,this,this.loadcom_f); bg_sound.on(Laya.Event.ERROR,this,this.loadcom_f); bg_sound.load("res/bg.mp3"); private loadcom_f(e:Laya.Event):void{ console.log("------------------...

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

674. 关于tiledmap获取格子自定义属性 [ 80%]

...laya.tiledmap.js 1. addTileProperties方法前后加入         2. this.addTileProperties(tTileSet.tileproperties); 后加入 3.使用时   附件 : --> 2017-09-16 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请: 与内容相关的链接 提交 2 个...

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

675. Sprite-节点控制 [ 80%]

...aya.stage.scaleMode = Stage.SCALE_SHOWALL; Laya.stage.bgColor = "#232628"; this.createApes(); } createApes() { const Sprite = Laya.Sprite; let monkey2Path = "res/apes/monkey2.png"; this.ape1 = new Sprite(); this.ape2 = new Sprite(); this.ape1.loadImage(monkey2Path); this.ape2.loadImage(monkey2Path);...

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

676. UI加载完成后无法获取控件的大小——超详细版问题 [ 80%]

...ay.Stage; class TestUI extends ui.test.testwhUI { constructor() { super(); this.mypan.vScrollBarSkin = ""; Laya.stage.on(Laya.Event.RESIZE, this, this.fitDOMElements); this.mypan.vScrollBar.on(Laya.Event.CHANGE, this, this.fitDOMElements_scroll); } private fitDOMElements(a, b, c, d, e, f): void { co...

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

677. 物理Bodies绑定Laya.Sprite [ 80%]

...age.alignH = 'middle'; // 适配水平对齐方式 Laya.stage.screenMode = this.Stage.SCREEN_HORIZONTAL; // 始终以横屏展示 Laya.stage.scaleMode = "fixedwidth"; // 宽度不变 this.engine; var world; this.engine = Matter.Engine.create({ enableSleeping: true // 开启睡眠 }); world = this.en...

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

678. ProgressBar属性详解(JavaScript-IDE篇(JS)-IDE组件属性详解) [ 80%]

...d(["res/ui/progressBar.png", "res/ui/progressBar$bar.png"], Handler.create(this, onLoadComplete)); })(); function onLoadComplete() { progressBar = new ProgressBar("res/ui/progressBar.png"); progressBar.width = 400; progressBar.x = (Laya.stage.width - progressBar.width) / 2; progressBar.y = Laya.stag...

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

679. laya.utils.Handler [ 79%]

...ropertyDefined By  args : Array 参数。Handler  caller : * 执行域(this)。Handler  method : Function 处理方法。Handler  once : Boolean = false 表示是否只执行一次。如果为true,回调后执行recover()进行回收,回收后会被再利用,默认为false 。HandlerPu...

来源: laya_api 发布时间: 20170929

680. laya.utils.Handler [ 79%]

...ropertyDefined By  args : Array 参数。Handler  caller : * 执行域(this)。Handler  method : Function 处理方法。Handler  once : Boolean = false 表示是否只执行一次。如果为true,回调后执行recover()进行回收,回收后会被再利用,默认为false 。HandlerPu...

来源: Laya2.0_api 发布时间: 20190513