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

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

321. ComboBox属性详解(TypeScript-IDE篇(TS)-IDE组件属性详解) [ 66%]

...x,创建出符合自己需要的下拉框。 ```javascript module laya { import Stage = Laya.Stage; import ComboBox = Laya.ComboBox; import Handler = Laya.Handler; import WebGL = Laya.WebGL; export class UI_ComboBox { private skin: string = "res/ui/combobox.png"; constructor() { // 不支持WebGL...

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

322. 计时器-延迟执行 [ 66%]

...0.5 this.button2.alpha -= 0.5; } } new Timer_DelayExcute();module laya { import Sprite = Laya.Sprite; import Stage = Laya.Stage; import Event = Laya.Event; import Browser = Laya.Browser; import WebGL = Laya.WebGL; export class Timer_DelayExcute { private button1: Sprite; private button2: Sprite; con...

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

323. TS版分包报错 [ 66%]

...// do something...         } }       我在其它包的类中通过 import TestUI = ui.coreUI.TestUI ;  方式引入类 定义时报错:  "Uncaught ReferenceError: ui is not defined"    请问:我这种分包的方式与导入包的方式有问题吗,为何会报这种错误? ...

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

324. LayaIDE 2.13.0 添加组件菜单无法显示二级继承的子类 [ 66%]

...子类 实例代码 export default class View1 extends Laya.Script { }   import View1 from "./View1"; export default class View2 extends View1 { }升级到2.13.0后,在编辑模式属性面板点击【添加组件】按钮,显示的【Code】菜单下只有View1,没有从View1继承的View2...

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

325. 关于graphics.drawPath手机端和PC端不一致的问题 [ 66%]

...后输入以下代码。 以下是ts文件的全部代码。module laya { import Sprite = Laya.Sprite; import Stage = Laya.Stage; import WebGL = Laya.WebGL; import Event = Laya.Event; export class Sprite_DrawShapes { private sp: Sprite; constructor() { // 不支持WebGL时自动切换至Canvas Laya....

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

326. 分享一个Shader版的CoolDown实现 [ 66%]

...addChild(this.spe); ----------------------源码-------------------------- import Shader = laya.webgl.shader.Shader;     export class coolDownShader extends Shader {         /**          * 当前着色器的一个实例对象。          */         public static shader: coolDownS...

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

327. 鼠标交互-滑动 [ 66%]

...= endPosition; Tween.to(button, { x: targetX }, 100); } })();module laya { import Sprite = Laya.Sprite; import Stage = Laya.Stage; import Event = Laya.Event; import Browser = Laya.Browser; import Tween = Laya.Tween; import WebGL = Laya.WebGL; export class Interaction_Swipe { //swipe滚动范围 priv...

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

328. 微信小游戏,实现监听前后台切换 [ 65%]

...xHelper = new WXHELPER() export default wxHelper     gameController.js  import wxHelper from 'wxhelper' export default class welcome extends Laya.Script { constructor() { super() } onEnable() { wxHelper.onShow(this.resumeGame) wxHelper.onHide(this.pauseGame) } resumeGame () { console.log('resumeG...

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

329. 鼠标交互-滑动 [ 65%]

...is.button, { x: targetX }, 100); } } new Interaction_Swipe();module laya { import Sprite = Laya.Sprite; import Stage = Laya.Stage; import Event = Laya.Event; import Browser = Laya.Browser; import Tween = Laya.Tween; import WebGL = Laya.WebGL; export class Interaction_Swipe { //swipe滚动范围 priv...

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

330. UI-FontClip [ 65%]

...ClipNum); Laya.stage.addChild(clipnum1); } } new Font_Clip(); module laya{ import Stage=Laya.Stage; import FontClip=Laya.FontClip; import Image=Laya.Image; import WebGl=Laya.WebGL; export class Font_Clip{ private TestClipNum:string="res/comp/fontClip_num.png"; private _ClipNum:string="res/comp/fontC...

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