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

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

1. 设置滤镜(TypeScript-LayaAir基础篇(TS)-位图) [ 100%]

...ort Handler = Laya.Handler; import WebGL = Laya.WebGL; export class Main { private ApePath: string = "../../res/apes/monkey2.png"; private apeTexture: Texture; constructor() { // 不支持WebGL时自动切换至Canvas Laya.init(Browser.clientWidth, Browser.clientHeight, WebGL); Laya.stage.alignV = S...

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

2. Clip属性详解(TypeScript-IDE篇(TS)-IDE组件属性详解) [ 99%]

... Handler = Laya.Handler; import WebGL = Laya.WebGL; export class UI_Clip { private buttonSkin: string = "res/ui/button-7.png"; private clipSkin: string = "res/ui/num0-9.png"; private bgSkin: string = "res/ui/coutDown.png"; private counter: Clip; private currFrame: number; private controller: Button;...

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

3. 显示与切换图片(ActionScript-LayaAir基础篇(AS3)-位图) [ 98%]

...ya.display.Sprite; public class Main { //需要切换的图片资源路径 private var monkey1:String = "res/img/monkey1.png"; private var monkey2:String = "res/img/monkey2.png"; //切换状态 private var flag:Boolean = false; private var img:Sprite; public function Main() { //初始化舞台 Laya....

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

4. 设置滤镜(ActionScript-LayaAir基础篇(AS3)-位图) [ 98%]

...r; import laya.utils.Handler; import laya.webgl.WebGL; public class Main { private const ApePath:String = "res/img/monkey1.png"; private var apeTexture:Texture; public function Main() { // 不支持WebGL时自动切换至Canvas Laya.init(Browser.clientWidth, Browser.clientHeight, WebGL); Laya.stage....

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

5. Clip属性详解(ActionScript-IDE篇(AS3)-IDE组件属性详解) [ 98%]

...ort laya.webgl.WebGL; public class UI_Clip { /***控制器按钮资源***/ private var buttonSkin:String = "../../../../res/ui/button-7.png"; /***切片资源***/ private var clipSkin:String = "../../../../res/ui/num0-9.png"; /***背景资源***/ private var bgSkin:String = "../../../../res/ui/coutD...

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

6. 显示与切换图片(TypeScript-LayaAir基础篇(TS)-位图) [ 97%]

...e.scaleMode = "showall"; Laya.stage.bgColor = "#ffffff"; this.showApe(); } private showApe(): void { // 方法1:使用loadImage var ape: Sprite = new Sprite(); ape.pos(100,50); Laya.stage.addChild(ape); ape.loadImage("../../res/apes/monkey3.png"); } } } new laya.Sprite_DisplayImage(); ``` 在示...

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

7. 使用百度地图显示当前位置(ActionScript-LayaAir基础篇(AS3)-硬件设备相关) [ 97%]

...) ### **一、首先介绍成员变量:** ```java // 百度地图的API private var map:*;                              // 地图引用 private var marker:*;                           // 地图标注物 private var BMap:* = Browse...

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

8. 使用百度地图显示当前位置(TypeScript-LayaAir基础篇(TS)-硬件设备相关) [ 96%]

...) ### **一、首先介绍成员变量:** ```java // 百度地图的API private map;                              // 地图引用 private marker;                           // 地图标注物 private BMap = Laya.Browser.window.BMap; ...

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

9. Spine适配版(JavaScript-LayaAir基础篇(JS)-动画基础) [ 95%]

...多个动画。 代码示例: ```typescript export class SpineBinary { private aniPath = "res/bone/spineboy-pma.skel"; private templet:SpineTempletBinary; private skeleton:SpineSkeleton; private index: number = -1; constructor() { Laya.init(Browser.width, Browser.height, WebGL); Laya.stage.scaleMo...

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

10. Spine适配版(TypeScript-LayaAir基础篇(TS)-动画基础) [ 94%]

...多个动画。 代码示例: ```typescript export class SpineBinary { private aniPath = "res/bone/spineboy-pma.skel"; private templet:Laya.SpineTempletBinary; private skeleton:Laya.SpineSkeleton; private index: number = -1; constructor() { Laya.init(Laya.Browser.width, Laya.Browser.height,Laya.We...

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