大约有 197 项符合查询结果, 库内数据总量为 30,784 项。 (搜索耗时: 0.0040 秒)
...触发(子弹进入物品时) * 此处当触发器进入时将脚本的owner(所属节点)第一个实例材质的漫反射颜色改为绿色 * 注:如相对移动速度过快,可能直接越过 */ onTriggerEnter(other) { this.owner.meshRenderer.sharedMaterial.albedoColor = new Laya.Vect...
来源: Laya2.0_文档 发布时间: 20210715
动态添加addComponent(Laya.RigidBody)的问题 1.动态添加 this.owner.addComponent(Laya.RigidBody)后; 在调用 this.owner.removeSelf()后会抛错 : laya.core.js:13190 Uncaught 无法实例class RigidBody extends Laya.Component {... 2.但如果将Laya.RigidBody组件直接挂在预制...
来源: Laya_社区 发布时间: 20200119
...触发(子弹进入物品时) * 此处当触发器进入时将脚本的owner(所属节点)第一个实例材质的漫反射颜色改为绿色 * 注:如相对移动速度过快,可能直接越过 */ public onTriggerEnter(other:Laya.PhysicsComponent):void { ((this.owner as Laya.MeshSprite3...
来源: Laya2.0_文档 发布时间: 20210715
...ublic function CameraMoveScript() { } override public function _initialize(owner:Sprite3D):void { super._initialize(owner); Laya.stage.on(Event.MOUSE_DOWN, this, mouseDown); Laya.stage.on(Event.MOUSE_UP, this, mouseUp); Laya.stage.on(Event.MOUSE_OUT, this, mouseOut); var camera:BaseCamera = owner.sc...
来源: Laya_社区 发布时间: 20170218
通过laya.utils.ClassUtils.createByJson创建的附加脚本不能触发owner 编辑器版本号: 1.7.19.1beta。 新建的UI F12导出后,自动生成的代码是通过this.CreateView(XXX.uiView)生成相应变量,附加脚本能正常触发owner。 但如果通过把某个UI里的一部分...
来源: Laya_社区 发布时间: 20180607
...虎兔龙蛇马羊猴鸡狗猪年快乐"; testFontClip.spaceY = 10; this.owner.addChild(clipnum); this.owner.addChild(fontClip); this.owner.addChild(testFontClip); this.owner.addChild(testClipNum); this.owner.addChild(clipnum1); } } 通常FontClip已经可以满足开发者的基本需求。如果...
来源: Laya3.0_文档 发布时间: 20241014
...放完了没有侦听到COMPLETE事件。 肖刚 • 2020-06-18 00:54 this.owner.ani.on(Laya.Event.COMPLETE,this.onSplashComplete); this.owner.ani.play(0,false); this.owner.stage.on(Laya.Event.COMPLETE,this.onSplashComplete); 这两个侦听器都没有侦听到COMPLETE事件的发生。 FullyI • ...
来源: Laya_社区 发布时间: 20181011
...te (laya.core.js:21262) 相关逻辑代码如下: moveSuccess(){ this.owner.removeSelf(); Laya.Pool.recover("flyCat", this.owner) } onTriggerEnter(other: any, self: any, contact: any): void { if (other.label === "cloud") { Laya.Tween.clearAll(this._sp) let effect: Laya.Animation = Laya.Pool.get...
来源: Laya_社区 发布时间: 20191019
...没问题 模型x转了-90度 console.log(angle, " lastangel ", this.owner.transform.rotationEuler.y) this.lastAngle = this.owner.transform.rotationEuler.y; this.owner.transform.rotate(new Vector3(0, angle - this.lastAngle, 0), false, false) 打印出来看到y方向角度一直在变。 ...
来源: Laya_社区 发布时间: 20190716
...ZONE 微信 biubiubiu 赞同来自: 以下是测试代码 this.owner.scene.scale(1.25, 1.25) //使用缩放后 图片拼合会多一条线 2.0中没有此问题 Laya.loader.load("http://103.219.177.59:63344/%2 ... ot%3B, Laya.Loader.TEXTURE2D).then((texture: Laya.Texture2D) =...
来源: Laya_社区 发布时间: 20230316