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

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

1101. Sprite3D-Sprite3D克隆 [ 67%]

...inModel/LayaMonkey/LayaMonkey.lh", Laya.Handler.create(this, onComplete)); function onComplete() { var layaMonkey = scene.addChild(Laya.Sprite3D.load("../../res/threeDimen/skinModel/LayaMonkey/LayaMonkey.lh")); //克隆sprite3d var layaMonkey_clone1 = Laya.Sprite3D.instantiate(layaMonkey, scene, fal...

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

1102. laya.d3.core.render.RenderContext3D [ 67%]

...:int渲染区宽度。Constructor DetailRenderContext3D()Constructorpublic function RenderContext3D() 创建一个 RenderContext3D 实例。 Mon May 13 2019, 02:40 PM +08:00

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

1103. UIConfig_API3.0 [ 67%]

... popupBgColor showButtons touchScrollEnable Legend Object literal Variable Function Type alias Class Class with type parameter Enumeration Interface Static property

来源: Laya3.0_api 发布时间: 20231115

1104. 在微信小游戏中,主域中显示开发域的list为什么显示不全? [ 67%]

...Handler.create(null, beginLoad), Laya.ResourceVersion.FILENAME_VERSION);  function beginLoad(){     Laya.loader.load("res/atlas/comp.atlas", Laya.Handler.create(null, onLoaded)); }*/  function updateItem(cell, index) { cell.setImg(cell.dataSource); }  function onLoaded(): void {      var...

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

1105. UI-Label [ 67%]

...ort laya.ui.Label; import laya.webgl.WebGL; public class UI_Label { public function UI_Label() { // 不支持WebGL时自动切换至Canvas Laya.init(800, 600, WebGL); Laya.stage.alignV = Stage.ALIGN_MIDDLE; Laya.stage.alignH = Stage.ALIGN_CENTER; Laya.stage.scaleMode = Stage.SCALE_SHOWALL; Laya.stag...

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

1106. laya.d3.physics.PhysicsSettings_API3.0 [ 67%]

...icsSettings fixedTimeStep flags maxSubSteps Legend Object literal Variable Function Type alias Class Class with type parameter Property Enumeration Interface

来源: Laya3.0_api 发布时间: 20231115

1107. 分享:DrawToCanvas内存释放问题! [ 67%]

...位置x++ private var sp2:Sprite;//用于显示截屏后的纹理 public function LayaAirDemo() { Laya.init(Browser.width, Browser.height);//引擎初始化 Laya.stage.bgColor = "#ffcccc";//背景颜色 Stat.show();//显示帧频,用于观察Curmem变化 //添加被截屏对象 sp= new Sprite(); s...

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

1108. http 请求 once 的 回调参数,如何传递和接收? [ 67%]

... once 的 回调参数,如何传递和接收? once () method  public function once(type:String, caller:*, listener:Function, args:Array = null):EventDispatcher使用 EventDispatcher 对象注册指定类型的事件侦听器对象,以使侦听器能够接收事件通知,此侦听事件响...

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

1109. 动画-SWF动画 [ 67%]

... private const MCWidth:int = 318; private const MCHeight:int = 406; public function Animation_SWF() { // 不支持WebGL时自动切换至Canvas Laya.init(Browser.clientWidth, Browser.clientHeight, WebGL); Laya.stage.alignV = Stage.ALIGN_MIDDLE; Laya.stage.alignH = Stage.ALIGN_CENTER; Laya.stage.scal...

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

1110. 引擎的text类中有没有直接读取Json文件的函数 [ 67%]

...a.net.Loader; import laya.utils.Handler; public class LayaAirDemo { public function LayaAirDemo() { Laya.init(500,400); Laya.loader.load("unpack.json",Handler.create(this,onLoaded),null,Loader.JSON); } private function onLoaded():void { var json:JSON=Laya.loader.getRes("unpack.json"); var str:String...

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