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

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

1941. 区块地图-PerspectiveWall [ 69%]

...lic class TiledMap_PerspectiveWall { private var tiledMap:TiledMap; public function TiledMap_PerspectiveWall() { // 不支持WebGL时自动切换至Canvas Laya.init(700, 500, WebGL); Laya.stage.alignV = Stage.ALIGN_MIDDLE; Laya.stage.alignH = Stage.ALIGN_CENTER; Laya.stage.bgColor = "#232628"; creat...

来源: Laya2.0_示例 发布时间: 20241128

1942. 自定义shader-边缘光照shader [ 69%]

...en/skinModel/dude/dude.lh")); dude.once(Laya.Event.HIERARCHY_LOADED, this, function () { var customMaterial1 = new CustomMaterial(); customMaterial1.setDiffuseTexture(Laya.Texture2D.load("../../res/threeDimen/skinModel/dude/Assets/dude/head.png")); customMaterial1.setMarginalColor(new Laya.Vector3(1...

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

1943. 鼠标 MOUSE_DOWN Event 回来的信息不符合 [ 69%]

...什么回来的是 “mouseout” 而不是 "mousedown" ? 代码如下: function createSprite() { picture = new Sprite(); picture.loadImage(picturePath); Laya.stage.addChild(picture); var texture = Laya.loader.getRes(picturePath); picturePath.pivot(texture.width / 2, texture.height / 2); picture.x...

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

1944. 游戏遇到个bug, [ 69%]

...Tween.to(spring2,{scaleX:1.0,scaleY:1.0},500,null,Laya.Handler.create(this,function(){             if(!spring2.destroyed){ // 添加判断后就不出bug了                 Laya.Tween.to(spring2,{alpha:0},300,null,Laya.Handler.create(this,function(){                 if(callback...

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

1945. dialog第一次可以正常调出,第二次无法正常popup出来 [ 69%]

...无法生效 比如 无法定位到LayaSample.js中的这个函数     function LoadResComplete() {         var loginView = new LoginView();         loginView.init();         Laya.stage.addChild(loginView);     } LoginView.js中的init函数     LoginView.prototype.init...

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

1946. laya.display.Text_API3.0 [ 69%]

...ple package { import laya.display.Text; public class Text_Example { public function Text_Example() { Laya.init(640, 800);//设置游戏画布宽高、渲染模式。 Laya.stage.bgColor = "#efefef";//设置画布的背景颜色。 onInit(); } private function onInit():void { var text:Text = new Text(...

来源: Laya3.0_api 发布时间: 20231115

1947. 节点的visible在初始化的时候生效,但是在Event的方法里面不生效 为什么呢? [ 69%]

...= trainItem; 后续有一个事件 option.on(Laya.Event.MOUSE_DOWN, null, function(e){   option.startDrag({}, false, 1) }) option.on(Laya.Event.MOUSE_MOVE, null, function(){     questionNode.answers.visible = true; //这个不生效 }); 2017-09-22 0 0 分享 微博 QZONE 微信 为什么被折...

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

1948. laya.d3.core.scene.Scene3D_API3.0 [ 69%]

...s type: string Optional data: any Returns void callLater callLater(method: Function, args?: any[]): void Inherited from Node.callLater Defined in laya/display/Node.ts:621 延迟运行指定的函数。 在控件被显示在屏幕之前调用,一般用于延迟计算数据。 see #runCallLater() Pa...

来源: Laya3.0_api 发布时间: 20231115

1949. 3D模型无法用Tween类吗 [ 69%]

...en.to(box.potOld,{     x:1     ,y:2     ,update:new Laya.Handler(box,function(){         this.transform.position = this.potOld;     }) }, ConstValue.animationTime,Laya.Ease.elasticOut,Laya.Handler.create(this, function(){     console.log("complete"); }),ConstValue.animationDelay);   ...

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

1950. WebGLContext2D arcTo方法如果设置了setPathId 无法绘制 [ 69%]

...arcTo方法如果设置了setPathId 无法绘制。 源码 override public function arcTo(x1:Number, y1:Number, x2:Number, y2:Number, r:Number):void {     if (mId != -1) {         var tShape:IShape = VectorGraphManager.getInstance().shapeDic[this.mId];         if (mHaveKey ) {       ...

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