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

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

241. 鼠标交互-鼠标交互 [ 87%]

... Laya.Browser; import WebGL = Laya.WebGL; export class Interaction_Mouse { private txt: Text; constructor() { // 不支持WebGL时自动切换至Canvas Laya.init(Browser.clientWidth, Browser.clientHeight, WebGL); Laya.stage.alignV = Stage.ALIGN_MIDDLE; Laya.stage.alignH = Stage.ALIGN_CENTER; Laya.st...

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

242. texture2D的setPixel纹理rgba数据之后会随着窗口的缩放,渐变成黑色 [ 87%]

...后会随着窗口的缩放,渐变成黑色 export class Texture2dTest { private sprite3D:Laya.Sprite3D; private readonly AllPng:string[] = ["pic-001.png","output-06.png"]; private texture:Laya.Texture2D; private box; constructor(){ Laya3D.init(0, 0); Laya.stage.scaleMode = Laya.Stage.SCALE_FULL; ...

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

243. Templet资源删除不掉 [ 87%]

...mplet使用的资源到底要调用什么函数才能删除         private var factory:Templet;         public function Main()         {             //初始化引擎             Laya.init(800, 480, WebGL);             Stat.show(0, 0);            ...

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

244. 弹窗视图组件 · LayaAir3.0文档 · LAYABOX [ 87%]

...roperty } = Laya; @regClass() export class UI_Dialog extends Laya.Script { private DIALOG_WIDTH: number = 220; private DIALOG_HEIGHT: number = 275; private CLOSE_BTN_WIDTH: number = 43; private CLOSE_BTN_PADDING: number = 5; private assets: any[]; private dialog: Laya.Dialog; constructor() { super()...

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

245. list里面可以加入多个view吗? [ 86%]

... laya.utils.Browser; import laya.utils.Handler; public class LayaAirDemo { private var list:List; public function LayaAirDemo() { Laya.init(Browser.width,Browser.height); Laya.stage.bgColor="#EEFFCC"; Laya.loader.load("res/atlas/comp.json",Handler.create(this,onLoaded),null,Loader.ATLAS); } private ...

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

246. HScrollBar属性详解(TypeScript-IDE篇(TS)-IDE组件属性详解) [ 86%]

...bGL = Laya.WebGL; export class UI_ScrollBar { /***水平滚动条资源**/ private skins:Array=["res/ui/hscroll.png", "res/ui/hscroll$bar.png", "res/ui/hscroll$down.png", "res/ui/hscroll$up.png"]; /***提示信息文本框**/ private promptText:Text; /****水平滚动条****/ private hScrollBar:HScr...

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

247. VScrollBar属性详解(TypeScript-IDE篇(TS)-IDE组件属性详解) [ 86%]

...bGL = Laya.WebGL; export class UI_ScrollBar { /***垂直滚动条资源**/ private skins:Array=["res/ui/vscroll.png", "res/ui/vscroll$bar.png", "res/ui/vscroll$down.png", "res/ui/vscroll$up.png"]; /***提示信息文本框**/ private promptText:Text; /****垂直滚动条****/ private vScrollBar:VScr...

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

248. 设置遮罩(ActionScript-LayaAir基础篇(AS3)-位图) [ 86%]

... laya.resource.Texture; import laya.utils.Handler; public class MaskDemo { private var Res:String; private var img:Sprite; public function MaskDemo() { Laya.init(1136,640); //设置舞台背景色 Laya.stage.bgColor = "#ffffff" //资源路径 Res = "res/img/monkey1.png"; //先加载图片资源,...

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

249. sound manager在MOUSE_OVER事件中无法播放 [ 86%]

...d_SimpleDemo {         //声明一个信息文本         private txtInfo: Text;          constructor() {             // 不支持WebGL时自动切换至Canvas             Laya.init(Browser.clientWidth, Browser.clientHeight, WebGL);      ...

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

250. 要做一个方形倒计时,请问该怎么实现,不知道该怎么做 [ 86%]

...tatic const START:int = -90; public static const COLOR:String = "#000000"; private var r:Number = BarCell.WID / Math.SQRT2; private var rect:Rectangle = new Rectangle(0,0,BarCell.WID,BarCell.WID); private var pos:int = BarCell.WID*0.5; private var endTime:int; private var cdTime:int; public var isCd...

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