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

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

1. Laya.Script的派生类的_update函数不工作? [ 100%]

Laya.Script的派生类的_update函数不工作? 我从Laya.Script类extends了一个自己的class,贴在一个物体上,运行的时候脚本的_start函数中的log正常打印出来了,但是_update函数中的log没有打印 _update(state:Laya.RenderState) { console.log("state:", st...

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

2. Laya.Script _start和_update以及_lateupdate不执行是什么原因呢? [ 99%]

Laya.Script _start和_update以及_lateupdate不执行是什么原因呢?  class b extends Laya.Script{    _initialize(owner:Laya.Sprite3D){      super._initialize(owner);      //加打印可以执行    }        _start(state:Laya.RenderState):void{       //加打印不执行  ...

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

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

脚本组件继承于 Laya.Script。 其中的_update方法,多长时间会调用一次? 可以设置调用时间吗? 脚本组件继承于 Laya.Script。 其中的_update方法,多长时间会调用一次? 可以设置调用时间吗? --------------------- declare module laya.d3.compon...

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

4. laya.d3.component.Script3D [ 90%]

...I DocumentationAll Packages | All Classes | Index | Frames No Frames Script3DProperties | Methods Packagelaya.d3.componentClasspublic class Script3DInheritanceScript3D Component Object Script3D 类用于创建脚本的父类,该类为抽象类,不允许实例。 Public Properties Hide Inheri...

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

5. laya.components.Script [ 89%]

...I DocumentationAll Packages | All Classes | Index | Frames No Frames ScriptProperties | Methods Packagelaya.componentsClasspublic class ScriptInheritanceScript Component Object Script 类用于创建脚本的父类,该类为抽象类,不允许实例。 组件的生命周期 Public Proper...

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

6. 3D 鼠标检测 错乱 [ 86%]

...& (Laya.Stat.loopCount > mouseTouch._pressedLoopCount)){ var pressedScripts=pressedSprite._scripts; if (pressedScripts){ for (j=0,m=pressedScripts.length;j < m;j++) pressedScripts[j].onMouseDrag(); } }; var touchSprite=mouseTouch.sprite; if (touchSprite){ var scripts=touchSprite._scripts; ...

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

7. 如何启用摇一摇 [ 84%]

...块编译宏使用,上面的写法看着有点累,可以参考下: /*[IF-SCRIPT-BEGIN] _model = model; var SHAKE_THRESHOLD = 100; var last_update = 0; var x = y = z = last_x = last_y = last_z = 0;; var canShake = 1; if (__JS__('window.DeviceMotionEvent')){__JS__('window').addEventListener("devicem...

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

8. laya.components.Script_API3.0 [ 80%]

...tected All Inherited Externals Only exported Menu Globals "laya/components/Script" Script Class Script Script 类用于创建脚本的父类,该类为抽象类,不允许实例。 Hierarchy Component Script Index Constructors constructor Properties _extra _singleton owner runInEditor scriptPath A...

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

9. Swift中接入Native,执行完drawInRect后不执行update了! [ 78%]

...10 2019-05-10 17:10:38.479438+0800 SwiftLayaNative[98971:4069811] Start js scripts/apploader.js 2019-05-10 17:10:38.479618+0800 SwiftLayaNative[98971:4069811] OpenGL ES version [OpenGL ES 3.0 APPLE-17.0.37] 2019-05-10 17:10:38.479792+0800 SwiftLayaNative[98971:4069811] INFO:gles 支持的最大顶...

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

10. 在Unity中设置动画事件(ActionScript-3D基础(AS3)-LayaAir3D之Animator动画) [ 78%]

...可以创建一个脚本来接收这个事件。 首先我们创建一个Script3D脚本,脚本名不影响事件的触发这里是随便取的名。 ```typescript import laya.d3.component.Script3D; class SceneScript extends Script3D { //用于表现的方法 public var showMsgFunc:Function; public...

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