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

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

911. 脚本组件继承于 Laya.Script。 其中的_update方法,多长时间会调用一次? 可以设置调用时间吗? [ 70%]

...数。 * @param coverBefore 是否覆盖之前的延迟执行,默认为 true 。 */ once(delay: number, caller: any, method: Function, args?: Array<any>, coverBefore?: boolean): void; /** * 定时重复执行。 * @param delay 间隔时间(单位毫秒)。 * @param caller 执行域(this)。 ...

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

912. laya2.0 3d物理碰撞穿透问题 [ 70%]

... 赞同来自: 晨 scene.physicsSimulation.continuousCollisionDetection = true; 这个连续碰撞检测加上后无效,依然穿透 2018-11-16 1 0 分享 微博 QZONE 微信 闲好手游 赞同来自:  碰撞框拉大点效果会好些,不要用meshcollider 2018-11-16 0 0 分享 微博 QZONE ...

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

913. 关于缓动函数from的一些问题记录 [ 70%]

...,{y:100},3,Laya .Ease.backOut,new Handler(this,this.onEaseComplete),1,null,true); function onEaseComplete(){ console.log("ease complete"); Laya.stage.addChild(letterText); } ``` 以上的代码主要存在三个问题: 1. from()中的duration和delay都是以毫秒为单位,所以3,1想表示3秒,1...

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

914. 背景音乐文件太大 播放延迟 [ 70%]

...(this, () => {                 this.store.isDemo = true;                 Laya.Scene.open("scene/Home.scene")             }), new Laya.Handler(this, (value: number) => {                 this._page = this.page       ...

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

915. [LayaNative] Label不显示文字, 甚至闪退 100%复现 [ 70%]

...  1.使用layaide2.1打开工程   2.修改Label, this.tipLbll.italic = true; this.tipLbll.bold = false; this.tipLbll.text = "测试"; 3.然后使用LayaNative生成安卓项目,  进游戏会发现没显示文字   如果将this.tipLbll.text = " 测试";//前面加四个空格 那么游戏会...

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

916. 关于矢量图跟Image [ 70%]

...getBounds函数获取;也可手动设置宽高;还可以设置autoSize=true,然后再获取宽高。Sprite的宽高一般用于进行碰撞检测和排版,并不影响显示图像大小,如果需要更改显示图像大小,请使用 scaleX , scaleY , scale。 Sprite 默认不...

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

917. SoundChannel在页面失焦后自动丢失audioBuffer,以致没有声音 [ 69%]

...r: AudioBuffer, playbackRate: AudioParam, detune: AudioParam, loop: true, loopStart: 0, …} completeHandler:null context:AudioContext {baseLatency: 0.01, destination: AudioDestinationNode, currentTime: 3.7706666666666666, sampleRate: 48000, listener: AudioListener, …} gain:Ga...

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

918. laya.d3.resource.TextureCube_API3.0 [ 69%]

...ameters size: number format: TextureFormat Default value mipmap: boolean = true Default value sRGB: boolean = false Returns TextureCube Properties destoryedImmediately destoryedImmediately: boolean Inherited from Resource.destoryedImmediately Defined in laya/resource/Resource.ts:104 是否在引用...

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

919. laya.map.TileTexSet [ 69%]

...果发现子纹理被替换成一个动画序列,animationKey会被设为true 即animationKey为true,就使用TileAniSprite来做显示,把动画序列根据时间画到TileAniSprite上 Public Properties PropertyDefined By  animationTotalTime : Number = 0 动画播放的总时间 TileTexSet ...

来源: laya_api 发布时间: 20170929

920. Button和下面的3D物体重叠,点击button,3D物体会同时响应自己的鼠标脚本 [ 69%]

...提:把所有可能与3D物体重叠的UI元素的 mouseEnable 设置为 true ,接收鼠标点击 onAwake() { this.isClick = false; //对舞台stage添加点击事件(这里由于有scene的缘故,点击空白处返回的对象是scene) Laya.stage.on(Laya.Event.CLICK,this,function(e) { if(...

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