大约有 6 项符合查询结果, 库内数据总量为 30,778 项。 (搜索耗时: 0.0046 秒)
...。 使用npm install xxx --save 安装xxx包。 然后在代码中使用import语句导入即可。 1.2 使用示例 我们用第三方AStar模块来讲解: 1.2.1 npm init 在开发中使用npm init会生成一个pakeage.json文件,这个文件主要是用来记录这个项目的详细信息的...
来源: Laya3.0_文档 发布时间: 20241014
...p,glob,pinyin, @svgdotjs/svg.js等。引用node内置模块可以使用import xx from "xx"的方式,所有IDE内置cjs模块都可以通过IEditor.require或者IEditorEnv.require去引用。 //可以通过import导入node内置模块 import fs from "fs"; import path from "path"; //也可以通...
来源: Laya3.0_文档 发布时间: 20241014
...的LayaDCCTools的接口见源码。 5.8 根据文件列表生成pack包 import {layadcctools} from './dist/layadcctools.js' const {LayaDCCTools,LayaDCC,Params,PackRaw} = layadcctools; layadcctools.LayaDCCTools.genPackByFileList( [ 'D:/work/ideproj/DCCPlugin/release/web/internal/sky.jpg', ], 'd:/tem...
来源: Laya3.0_文档 发布时间: 20241024
...面这两个TS代码: //MyScript.ts const { regClass, property } = Laya; import Animal from "./Animal"; @regClass() export class MyScript extends Laya.Script { @property({ type : Animal }) animal : Animal; } //Animal.ts const { regClass, property } = Laya; @regClass() export default class Animal {...
来源: Laya3.0_文档 发布时间: 20241014
...建的TSDemo脚本。示例代码如下: //引入自定义脚本TSDemo import TSDemo from "./TSDemo"; /** * TypeScript语言示例 */ export default class GameUI extends GameUIBase { /* ……省略若干代码 */ private addBox(): void { //创建盒型体 let box = new Laya.Sprite3D; let boxMesh ...
来源: Laya3.0_文档 发布时间: 20241014
...面这两个TS代码: //MyScript.ts const { regClass, property } = Laya; import Animal from "./Animal"; @regClass() export class MyScript extends Laya.Script { @property({ type : Animal }) animal : Animal; } //Animal.ts const { regClass, property } = Laya; @regClass() export default class Animal {...
来源: Laya3.0_文档 发布时间: 20241014