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

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

61. [LayaAir3][3.x]shader蓝图看起来缺少一些基础功能 [ 94%]

[LayaAir3][3.x]shader蓝图看起来缺少一些基础功能 看起来: 1.(X没有类似color这样的类型,虽然和vec3/vec4基本上没啥区别,但是vec应用起来很困难,也不好区分是否应该预览...)[经过寻找,发现在参数里可以创建color] 2.好像缺少noise等程序化...

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

62. laya.display.cmd.DrawPathCmd [ 94%]

...| Frames No Frames DrawPathCmdProperties | Methods | Constants Packagelaya.display.cmdClasspublic class DrawPathCmdInheritanceDrawPathCmd Object 根据路径绘制矢量图形 Public Properties PropertyDefined By  brush : Object (可选)刷子定义,支持以下设置{fillStyle:"#FF0000...

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

63. laya.physics.ChainCollider [ 94%]

... | Index | Frames No Frames ChainColliderProperties | Methods Packagelaya.physicsClasspublic class ChainColliderInheritanceChainCollider ColliderBase Component Object 2D线形碰撞体 Public Properties Hide Inherited Public Properties Show Inherited Public Properties PropertyDefined By dens...

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

64. 其他引擎的Demo-Example_04 [ 94%]

Layabox是免费开源的HTML5引擎解决方案,产品家族中包括LayaAir引擎、LayaFlash引擎、LayaOpen开放平台、LayaMarket SDK、LayaStore嵌入式游戏商店、LayaPlayer运行器。核心引擎LayaAir性能全球领先,支持2D、3D、VR开发,支持AS3、JavaScript、TypeScr...

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

65. 物理引擎显示旋转问题 [ 94%]

...的例子是这样的, http://brm.io/matter-js/demo/#chains   复制到Laya就变成这样了   LayaUISample.js代码:   (function () {     var Sprite = Laya.Sprite;     var Stage = Laya.Stage;     var Browser = Laya.Browser;     var WebGL = Laya.WebGL;     var Render = L...

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

66. TiledMap.moveViewPort(x,y) 为嘛要传入负数 [ 94%]

...       tmapsp.zOrder=1;         this.tMap.changeViewPort(-((Laya.stage.width-this.tMap.width)/2),-((Laya.stage.height-this.tMap.height)/2),this.tMap.width,this.tMap.height);         this.addChild(this.tMap.mapSprite()); 请问这是什么意思啊 2020-04-20 添加评论 免...

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

67. laya.utils.HitArea [ 94%]

...lasses | Index | Frames No Frames HitAreaProperties | Methods Packagelaya.utilsClasspublic class HitAreaInheritanceHitArea Object 鼠标点击区域,可以设置绘制一系列矢量图作为点击区域和非点击区域(目前只支持圆形,矩形,多边形) Public Properties Pro...

来源: laya_api 发布时间: 20170929

68. 请大家帮助优化一下这个抛物线的代码 [ 94%]

...指正 https://my.oschina.net/u/659068/blog/1564002  class Ball extends Laya.Sprite{ private static cached:boolean = false; private body:Laya.Sprite; constructor(){ super(); this.init(); } public init():void{ if(!Ball.cached){ Ball.cached = true; this.body = new Laya.Sprite(); this.body.loadImage(...

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

69. laya 2.x BUG ?? 编译后 SyntaxError: for-in loop head declarations may not have [ 94%]

laya 2.x BUG ?? 编译后 SyntaxError: for-in loop head declarations may not have 这个和标准有关   https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Errors/Invalid_for-in_initializer   我代码里没写错 代码里 是这个形式   for(var x in list){ xx } 但是编译...

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

70. 微信小游戏iPhone X 等解决方案 [ 94%]

...  1.代码层 //获取真机分辨率 x 2,实际尺寸 var SCREEN_WIDTH = Laya.Browser.clientWidth*2; var SCREEN_HEIGHT = Laya.Browser.clientHeight*2; //引擎自带适配方案 Laya.init(SCREEN_WIDTH,SCREEN_HEIGHT, Laya.WebGL); Laya.stage.scaleMode =Laya.stage.SCALE_FIXED_WIDTH; Laya.stage.alignV ...

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