大约有 1,625 项符合查询结果, 库内数据总量为 30,789 项。 (搜索耗时: 0.0048 秒)
Laya_社区(663) Laya3.0_api(364) Laya2.0_api(194) laya_api(158) Laya2.0_文档(80) Laya_示例(58) Laya3.0_文档(54) Laya2.0_示例(54)
...来之后atlas图集图片加载不出来,怎么办,好像是进入n="string"==typeof n?JSON.parse(n):n,这个n变成“”了,但是加载有路径啊 2020-04-07 0 1 分享 微博 QZONE 微信 熊猫大侠 赞同来自: 头条有时候 加载不到资源 有遇到吗? 2020-04-17 0 1 分...
来源: Laya_社区 发布时间: 20190910
...eProxy.java中的getExpansionMainPath这个方法,改成如下: public String getExpansionMainPath() { return "/storage/emulated/0/com.layabox.conch5/resource.zip"; } 这样应该是能够对应上的,因为我看读取logo.png的时候已经到这个zip文件中查找了,但是ind...
来源: Laya_社区 发布时间: 20180327
...。。。。 Laya.LocalStorage.setItem("ceshiValue","100"); var testReadV:string = Laya.LocalStorage.getItem("ceshiValue"); console.log("testReadV = " + testReadV); 如此行代码,测试下来testReadV==undefined 这里我看了适配层,不知是怎么回事会导致读取不到或者读取时...
来源: Laya_社区 发布时间: 20181030
...eGrid = '0,10,0,10'; var price = this.getFishVal('10001', 3); var length = String(price).length; var w = length * 16 + 15 + 40; fish.scoreItem.width = w; fish.scoreItem.x = fish.getBox().x - fish.scoreItem.width/2; fish.scoreItem.y = fish.getBox().y - fish.scoreItem.height; this.scoreBox.addChild(fi...
来源: Laya_社区 发布时间: 20180516
...ss PublicSpaceItem extends Laya.Box { public static BTN_ENTRER_CLICK:string = "BtnEnterClick"; public _publicSpaceData:datasheet.PublicSpaceData; private bg:Laya.Image; private btnEnter:Laya.Button; constructor() { super(); this.initUI(); } private initU...
来源: Laya_社区 发布时间: 20170923
... (图) ####6. 在代码里给 Tree 对象赋值 ```javascript var xmlString:string=""+ ""+ ""+ ""+ ""+ ""+ ""+ ""+ ""+ ""+ ""+ ""+ ""+ ""+ ""+ ""; //解析xml字符。 var xml:any = domParser.parseFromString(xmlString, "text/xml"); //设置 m_tree 的数据源。 m_tree.xml =xml; ``` ####...
来源: Laya2.0_文档 发布时间: 20210714
... * @return 创建的节点对象的引用。 */ static createElement(type: string): any { Browser.__init__(); return Browser._document.createElement(type); } /** * 返回 Document 对象中拥有指定 id 的第一个对象的引用。 * @param type 节点id。 * @return 节点对象。 */ static ge...
来源: Laya3.0_文档 发布时间: 20241014
...eName * @param root * @param Sprite3D */ public static link2Node(nodeName: string, root: Laya.Sprite3D, Sprite3D: Laya.Sprite3D) { //递归调用 let index = 0; let child: Laya.Sprite3D = null; while (true) { child = root.getChildAt(index) as Laya.Sprite3D; if (!child) break; if (child.name == nodeN...
来源: Laya_社区 发布时间: 20190918
...Object child, Vector3 position, Quaternion rotation, Vector3 scale, System.String& goPath)” 附件是资源(第一次上传的资源缺shader,已换成默认的。又上传了一次,把无效脚本去掉了) 补充: Unity 5.5.2p3 LayaAirUnityPlugin 1.7.13 Laya IDE 1.7.13beta ...
来源: Laya_社区 发布时间: 20171129
...器窗口 /// </summary> public class MyWindow : EditorWindow { string myString = "Hello World !"; // 文本内容 bool groupEnabled; // 选项组是否可用 bool myBool = true; // 复选框状态 float myFloat = 2.33f; // 滑动条的值 [MenuItem("Extend Windows/MyWindow")] pu...
来源: Laya_社区 发布时间: 20171102