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

大约有 4,338 项符合查询结果, 库内数据总量为 30,789 项。 (搜索耗时: 0.0074 秒)

1981. 区块地图-带动画的地图 [ 68%]

...ublic class TiledMap_AnimationTile { private var tiledMap:TiledMap; public function TiledMap_AnimationTile() { // 不支持WebGL时自动切换至Canvas Laya.init(1100, 800, WebGL); Laya.stage.alignV = Stage.ALIGN_MIDDLE; Laya.stage.alignH = Stage.ALIGN_CENTER; Laya.stage.scaleMode = Stage.SCALE_SHO...

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

1982. Sprite3D的克隆(ActionScript-3D基础(AS3)-LayaAir3D之精灵) [ 68%]

...下Sprite3D中特有的克隆接口`instantiate`。 ```typescript public function static instantiate(original: Sprite3D, parent: Node = null, worldPositionStays: Boolean = true, position: Vector3 = null, rotation: Quaternion = null): Sprite3D; ``` - original :原始精灵。 - parent:父节点。 - ...

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

1983. laya2.0微信开发域无法显示 [ 68%]

...的 无法显示微信开放域。 报错:value._addReference is not a function 按照论坛里面以前的一些讨论,修改了laya.core.js里面 value && (value._addReference(this._referenceCount)); =》 if(value && value._addReference){ value._addReference(this._referenceCoun...

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

1984. laya.utils.Tween.to的第一个参数可以是个label? [ 68%]

...n    返回Tween对象。          */         public static function to(target:*, props:Object, duration:int, ease:Function = null, complete:Handler = null, delay:int = 0, coverBefore:Boolean = false, autoRecover:Boolean = true):Tween {             return Pool.getItemByClass(...

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

1985. 销毁资源并释放内存(ActionScript-3D基础(AS3)-LayaAir3D的内存管理) [ 68%]

...aMonkey2/Assets/LayaMonkey/LayaMonkey-LayaMonkey.lm", Handler.create(this, function(mesh:Mesh):void { ........ //上面省略,我们再网格加载完成3秒后对该网格进行销毁 Laya.timer.once(3000,this,function ():void { //销毁了使用了该网格的精灵 layaMonkey.destroy(); //对...

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

1986. 遇到一个关于父节点和子节点点击的问题 [ 68%]

...usemouve事件bigclick 每一个小sprite也都加上mousedown事件     function bigclick(e){ var  thex = e.target.mouseX }   遗憾的是如果点击的位置没有小sprite那成功得到了相对bigSprite的X坐标。但是如果那里有小sprite比如smalla, 那么得到的这个坐标...

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

1987. 加载图片显示为黑屏(附代码),为什么? [ 68%]

...utils.Handler; public class LayaSample { private var rule_ct; public function LayaSample() { Laya.init(640, 1136, WebGL); Laya.stage.bgColor = "#CCBBAA"; var panel = new Panel(); Laya.stage.addChild(panel); panel.size(460, 704); rule_ct = new Sprite(); Laya.stage.addChild(rule_ct...

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

1988. Dialog:屏蔽点击Dialog之外的区域关闭弹框 [ 68%]

...乐 赞同来自: instance代表创建的弹窗实例   instance.close = function(type = null) { if (!type) return // 这儿加一层限制,所有未知原因的关闭弹窗都不生效 this.closeType = type; Laya.Dialog.manager.close(this); } 2020-07-08 0 0 分享 微博 QZONE 微信 为什么...

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

1989. Laya.Handler.create 回调参数问题 [ 68%]

Laya.Handler.create 回调参数问题 var ape ; function Init() { Laya.init(400, 800, Laya.WebGL); Laya.stage.bgColor = "#999911";  ape = new Laya.Sprite();     Laya.stage.addChild(ape); var ag = ["lsd",ape,1,"str"]; ape.loadImage("../laya/assets/res/to1.png",0,0,0,0,Laya.Handler.create(this,...

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

1990. Laya.Tween怎么运用到3D对象上? [ 68%]

...en.to(box.potOld,{     x:1     ,y:2     ,update:new Laya.Handler(box,function(){         this.transform.position = this.potOld;     }) }, ConstValue.animationTime,Laya.Ease.elasticOut,Laya.Handler.create(this, function(){     console.log("complete"); }),ConstValue.animationDelay);   ...

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