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

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

451. 输入设备-指南针 [ 57%]

...Laya.Handler; import WebGL = Laya.WebGL; import Event = Laya.Event; export class InputDevice_Compasss { private compassImgPath:string = "../../res/inputDevice/kd.png"; private compassImg:Sprite; private degreesText:Text; private directionIndicator:Sprite; private firstTime:Boolean = true; constructo...

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

452. 自定义组件时,设置组件子节点的image的skin时,路径为layaIde的路径而非项目路径 [ 57%]

...I.Button; import laya.ui.Image; /** * ... * @author Caixiansheng */ public class HProgressSlider extends HSlider { /**@private */ protected var _progress:Image protected var _proMask:Sprite; public function HProgressSlider(skin:String=null) { super(skin); } override protected function initialize():v...

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

453. 微信小游戏渲染开放域卡顿处理 [ 57%]

...套的,不同开放域代码请勿使用该类      */     export class WXBitmap extends Laya.Sprite {         private $viewName: string;         private $texture: Laya.Texture;         private $bitmap: any;         private $timer: lie.Timer;         public auto: boolean =...

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

454. Handler.create的回收问题 [ 57%]

...aya.Text; import Browser = Laya.Browser; import WebGL = Laya.WebGL; export class Test { private h1: Laya.Handler; private h2: Laya.Handler; constructor() { // 不支持WebGL时自动切换至Canvas Laya.init(Browser.clientWidth, Browser.clientHeight, WebGL); Laya.stage.alignV = Stage.ALIGN_MIDDLE; L...

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

455. 分享-js资源进度加载 [ 57%]

分享-js资源进度加载 var ui_Socket: Socket; // 程序入口 class GameMain { //进度UI Progress: Progress; Socket: Socket; arr = [ { url: "images/1.jpg", type: Laya.Loader.IMAGE } , { url: "images/2.jpg", type: Laya.Loader.IMAGE } , { url: "images/3.jpg", type: Laya.Loader.IMAGE } , { url: ...

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

456. LAYABOX游戏实时语音之APP版本 [ 57%]

...> </manifest> app\build.gradle app\proguard-rules.pro 添加-keep class demo.* -keep com.youme.imsdk.* -keep com.youme.imsdk.**{*;} -keep class com.youme.IMEngine.** -keep class com.youme.IMEngine.**{*;} -keep class com.iflytek.**{*;} -keepattributes Signature新建目录 “YIMChat” 建...

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

457. 我在dialog a上继续弹出dialog b 。需要关闭b的时候,a依然存在。怎么做? [ 57%]

....scene"); this.close(); } a和b都是独立的ts类, export default class a extends ui.a {……} 同时a和b都是对应的dialog ui文件a.scene 和b.scene的runtime属性关联过去的。

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

458. laya.ui.Dialog [ 57%]

API DocumentationAll Packages | All Classes | Index | Frames No Frames DialogProperties | Methods | Events | Constants Packagelaya.uiClasspublic class DialogInheritanceDialog View Box Component Sprite Node EventDispatcher ObjectSubclasses AsynDialog Dialog 组件是一个弹出对话框...

来源: laya_api 发布时间: 20170929

459. 3D项目Label组件增加最少15M内存 [ 57%]

... 淡淡的疯 • 2018-09-10 21:27 3D模式下的确是这样,20M内存 class LayaAir3D { constructor() { //初始化微信小游戏 Laya.MiniAdpter.init(); //初始化引擎 Laya3D.init(0, 0, true); //适配模式 Laya.stage.scaleMode = Laya.Stage.SCALE_FULL; Laya.stage.screenMode = Laya.Stage.SC...

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

460. [LayaAir2] 在使用videoDom创建视频元素后iPad跟iPhone中位置不一样 [ 57%]

...deo播放视频 * @ author:xs * @ data: 2024-03-05 16:20 */ export default class VideoDom { htmlvideo:Laya.HtmlVideo; constructor() { Laya.stage.on(Laya.Event.CLICK,this,this.onClick); } onClick(){ this.initVideo(); } initVideo() { this.htmlvideo = new Laya.HtmlVideo(); this.htmlvideo.setSource("htt...

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