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

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

1991. Text的中划线(删除线) [ 68%]

...line && this.drawUnderline(textAlgin,x,y,i); __proto.drawUnderline=function(align,x,y,lineIndex){             var lineWidth=this._lineWidths[lineIndex];             switch (align){                 case 'center':                     ...

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

1992. laya.d3.utils.Physics3DUtils [ 68%]

...ity:Vector3重力值。Constructor DetailPhysics3DUtils()Constructorpublic function Physics3DUtils() 创建一个 Physics 实例。 Method DetailgetIColliderCollision()method public static function getIColliderCollision(collider1:PhysicsComponent, collider2:PhysicsComponent):Boolean 获取是否忽...

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

1993. 材质-PBRStandard材质 [ 68%]

...aterialScene/Showcase.ls")); scene.once(Laya.Event.HIERARCHY_LOADED, this, function () { var camera = scene.getChildByName("Main Camera"); camera.addComponent(CameraMoveScript); camera.clearFlag = Laya.BaseCamera.CLEARFLAG_SKY; var skyBox = new Laya.SkyBox(); camera.sky = skyBox; skyBox.textureCube ...

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

1994. 鼠标事件能否在有图形的区域感应,特别是子项坐标为负数时(已经找到问题) [ 68%]

...t; public class MainUi extends Sprite { private var testPan:Sprite; public function MainUi() { super(); this.graphics.drawRect(0,0,500,500,"#fff0cc"); testPan = new Sprite(); testPan.name = "testPan"; this.addChild( testPan ); testPan.pos( 300,300); testPan.graphics.drawRect(0,0,90,100,"#faaff0"); t...

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

1995. Animator 如何获取当前所有动画名称呢?或者所有的AnimationClip呢? [ 68%]

...      * @return 动画片段。          */         public function getClip(playName:String):AnimationClip {             var index:int = _clipNames.indexOf(playName);             if (index !== -1) {                 return _clips[index];          ...

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

1996. 网络和格式-XML [ 68%]

...ueContainsError); trace("\n"); proessXML(xmlValue); } // 使用xml private function proessXML(source:String):void { try { var xml:XmlDom = Utils.parseXMLFromString(source); } catch (e:Error) { trace(e.massage); return; } printDirectChildren(xml); } // 打印直接子级 private function printDirectC...

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

1997. macOS Sierra 下 IDE 1.7.8 发布时点构建按钮提示有错误 [ 68%]

...如下: module.js:472 throw err; ^ Error: Cannot find module 'colors' at Function.Module._resolveFilename (module.js:470:15) at Function.Module._load (module.js:418:25) at Module.require (module.js:498:17) at require (internal/module.js:20:19) at Object.<anonymous> 请问怎么解决? 2017...

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

1998. Laya.loader加载BUG [ 68%]

...url为“”的时候,会执行this.onLoaded(null)这一步_ _proto.load=function(url,type,cache,group,ignoreCache,useWorkerLoader){         (cache===void 0)&& (cache=true);         (ignoreCache===void 0)&& (ignoreCache=false);         (useWorkerLoader===voi...

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

1999. LoginView.super(this);这样调用的父类的构造函数的方法,不能用吗 [ 68%]

...layaair中特别的语法规则在哪里统一可以找到 var LoginView = function () {     LoginView.super(this);     this.btnReg.on(Laya.Event.CLICK, null, function () {         console.log("on btReg event")     }); } 目前编辑的代码辅助,好像还是无法获得父类的...

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

2000. LayaFlash:求ByteArray.jas ->readMultiByte对gb2312的实现翻译 [ 68%]

...gb2312 unicode转换表然后,自己写算法查找和装换吧. public function readMultiByte (length:int, charSet:String):String          {             if(charSet=="UNICODE" || charSet=="unicode")             {                 return readUnicode(length);   ...

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