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

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

111. 区块地图-等角地图 [ 92%]

...Handler; import WebGL = Laya.WebGL; export class TiledMap_IsometricWorld { private tiledMap: TiledMap; private layer: MapLayer; private sprite: Sprite; constructor() { // 不支持WebGL时自动切换至Canvas Laya.init(1600, 800, WebGL); Laya.stage.alignV = Stage.ALIGN_MIDDLE; Laya.stage.alignH = S...

来源: Laya_示例 发布时间: 20241123

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

...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

113. socket大型项目回调 [ 92%]

... = "onKick"; static EVENT_HEART_BEAT_TIMEOUT:string = 'heartbeat timeout'; private JS_WS_CLIENT_TYPE:string = 'js-websocket'; private JS_WS_CLIENT_VERSION:string = '0.0.5'; private RES_OK:number = 200; private RES_FAIL:number = 500; private RES_OLD_CLIENT:number = 501; private socket:Laya.Socket = n...

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

114. 区块地图-等角地图 [ 92%]

...Handler; import WebGL = Laya.WebGL; export class TiledMap_IsometricWorld { private tiledMap: TiledMap; private layer: MapLayer; private sprite: Sprite; constructor() { // 不支持WebGL时自动切换至Canvas Laya.init(1600, 800, WebGL); Laya.stage.alignV = Stage.ALIGN_MIDDLE; Laya.stage.alignH = S...

来源: Laya2.0_示例 发布时间: 20241123

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

...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

116. 关于新手引导 [ 92%]

...ls.Browser; import laya.utils.HitArea; public class KouTu extends Sprite { private var box:Sprite; private var interactionArea:Sprite; private var maskArea:Sprite; private var guideContainer:Sprite; private var gameContainer:Sprite; public function KouTu() { super(); //绘制一个蓝色方块,不...

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

117. 动画不显示 [ 92%]

...erationInfo;     public class LayaSample {                  private var m_bkSound:Sound;         private var m_mapLayer:Sprite;         private var m_MapImgUrl:String;         private var m_Role:Animation;         private var m_RolePosition:Point = new Point(12...

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

118. 发现bug,update大问题!!!!!!!!! 2.13版本 [ 92%]

...Wnd extends BaseWin {     public view: UIMain;     /** 角色 */     private character: Laya.Sprite     /** 角色刚体*/     private rig: Laya.RigidBody     /** 医疗包*/     private addhp: Laya.Sprite     /** 速度包*/     private addseed: Laya.Sprite     /** 跳跃高度...

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

119. DOM元素-表单输入 [ 92%]

...his.rowSpacing + this.rowHeight), 150, this.rowHeight); } }class DOM_Form{ private form:Laya.Sprite; private rowHeight:number = 30; private rowSpacing:number = 10; constructor() { Laya.init(600,400); Laya.stage.alignH = Laya.Stage.ALIGN_CENTER; Laya.stage.alignV = Laya.Stage.ALIGN_MIDDLE; Laya.stage...

来源: Laya_示例 发布时间: 20241123

120. 音频-播放演示 [ 92%]

...L = Laya.WebGL; export class Sound_SimpleDemo { //声明一个信息文本 private txtInfo: Text; constructor() { // 不支持WebGL时自动切换至Canvas Laya.init(Browser.clientWidth, Browser.clientHeight, WebGL); Laya.stage.alignV = Stage.ALIGN_MIDDLE; Laya.stage.alignH = Stage.ALIGN_CENTER; Lay...

来源: Laya2.0_示例 发布时间: 20241123