大约有 1,204 项符合查询结果, 库内数据总量为 30,784 项。 (搜索耗时: 0.0058 秒)
Laya_社区(690) Laya_示例(137) Laya2.0_文档(123) Laya2.0_示例(116) Laya3.0_文档(59) Laya3.0_api(39) laya_api(29) Laya2.0_api(11)
... property } = Laya; @regClass() export class UI_VBox extends Laya.Script { private vbox: Laya.VBox; private btn1: Laya.Button; private btn2: Laya.Button; private btn3: Laya.Button; // 按钮皮肤资源 private skins: string = "atlas/comp/button.png"; //组件被激活后执行,此时所有节点...
来源: Laya3.0_文档 发布时间: 20241014
...t Handler = Laya.Handler; import WebGL = Laya.WebGL; export class UI_Tab { private skins: Array = ["../../res/ui/tab1.png", "../../res/ui/tab2.png"]; constructor(){ // 不支持WebGL时自动切换至Canvas Laya.init(550, 400, WebGL); Laya.stage.alignV = Stage.ALIGN_MIDDLE; Laya.stage.alignH = Stage...
来源: Laya_示例 发布时间: 20241123
...上显示多个动画。 代码示例: ```typescript public class Main { private var aniPath = "res/bone/spineboy-pma.skel"; private var templet:SpineTempletBinary; private var skeleton:SpineSkeleton; private var index: Number = -1; public function Main() { Laya.init(Browser.width, Browser.height,...
来源: Laya2.0_文档 发布时间: 20210715
...lip extends Laya.Script { // 以下资源来自“引擎API使用示例” private buttonSkin: string = "resources/res/ui/button-7.png"; private clipSkin: string = "resources/res/ui/num0-9.png"; private bgSkin: string = "resources/res/ui/coutDown.png"; counter: any; controller: any; currFrame: any; ...
来源: Laya3.0_文档 发布时间: 20241014
请问laya里的单件模式Singleton怎么实现? 普通as3里可以用private的构造函数方法, 但是laya里构造函数private并不能阻止外部实例化。。。 2016-11-07 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请: 与内容相关的...
来源: Laya_社区 发布时间: 20161107
...是我直接用demo就报这个错误。 Yangcy • 2018-08-03 11:45 /** @private **/ public class MiniFileMgr{ /**@private 读取文件操作接口**/ private static var fs:* = __JS__('wx.getFileSystemManager()'); /**@private 下载文件接口**/ private static var wxdown:* = __JS__('wx.downloadFi...
来源: Laya_社区 发布时间: 20180725
...aya.Box{ public static WID: number = 147; public static HEI: number = 190; private skin_progress_chip:Laya.ProgressBar; private skin_img:Laya.Image; private skin_chipNum:Laya.Text; public skin_btn_use:Laya.Image; private skin_lock:Laya.Image; private skin_inUse:Laya.Image; constructor(){ super(); th...
来源: Laya_社区 发布时间: 20180828
...!!! // 程序入口 class Main{ //需要切换的图片资源路径 private monkey1:string = "res/img/monkey1.png"; private monkey2:string = "res/img/monkey2.png"; //切换状态 private flag:boolean = false; private img:Laya.Sprite; constructor() { //初始化引擎 Laya.ini...
来源: Laya_社区 发布时间: 20180226
...ent.MOUSE_DOWN 来检测。 下面是我的代码处理: class demo { private down:Laya.Image; constructor() { // 鼠标事件 Laya.stage.on(Laya.Event.MOUSE_DOWN, this, this.onMouseDown); Laya.stage.on(Laya.Event.MOUSE_MOVE, this, this.onMouseMove); Laya.stage.on(Laya.Event.MOUSE_UP, this, thi...
来源: Laya_社区 发布时间: 20180731
... property } = Laya; @regClass() export class UI_HBox extends Laya.Script { private hbox: Laya.HBox; private btn1: Laya.Button; private btn2: Laya.Button; private btn3: Laya.Button; // 按钮皮肤资源 private skins: string = "atlas/comp/button.png"; //组件被激活后执行,此时所有节点...
来源: Laya3.0_文档 发布时间: 20241014