大约有 65 项符合查询结果, 库内数据总量为 30,778 项。 (搜索耗时: 0.0034 秒)
...顺序错误,如下: <!--jsfile--startTag--> <script src="js/W.js"></script> <script src="js/L.js"></script> <script src="js/V.js"></script> <!--jsfile--endTag-->我尝试过删除一个类,或者改某个...
来源: Laya_社区 发布时间: 20181030
...设置下找到Code导入类,增加如下内容:import {base} from "../script/base/BaseScene"; import BaseScene=base.BaseScene;注意:这里的base为命名空间,由于IDE导出时只能识别命名空间的导入方式(也就是import xxx = xx.xx的形式),如果没识别到,则会...
来源: Laya_社区 发布时间: 20200827
... = Object.defineProperty; var __getOwnPropDesc = Object.getOwnPropertyDescriptor; var __name = (target, value) => __defProp(target, "name", { value, configurable: true }); var __decorateClass = (decorators, target, key, kind) => { var result = kind > 1 ? void 0 : kind ? __get...
来源: Laya_社区 发布时间: 20230608
...en(); this.loadScene('LoginScene'); } } import LoginScene from "./script/LoginScene" /* * 游戏初始化配置; */ export default class GameConfig{ static width:number=640; static height:number=1136; static scaleMode:string="fixedwidth"; static screenMode:string="none"; static alignV:strin...
来源: Laya_社区 发布时间: 20190402
...2.0 bug onEnable 分离模式节点没有创建 脚本组件继承于 Laya.Script。 其中的_update方法,多长时间会调用一次? 可以设置调用时间吗? Laya 2.7.0beta Scene与脚本的onAwake()与onEnable()调用时机存在问题 问题状态 最新活动: 2019-07-01 08:52 浏...
来源: Laya_社区 发布时间: 20190701
...lliderShape(1,1,1); } } export default class BoxMove extends Laya.Script { constructor() { super(); } onTriggerEnter() { console.log("111"); } onTriggerStay() { console.log("111"); } onTriggerExit() { console.log("111"); } onEnable() { } onDisable() { } } //这是两个类,直接可...
来源: Laya_社区 发布时间: 20190314
...s.name); } }这个同样是null export default class game_mgr extends Laya.Script { constructor() { super(); console.log(this.owner); } } 附件 : --> 2019-09-04 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请: 与内容相关的链接 提交 1 个回复 177*...
来源: Laya_社区 发布时间: 20190904
Laya.Script的派生类的_update函数不工作? 我从Laya.Script类extends了一个自己的class,贴在一个物体上,运行的时候脚本的_start函数中的log正常打印出来了,但是_update函数中的log没有打印 _update(state:Laya.RenderState) { console.log("state:", st...
来源: Laya_社区 发布时间: 20180614
...物体挂在脚本的时候 比如有个脚本是: class Test extends Laya.Script3D{ } 如xxx是一个3D节点,代码里执行: let script:Test = xxx.addComponent(Test); 在web端没问题,在微信开发者工具里运行报错,已上传Demo项目 附件 : --> IdleDemo.zip 2020-03-09 ...
来源: Laya_社区 发布时间: 20200309
...二级继承的子类 实例代码 export default class View1 extends Laya.Script { } import View1 from "./View1"; export default class View2 extends View1 { }升级到2.13.0后,在编辑模式属性面板点击【添加组件】按钮,显示的【Code】菜单下只有View1,没有从View1...
来源: Laya_社区 发布时间: 20220415