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

大约有 1,159 项符合查询结果, 库内数据总量为 30,779 项。 (搜索耗时: 0.0054 秒)

1021. SCALE_FIXED_WIDTH适配屏幕的问题 [ 49%]

...n);             Laya.loader.load("res/atlas/com/loading.atlas", Laya.Handler.create(this, this.loadGame));         }         private loadGame(): void {             var resArray = [                 { url: "res/atlas/lobby/create_room.atlas", type: Laya.Loader.ATLAS },   ...

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

1022. LAYABOX游戏实时语音之APP版本 [ 49%]

...t android.content.Intent; import android.os.Environment; import android.os.Handler; import android.os.Looper; import android.os.Message; import android.util.Log; import org.json.JSONException; import org.json.JSONObject; import java.util.ArrayList; import demo.MainActivity; import layaair.game.brows...

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

1023. list里的tweenTo(index)方法 为什么按下鼠标快速向某方向滑动的情况下想要显示的index单元格位置会有偏移,怎么控制单元格的位置 [ 49%]

...单元格的位置 this._list.tweenTo(this._list.page, 500, isFresh ? Laya.Handler.create(this, this.refresh) : null);核心就这句,this._list.page在滑动的距离达到某个值时,就会调用,翻到下一页,左右翻页按钮去调用没问题,位置都是正确的,只有在按...

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

1024. QQ小游戏开发者工具环境下,已经被本地缓存的图片的加载回调不触发的问题 [ 49%]

...刷新过后,问题出现了,Laya.loader.load("res/atlas/comp.json", Handler.create(this, onLoaded), null, Loader.ATLAS);这里的onLoaded函数不会被触发,导致后续界面不显示。如果点QQ小程序开发者工具里的清理缓存,界面又再次可以显示,再刷新的话,...

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

1025. 二进制图片(TypeScript-2D进阶篇(TS)-游戏加载策略) [ 49%]

...r = new Laya.HttpRequest(); xhr.once(Laya.Event.COMPLETE,this,this.completeHandler); xhr.once(Laya.Event.ERROR,this,this.errorHandler); xhr.send("res/a.png","","get","arraybuffer"); } private completeHandler(data:Object):void{ //加载完成返回的data是arraybuffer; //......这里处理我们...

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

1026. 微信小游戏加载 BitmapFont 问题 [ 49%]

...加载这个文件的时候 Laya.loader.load([{ url: "button_font.fnt" }], Handler.create(null, onLoaded)); 图片里的 type="font",最终执行的 tempData=data.data; tempData 直接就是button_font.fnt里面内容的字符串类型MiniLoader.onReadNativeCallBack=function(encoding,url,type,cach...

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

1027. CheckBox属性详解(ActionScript-IDE篇(AS3)-IDE组件属性详解) [ 49%]

...代码:** ```java package { import laya.ui.CheckBox; import laya.utils.Handler; import laya.webgl.WebGL; import ui.ComponentDemoUI; public class ComponentDemo { //资源路径 private var skin1:String="res/component/check.png"; private var skin2:String ="res/component/check_2.png"; public function...

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

1028. 二进制图片(ActionScript-2D进阶篇(AS3)-游戏加载策略) [ 49%]

... xhr:HttpRequest = new HttpRequest(); xhr.once(Event.COMPLETE,this,completeHandler); xhr.once(Event.ERROR,this,errorHandler); xhr.send("res/monkey2.png","","get","arraybuffer"); } private function completeHandler(data:Object):void { //加载完成返回的data是arraybuffer; //.......这里处理...

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

1029. 微信小游戏 wxlocal怎么用 [ 49%]

....loader.load([{ url: 'wxlocal/load.json', type: Laya.Loader.ATLAS }], Laya.Handler.create(this, this.loadComplete)); 我就是这么调用的,但是load.json这个文件还是去远程拉了。该怎么解? Laya_Aaron • 2018-03-27 11:23 @seacole:仔细看文字描述,写的很清楚 joshua05...

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

1030. ShaderPass介绍(ActionScript-3D基础(AS3)-LayaAir3D之shader) [ 49%]

...men/skinModel/LayaMonkey/Assets/LayaMonkey/LayaMonkey-LayaMonkey.lm", Laya.Handler.create(this, function(mesh) { var layaMonkey = scene.addChild(new Laya.MeshSprite3D(mesh)); layaMonkey.transform.localScale = new Laya.Vector3(0.3, 0.3, 0.3); layaMonkey.transform.rotation = new Laya.Quaternion(0.7071...

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