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

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

271. Shader预编译解决方案 [ 89%]

...:Laya.DefineDatas  参考接口 _render(context) {     ...     this._material._shaderValues._defineDatas.cloneTo(comDef);     var shader = context.shader = this._material._shader.getSubShaderAt(0)._passes[0].withCompile(comDef);     ... }  Laya.ShaderPass -> withCompil...

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

272. sound manager在MOUSE_OVER事件中无法播放 [ 89%]

...       Laya.stage.bgColor = "#232628";              this.setup();         }          private setup(): void {             var gap: number = 10;              //创建一个Sprite充当音效播放按钮             var...

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

273. 鼠标交互-修正交互区域 [ 89%]

...leMode = Stage.SCALE_SHOWALL; Laya.stage.bgColor = "#232628"; Stat.show(); this.setup(); } setup() { this.buildWorld(); this.createLogger(); } buildWorld() { const Event = Laya.Event; this.createCoralRect(); this.createDeepSkyblueRect(); this.createDarkOrchidRect(); // 设置舞台 Laya.stage.name =...

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

274. 限制区域拖动效果,为什么会无法限制呢? [ 89%]

...bGL; var Handler = Laya.Handler  function GolfMainUI() { GolfMainUI.super(thisvar dragRegion; showDragRegion(); this.golfBall.x = Laya.stage.width / 2; this.golfBall.y = Laya.stage.height / 2; this.golfBall.on(Event.MOUSE_DOWN, this, onStartDrag)  function showDragRegion() { //拖动限制区...

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

275. 文本-滚动文本 [ 89%]

...aya.stage.scaleMode = Stage.SCALE_SHOWALL; Laya.stage.bgColor = "#232628"; this.createText(); } createText() { const Text = Laya.Text, Event = Laya.Event; this.txt = new Text(); Laya.stage.addChild(this.txt); this.txt.overflow = Text.SCROLL; this.txt.text = "Layabox是HTML5引擎技术提供商与...

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

276. 加载-单一类型资源加载 [ 89%]

...张png类型资源 Laya.loader.load("res/apes/monkey0.png", Handler.create(this, this.onAssetLoaded1)); // 加载多张png类型资源 Laya.loader.load( ["res/apes/monkey0.png", "res/apes/monkey1.png", "res/apes/monkey2.png"], Handler.create(this, this.onAssetLoaded2)); } onAssetLoaded1(texture) { /...

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

277. List修改datasource数据的时候出现部分数据不能被修改 [ 89%]

...据完毕后触发这个方法 GameMain.prototype.onLoad = function () { this.mainUI = new MainUI(); dataSource = ; this.allData = ["深发展A", "南坡A", "铜陵有色", "丰林集团", "泰瑞科技", "贵绳股份", "华谊兄弟", "光洋股份", "南京港", "华铁科技", "宝塔实业", "...

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

278. CPU优化方式(ActionScript-2D进阶篇(AS3)-性能优化) [ 89%]

...率依赖于参数指定时间。 ```javascript Laya.timer.frameLoop(1, this, animateFrameRateBased); Laya.stage.on("click", this, dispose); private function dispose():void  {     Laya.timer.clear(this, animateFrameRateBased); } ``` ​ 当一个对象的生命周期结束时,记得清...

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

279. 对游戏中各种控件字体样式使用“白鹭style”样式表 [ 89%]

...ap: Object;//字体样式映射 static get instance(): StyleManager { if (!this._instance) { this._instance = new StyleManager(); } return this._instance; } constructor() { } /** * 解析字体样式 * @param {Object} obj */ parseStyle(obj: Object) { this._styleMap = obj; } /** * 根据key找到字...

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

280. UI-Slider [ 89%]

...er.png", "res/ui/vslider$bar.png"); Laya.loader.load(skins, Handler.create(this, this.onLoadComplete)); } onLoadComplete() { this.placeHSlider(); this.placeVSlider(); } placeHSlider() { const HSlider = Laya.HSlider, Handler = Laya.Handler; let hs = new HSlider("res/ui/hslider.png"); Laya.stage.addCh...

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