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

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

701. Animation属性详解(JavaScript-IDE篇(JS)-IDE组件属性详解) [ 38%]

...图片集合(多张图片,通常是序列帧图)、图集文件(.atlas或.json后缀)、动画文件(.ani后缀)三种。 #### 2.2.1 用序列帧图片创建 打开`资源管理器`,我们将多张美术资源`同时选中`,`拖拽`到`source`属性栏,然后选中场景中刚刚...

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

702. Animation属性详解(TypeScript-IDE篇(TS)-IDE组件属性详解) [ 38%]

...图片集合(多张图片,通常是序列帧图)、图集文件(.atlas或.json后缀)、动画文件(.ani后缀)三种。 #### 2.2.1 用序列帧图片创建 打开`资源管理器`,我们将多张美术资源`同时选中`,`拖拽`到`source`属性栏,然后选中场景中刚刚...

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

703. Animation属性详解(ActionScript-IDE篇(AS3)-IDE组件属性详解) [ 38%]

...图片集合(多张图片,通常是序列帧图)、图集文件(.atlas或.json后缀)、动画文件(.ani后缀)三种。 #### 2.2.1 用序列帧图片创建 打开`资源管理器`,我们将多张美术资源`同时选中`,`拖拽`到`source`属性栏,然后选中场景中刚刚...

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

704. 使用二进制图片 · LayaAir3.0文档 · LAYABOX [ 37%]

...作。代码如下: var xhr = new XMLHttpRequest(); xhr.open("get", "res/atlas/comp.png", true); xhr.responseType = "arraybuffer"; xhr.onload = function () { if (this.status == 200) { var blob = new Blob([this.response], { type: "image/png" }); var img = document.createElement("img"); img.onload =...

来源: Laya3.0_文档 发布时间: 20230303

705. 输入文本组件 · LayaAir3.0文档 · LAYABOX [ 36%]

...行 this.txtin.overflow = "scroll"; //文本溢出 // this.txtin.skin = "atlas/comp/textinput.png"; //皮肤 this.txtin.bgColor = "#19a4f1"; //背景颜色 this.txtin.borderColor = "#f6ff03" //边框颜色 this.txtin.editable = true; //可编辑状态 // this.txtin.type = "password"; //输入框类...

来源: Laya3.0_文档 发布时间: 20241014

706. 新手引导 挖洞 不用 cacheAs="bitmap" 希望能帮助那些和我一样有需求的码农!你好我好大家好才是真的好!请各位大佬批评指教! [ 35%]

...       // image.crossOrigin = "";         image.src = "res/atlas/pixel.png";         image.onload = function()         {             // 界面上按钮所在的位置以及按钮的宽高             drawImage(image, 462, 194, 156, 48, 0); // ...

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

707. 二进制图片(JavaScript-2D进阶篇(JS)-游戏加载策略) [ 34%]

...下: ```JavaScript var xhr = new XMLHttpRequest(); xhr.open("get", "res/atlas/comp.png", true); xhr.responseType = "arraybuffer"; xhr.onload = function () { if (this.status == 200) { var blob = new Blob([this.response], { type: "image/png" }); var img = document.createElement("img"); img.onload = ...

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

708. 按钮组件 · LayaAir3.0文档 · LAYABOX [ 34%]

... onAwake(): void { this.btn.scale(5, 5); //放大五倍 this.btn.skin = "atlas/comp/button.png"; //皮肤 this.btn.stateNum = 3; //皮肤状态 this.btn.label = "确定"; //文本标签 this.btn.labelFont = "宋体"; //文本标签字体 this.btn.labelSize = 20; //文本标签字体大小 this.btn.l...

来源: Laya3.0_文档 发布时间: 20241014

709. 二进制图片(TypeScript-2D进阶篇(TS)-游戏加载策略) [ 33%]

...下: ```javascript var xhr = new XMLHttpRequest(); xhr.open("get", "res/atlas/comp.png", true); xhr.responseType = "arraybuffer"; xhr.onload = function () { if (this.status == 200) { var blob = new Blob([this.response], { type: "image/png" }); var img = document.createElement("img"); img.onload = ...

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

710. 二进制图片(ActionScript-2D进阶篇(AS3)-游戏加载策略) [ 33%]

...下: ```javascript var xhr = new XMLHttpRequest(); xhr.open("get", "res/atlas/comp.png", true); xhr.responseType = "arraybuffer"; xhr.onload = function () { if (this.status == 200) { var blob = new Blob([this.response], { type: "image/png" }); var img = document.createElement("img"); img.onload = ...

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