大约有 61 项符合查询结果, 库内数据总量为 30,786 项。 (搜索耗时: 0.0029 秒)
...perty } = Laya; @regClass() export class NewScript extends Laya.Script { //declare owner : Laya.Sprite3D; @property({ type: Laya.Text }) txt: Laya.Text; constructor() { super(); } onAwake(): void { this.txt.text = "第{n=1}页"; //显示文本的初始化内容 } onStart(): void { let page: number =...
来源: Laya3.0_文档 发布时间: 20241014
...报错 layabox2.0不能进入断点 ui 打包提供 export 选项 自定义declare module,编译的时候报错找不到 定义为module的类无法编译到bundle.js中 Cannot find module Roaming\npm\node_modules\layaair2-cmd\layaair2-cmd.js LayaMaxUI的导出能不能采用ES6 module的方式 ex...
来源: Laya_社区 发布时间: 20181002
...例子 还有发现 layaedotor.d.ts 里面的GraphicAnimation找不到 declare module laya.editorUI { /** * Graphics解析器 */ // class GraphicParser extends laya.display.GraphicAnimation { // protected _getTextureByUrl(url: string): string; // ...
来源: Laya_社区 发布时间: 20170817
...ameThirdScriptError SyntaxError at line:6,column:83273,SyntaxError: Cannot declare a let variable twice: 't'. Stack: (native code) at evaluateScriptFile (WAGame.js:1:83273) at value (WAGame.js:1:406593) at value (WAGame.js:1:405741) at (WAGame.js:1:411737) at (WAGame.js:1:411740) at s (WAGame.js...
来源: Laya_社区 发布时间: 20191202
...目的libs目录中新建一个d.ts,写入画圆角矩形的函数声明 declare namespace laya.display { interface Graphics { /** * 绘制圆角矩形。 * @param x 开始绘制的 X 轴位置。 * @param y 开始...
来源: Laya_社区 发布时间: 20210123
...perty } = Laya; @regClass() export class NewScript extends Laya.Script { //declare owner : Laya.Sprite3D; constructor() { super(); } /** * 组件被激活后执行,此时所有节点和组件均已创建完毕,此方法只执行一次 */ onAwake(): void { let video = new Laya.VideoNode; //添加...
来源: Laya3.0_文档 发布时间: 20241014
... pb2.d.ts和protobufjs.d.ts也有问题,别用export as namespace 用 declare module 代码已改。下载改后的项目你试试。 myLaya2D.zip 2019-02-20 2 1 分享 微博 QZONE 微信 为什么被折叠? 0 个回复被折叠 该问题目前已经被锁定, 无法添加新回复 发起...
来源: Laya_社区 发布时间: 20190220
...毅 赞同来自: 可以再LayaAir.d.ts的(例如我自己的BaseView) declare module Laya{//在这个module里添加 class BaseView extends Scene{}//继承自Scene }里加上自己定义的页面,然后在编辑页面F9的Code导入类里写上引用和赋值 import BaseView from "...
来源: Laya_社区 发布时间: 20190417
使用layaide进行打包,提示如下错误。 Block-scoped declarations (let, const, function, class) not yet supported outside strict mode 网上搜索答案,有的说是因为在tsconfig中,将target调整成了es6就不可以运行了,但是我的代码使用了一些es6的特性,...
来源: Laya_社区 发布时间: 20170604
...如下: @regClass() export class NewScript extends Laya.Script { //declare owner : Laya.Sprite3D; @property(String) public text: string = ""; @property(Laya.Image) public image: Laya.Image = null; constructor() { super(); } } 附件 : -->...
来源: Laya_社区 发布时间: 20230412