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

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

1811. graphics使用matrix的异常情况 [ 71%]

...情况 Laya.loader.load("../../res/apes/monkey2.png", Handler.create(this, function() { var t = Laya.loader.getRes("../../res/apes/monkey2.png"); var ape = new Sprite(); ape.graphics.drawTexture(t, 0, 0); ape.graphics.scale(1.01, 1) Laya.stage.addChild(ape); ape.pos(200, 0); })); 上面这段代码...

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

1812. 如何给 list 子元素里面的不同子元素添加点击事件 [ 71%]

...m里面的特定组件,然后加事件这里就不用说了 方法一: function renderHandler(item:box,index:int):void { var button:Button = item.getChildByName("buton") as Button;(名字是你在ide里自己设定的) button.on(事件注册) }   方法二: list组件.itemRender  = UI页面 ...

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

1813. 为啥静态变量name不能定义 [ 71%]

...6): error TS2699: Static property 'name' conflicts with built-in property 'Function.name' of constructor function 'GFHomePageView'. 代码如下: export class GFHomePageView extends ui.GFGameHomeUI { static name = "homepageview"; static moreBgNodeName = "morebgnode"; static diamondList: any; stati...

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

1814. 材质-BlinnPhong-漫反射贴图 [ 71%]

...ng"); earth2.meshRender.material = material; Laya.timer.frameLoop(1, this, function () { earth1.transform.rotate(this.rotation, false); earth2.transform.rotate(this.rotation, false); });class BlinnPhong_DiffuseMap { private rotation: Laya.Vector3 = new Laya.Vector3(0, 0.01, 0); constructor() { Laya3...

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

1815. LayaNative原生调用Laya问题 [ 71%]

... uniqueId = DeviceUtils.getUniqueId(); ConchJNI.RunJS("com.gamepark.casino.functions.loading.mediator.LoadingMediator.onGetUniqueIdCompleteHandler(" + uniqueId + ")"); 在Laya中声明如下: public static function onGetUniqueIdCompleteHandler($uniqueId:String):void { trace("uniqueId : " + uniqueI...

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

1816. Unicode与ascii互转对应表 [ 71%]

...一下Unicode与ascii互转对应表再补充一个writeMultiByte public function writeMultiByte(value:String,charSet:String):void         {             value = value + "";             if(charSet=="UNICODE" || charSet=="unicode")             {              ...

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

1817. 微信小游戏发布,刚踩了的一个坑,来这里分享一下也给自己记录下 [ 71%]

...微信开发者工具里会报错(intermediate value)(...) is not a function  向下面这种形式的封装,可以前后都加个分号 ;(function(){    })();   2018-05-02 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请: 与内容相关的链接...

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

1818. 微信小游戏发布,刚踩了的一个坑,来这里分享一下也给自己记录下 [ 71%]

...微信开发者工具里会报错(intermediate value)(...) is not a function  向下面这种形式的封装,可以前后都加个分号 ;(function(){    })();   2018-05-02 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请: 与内容相关的链接...

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

1819. 按钮交互实现 [ 70%]

...(); this.SceneMajor.addChild(gameOver); gameOver.btRetry.on('click', this, function(){ window.location.reload(); });当然因为按钮都是小元素, 默认情况下会被打包成atlas文件 需要在代码执行前先下载完毕这个图片集 Laya.loader.create("res/atlas/simbols.atlas",Laya.Ha...

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

1820. 设置fontSize的时候没做类型转换 [ 70%]

设置fontSize的时候没做类型转换 __getset(0,__proto,'fontSize',function(){ return this._fontSize; },function(value){ if (this._fontSize !=value){ this._fontSize=value; this.isChanged=true; } }); 如果设置fontSize="30",没有做类型转换,后面所有通过fontSize参与的加法...

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