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

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

551. 射线检测-选取物体 [ 40%]

...tage.SCALE_FULL; Laya.stage.screenMode = Laya.Stage.SCREEN_NONE; Laya.Stat.show(); var scene: Laya.Scene = Laya.stage.addChild(new Laya.Scene()) as Laya.Scene; this._outHitAllInfo = new Array(); //初始化照相机 this.camera = scene.addChild(new Laya.Camera(0, 0.1, 100)) as Laya.Camera; this.came...

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

552. laya.ui.UIComponent [ 40%]

...> 组件构造函数 Public Properties Hide Inherited Public Properties Show Inherited Public Properties PropertyDefined By active : Boolean 获取自身是否激活。 Node activeInHierarchy : Boolean[read-only] 获取在场景中是否激活。 Node alpha : Number透明度,值为0-1,默...

来源: Laya2.0_api 发布时间: 20190513

553. texture2D的setPixel纹理rgba数据之后会随着窗口的缩放,渐变成黑色 [ 40%]

...tage.SCALE_FULL; Laya.stage.screenMode = Laya.Stage.SCREEN_NONE; Laya.Stat.show(); var scene = Laya.stage.addChild(new Laya.Scene3D()) as Laya.Scene3D; var camera = scene.addChild(new Laya.Camera(0, 0.1, 0)) as Laya.Camera; camera.transform.translate(new Laya.Vector3(0, 2, 20)); camera.transform.rot...

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

554. 音频-播放演示 [ 40%]

...Laya.stage.alignH = Stage.ALIGN_CENTER; Laya.stage.scaleMode = Stage.SCALE_SHOWALL; Laya.stage.bgColor = "#232628"; Stat.show(); this.setup(); } setup() { const Event = Laya.Event; var gap = 10; //创建一个Sprite充当音效播放按钮 let soundButton = this.createButton("播放音效"); soundBu...

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

555. 如何实现3d遮罩效果? [ 40%]

...leMode = Stage.SCALE_FULL; Laya.stage.screenMode = Stage.SCREEN_NONE; Stat.show(); loadUI(); var scene:Scene = Laya.stage.addChild(new Scene()) as Scene; var camera1:Camera = new Camera(0, 0.1, 100); scene.addChild(camera1); camera1.transform.translate(new Vector3(0, 0.8, 1.5)); camera1.transform.ro...

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

556. VR的demo有没有加载3D场景的啊,实在不知怎么加 [ 40%]

...CALE_FULL; Laya.stage.screenMode = Laya.Stage.SCREEN_HORIZONTAL; Laya.Stat.show(); //var scene = Laya.stage.addChild(new Laya.Scene.load("cj02/LastHopeScene.ls")); var scene = Laya.stage.addChild(new Laya.Scene()); var camera = scene.addChild(new Laya.VRCamera( 0.03,0, 0, 0.1, 100)); camera.transfor...

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

557. laya.ui.Component [ 40%]

...> 组件构造函数 Public Properties Hide Inherited Public Properties Show Inherited Public Properties PropertyDefined By alpha : Number透明度,值为0-1,默认值为1,表示不透明。更改alpha值会影响drawcall。Sprite  anchorX : NumberX轴锚点,值为0-1Component  anch...

来源: laya_api 发布时间: 20170929

558. laya.device.media.Video [ 40%]

.../Web/HTML/Element/video Public Properties Hide Inherited Public Properties Show Inherited Public Properties PropertyDefined By alpha : Number透明度,值为0-1,默认值为1,表示不透明。更改alpha值会影响drawcall。Sprite autoSize : Boolean = false 指定是否自动计算宽高...

来源: laya_api 发布时间: 20170929

559. CPU优化方式(TypeScript-2D进阶篇(TS)-性能优化) [ 39%]

...```typescript Laya.init(this.Browser.width,this.Browser.height); Laya.Stat.show(); Laya.stage.frameRate=Laya.Stage.FRAME_SLOW; var sp=new Laya.Sprite(); sp.graphics.drawCircle(0,0,20,"#990000"); Laya.stage.addChild(sp); Laya.stage.on(Laya.Event.MOUSE_MOVE,this,function() { sp.pos(Laya.stage.mouseX,L...

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

560. 在 ios xcode接入微信开放平台分享sdk编译出错 [ 39%]

...: error: linker command failed with exit code 1 (use -v to see invocation) Showing first 200 warnings only 2018-01-22 0 0 分享 微博 QZONE 微信 bepa_wang 赞同来自: 现在出错是因为我在OTHER_LDFLAGS后面按照微信指南添加 -all_load参数 ,去掉这个参数编译正常,但...

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