大约有 448 项符合查询结果, 库内数据总量为 30,778 项。 (搜索耗时: 0.0074 秒)
Laya_社区(349) Laya2.0_文档(29) Laya3.0_文档(16) laya_api(15) Laya3.0_api(15) Laya2.0_api(14) Laya2.0_示例(6) Laya_示例(4)
...Blur事件监听不到 Animation如何加点击事件 关于遍历产生的sprite的点击事件,急,大神帮看哈 3d物理不能触发onCollisionEnter事件 为什么给Sprite容器添加点击事件没反应 遮罩点击事件 图片添加点击事件 有的不生效 event自定义事件的...
来源: Laya_社区 发布时间: 20171116
...容相关的链接 提交 2 个回复 pal 赞同来自: Cyril Sha 对你的sprite添加事件监听,监听 碰撞检测 事件 参看 Laya.Event.TRIGGER_ENTER等 2018-11-26 1 0 分享 微博 QZONE 微信 186*****590 赞同来自: 同求,现在最想知道的是相关的事件如何触发或检...
来源: Laya_社区 发布时间: 20181120
...xWidth, ConstValue.boxHeight); var box = this.parent.addChild(new Laya.MeshSprite3D(mesh)); box.transform.rotate(new Laya.Vector3(0, 45, 0), false, false); box.transform.position = new Laya.Vector3(ConstValue.boxOutScreen,ConstValue.boxHeight/2,0); var material = new Laya.StandardMaterial(); materia...
来源: Laya_社区 发布时间: 20180113
...per(this); this.angle = 0; Laya.timer.loop(200,this,this.loadProgress) var Sprite = Laya.Sprite; this.box = new Sprite(); this.box.cacheAs = "bitmap"; this.box.pos(0,0); this.say.addChild(this.box); this.draw = new Sprite(); this.box.addChild(this.draw); this.draw.graphics.drawPie(this.say.width/2, ...
来源: Laya_社区 发布时间: 20170807
sprite3d下的meshsprite3d碰撞无效 我在max里做了两个物体,一个底座,一个风扇的扇叶,没有动画,先不要动画,类似图1 , 然后导出fbx,,然后导入unity,创建预设,然后,预设的结构如图2.,叫box01的物体就是扇叶,然后我给这个b...
来源: Laya_社区 发布时间: 20191016
...2d物理引擎文档都是IDE篇的。 class CollisionBoll extends Laya.Sprite { private _boll1:Laya.Sprite; constructor() { super(); //物理模块 this._boll1 = new Laya.Sprite(); this.addChild(this._boll1); this._boll1.x = 20; this._boll1.loadImage('comp/btn_close.png'); let box:laya.physics.B...
来源: Laya_社区 发布时间: 20190428
...用于创建简单网格 注意:这里还不是最终场景中看到的 Sprite3D。 用 createBox 来举例,看下API是如何创建网格的: /** * 创建Box网格。 * @param long 半径 * @param height 垂直层数 * @param width 水平层数 * @return */ static createBox(long: number = 1, ...
来源: Laya3.0_文档 发布时间: 20241014
...ed All Inherited Externals Only exported Menu Globals "laya/d3/core/render/Sprite3DRenderDeclaration" Sprite3DRenderDeclaration Class Sprite3DRenderDeclaration Hierarchy Sprite3DRenderDeclaration Index Properties SHADERDEFINE_SPECCUBE_BOX_PROJECTION SHADERDEFINE_VOLUMETRICGI Properties Static SHADER...
来源: Laya3.0_api 发布时间: 20231115
... 我试着用代码实现物理效果class CollisionBoll extends Laya.Sprite { private _boll1:Laya.Sprite; constructor() { super(); //物理模块 this._boll1 = new Laya.Sprite(); this.addChild(this._boll1); this._boll1.x = 20; this._boll1.loadImage('comp/btn_close.png'); let box:laya.physics.Box...
来源: Laya_社区 发布时间: 20190428
最新版本绘制100x100个sprite ios不能显示 /* 游戏地图 */ function GameMap(){ this.MapRowNum = 100; this.MapColNum = 100; GameMap.super(this); this.init(); } Laya.class(GameMap, "GameMap", laya.display.Sprite); var _proto = GameMap.prototype; _proto.init = function(){ var boxSp = new la...
来源: Laya_社区 发布时间: 20161008