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

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

411. BlinnPhong材质详解(ActionScript-3D基础(AS3)-模型材质详解) [ 66%]

...al(); //漫反射贴图 Texture2D.load("res/threeDimen/texture/earth.png", Handler.create(this, function(texture:Texture2D):void { //设置材质纹理 material.albedoTexture = texture; })); //material.albedoTexture earth2.meshRenderer.material = material; ``` ![](img/4.png)(图4) ##### 法线贴图...

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

412. Laya.Tween.to 用这个做缓动动效, 变动scale值有问题, [ 66%]

....tw1 = Laya.Tween.to(this.load_1, { scaleX:0.01 }, 250, Laya.Ease.quadOut, Handler.create(this, this.tw1Complete1)); 只要是设置scale值最终变为0就有问题,, var style=this.getStyle(); 这个获取的style是空的,,这个问题不是必现的,,,,, 附件 : --> 2018-03-15...

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

413. 自定义组件 [ 66%]

...件)编程模式 为什么官网例子里,UI组件的事件都用new Handler,而资源加载用Handler.create() 问题状态 最新活动: 2018-01-30 12:15 浏览: 1114 关注: 2 人 helegame • 2018-01-30 12:44 我现在需要在 修改skin的时候 做某种操作 怎么做? qian • 2018...

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

414. 微信开放数据域(TypeScript-小游戏适配文档-微信小游戏) [ 66%]

...图集 Laya.loader.load(["json/reward.json","res/atlas/test.atlas"],Laya.Handler.create(null,function(){ //加载完成 //使用接口将图集透传到子域 Laya.MiniAdpter.sendAtlasToOpenDataContext("res/atlas/test.atlas"); //使用接口将json投促函到子域 Laya.MiniAdpter.sendJsonDataToDat...

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

415. 是不BMFONT不支持多类型资源加载方式? [ 66%]

...es/fontWord.fnt", type: Laya.Loader.FONT }); Laya.loader.load(assets, Laya.Handler.create(this, onAssetsLoaded)); function onAssetsLoaded(){ var bitmapFont = new Laya.BitmapFont(); bitmapFont.loadFont("res/fontWord.fnt"); //必出错 }     只要使用 Laya.Loader.FONT 必出错  难道是要改...

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

416. ProgressBar属性详解(TypeScript-IDE篇(TS)-IDE组件属性详解) [ 66%]

...{ import Stage = Laya.Stage; import ProgressBar = Laya.ProgressBar; import Handler = Laya.Handler; import WebGL = Laya.WebGL; export class UI_ProgressBar { private progressBar: ProgressBar; constructor() { // 不支持WebGL时自动切换至Canvas Laya.init(800, 600, WebGL); Laya.stage.alignV = Stag...

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

417. 微信小游戏开放域(ActionScript-小游戏适配文档-微信小游戏) [ 66%]

...json和图集 Laya.loader.load(["json/reward.json","res/atlas/test.atlas"],Handler.create(this,function(){ //加载完成 //使用接口将图集透传到子域 MiniAdpter.sendAtlasToOpenDataContext("res/atlas/test.atlas"); //使用接口将json投促函到子域 MiniAdpter.sendJsonDataToDataContext...

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

418. xhr的on和once什么区别,官网例子 [ 66%]

...meout = 10000;//设置超时时间; xhr.once(Event.COMPLETE,this,completeHandler); xhr.once(Event.ERROR,this,errorHandler); xhr.on(Event.PROGRESS,this,processHandler); 2017-10-17 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请: 与内容相关的链接 提...

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

419. layaAir支持xml加载和使用吗 [ 66%]

...同来自: 代码如下package { import laya.net.Loader; import laya.utils.Handler; public class XmlDemo { public function XmlDemo() { Laya.init(550,400); Laya.loader.load("data.xml",Handler.create(this,onLoaded),null,Loader.XML); } private function onLoaded():void { // TODO Auto Generated method st...

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

420. 音频解码一直遇到这个问题呢,不知道什么原因 [ 66%]

...mo吧。 smile • 2018-05-31 17:36 @Laya_Aaron: Laya.loader.load(assetArr,Handler.create(this,this.gameStart),Handler.create(this,onProgress,null,false)); private var assetArr:Array=[ {url:"sound/bgMusic.mp3", type:Loader.SOUND}, {url:"sound/button.mp3", type:Loader.SOUND}, {url...

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