大约有 231 项符合查询结果, 库内数据总量为 30,778 项。 (搜索耗时: 0.0051 秒)
...图1-6所示: (动图1-6) 注:变量n还可以是从.json文件中获取的文本,开发者可以自己写一个.json文件,然后在脚本中进行加载,最后利用setVar方法赋值给变量n。 在游戏中比较常用的情况就是,如图1-7所示,当每个玩家进入游戏...
来源: Laya3.0_文档 发布时间: 20241014
... Laya.stage.on(Laya.Event.MOUSE_UP, this, function() { this.index = 0; //获取每次生成路径 this.getGridIndex(this.path[this.curPathIndex % this.pointCount].x, this.path[this.curPathIndex++ % this.pointCount].z, this.startPoint); this.getGridIndex(this.path[this.nextPathIndex % this.pointCount...
来源: Laya2.0_文档 发布时间: 20210714
... Laya.stage.on(Laya.Event.MOUSE_UP, this, function() { this.index = 0; //获取每次生成路径 this.getGridIndex(this.path[this.curPathIndex % this.pointCount].x, this.path[this.curPathIndex++ % this.pointCount].z, this.startPoint); this.getGridIndex(this.path[this.nextPathIndex % this.pointCount...
来源: Laya2.0_文档 发布时间: 20210715
...抬起 Laya.stage.on(Event.MOUSE_UP, this, function():void { index = 0; //获取每次生成路径 getGridIndex(path[curPathIndex % pointCount].x, path[curPathIndex++ % pointCount].z, startPoint); getGridIndex(path[nextPathIndex % pointCount].x,path[nextPathIndex++ % pointCount].z, endPoint); //开...
来源: Laya2.0_文档 发布时间: 20210714
...且不会随着绘制内容的变化而变化,如果想根据绘制内容获取宽高,可以设置本属性为true,或者通过getBounds方法获取。设置为true,对性能有一定影响。 Sprite bgColor : String舞台的背景颜色,默认为黑色,null为透明。Stage blendMod...
来源: laya_api 发布时间: 20170929
...获得场景内的元素 怎么获得laya.input输入框里面的值 如何获取图片每个像素点的RGB? radioGroup设置labels后,每个radio的icon皮肤无法显示了 如何查看每个Sprite各自引发了多少次DrawCall 看官方2.0的shader例子,模型视图投影矩阵定义的...
来源: Laya_社区 发布时间: 20180113
...,当前像素根据设定条件决定是否输出颜色 Tiling Offset:获取纹理平铺和偏移 Material Render Mode:设置渲染模式 Opaque:默认设置,适用于没有透明区域的普通实体对象。 Cutout:允许创建在不透明和透明区域之间具有硬边的透...
来源: Laya3.0_文档 发布时间: 20241014
...PUNCHTHROUGH_ALPHA1_ETC2、COMPRESSED_SRGB8_PUNCHTHROUGH_ALPHA1_ETC2 可以获取到WEBGL_compressed_texture_pvrtc对象,但获取不到pvr类型的值(IOS15以上不再支持) 不支持 抖音小游戏Android端 RGBA_ASTC4x4、RGBA_ASTC6x6、RGBA_ASTC8x8、RGBA_ASTC10x10、RGBA_ASTC12x12、SRGB8_...
来源: Laya3.0_文档 发布时间: 20241109
...,这里其实也可以直接放到laya3d场景中,根据可行走区域获取高度数据,这个可参考官网的示例http://layaair.ldc.layabox.com ... ample,这个方法不推荐,因为初始化所有高度数据时间过长,如果真实游戏,体验很差。这里,由于某些...
来源: Laya_社区 发布时间: 20170505
...且不会随着绘制内容的变化而变化,如果想根据绘制内容获取宽高,可以设置本属性为true。示例代码如下: let sprite = new Laya.Sprite(); // 添加到舞台 Laya.stage.addChild(sprite); sprite.autoSize = true; 3.4.4 缓存为静态图像 示例代码如下: let...
来源: Laya3.0_文档 发布时间: 20241014