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

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

631. 2.0 Beta3版本中,runtime脚本的的问题 [ 46%]

...geRunTime from "./game/ImageRunTime" /* * 游戏初始化配置; */ export default class GameConfig{ static width:number=640; static height:number=1136; static scaleMode:string="fixedwidth"; static screenMode:string="none"; static alignV:string="top"; static alignH:string="left"; static startScene:a...

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

632. Dialog 第一次打开总是出现在窗口右下角,这是为啥,再打开就正常剧中了? [ 46%]

...剧中了?   随便弄一个窗口,都是这样,代码如下 export default class SettingDialog extends Laya.Dialog { constructor() { super(); this.loadScene('assets/scenes/dialogs/SettingDialog.scene'); } }{ "x":0, "type":"Dialog", "selectedBox":2, "selecteID":3, "searchKey":"Dialog", "props...

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

633. 龙骨动画的监听回调,有时能回调,有时不能回调 [ 45%]

...ib/base/SingleBase"; import DdzFarmersAni from "./DdzFarmersAni";  export default class DdzLandlordAni extends SingleBase{   private mFactory: Laya.Templet = null; public isFinish = false; private mArmatureUsed:Array<Laya.Skeleton> = []; private mArmatureUnUsed:Array<Laya.Skeleton> = [...

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

634. 动画混合问题,Avatar动画混合报错. [ 45%]

...被举起 biu = 'biu',//被扔 dizziness = 'dizziness',//眩晕 }  export default class RoleBase extends Laya.Script3D{ public nGrade:number = 0; public nSpeed:number = 5;  public sprite:Laya.Sprite3D = null;  public animator:Laya.Animator = null;  public Init(){ this.sprite = this.owner as Laya...

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

635. 请问一下我一个3d模型,贴图是UV类型的里面好多张图,在代码里面怎么调用其它的贴图 [ 45%]

...var maJiang:MeshSprite3D = new MeshSprite3D(Mesh.load("3d/maJiang/asdsad-default015.lm")); scene.addChild(maJiang);默认是加载的UV贴图里面的第一张贴图,怎么去掉用其他位置的图片。我的贴图是附件里面的,默认显示的一条,怎么让他显示一万的贴图 ...

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

636. 分享一个自己做的游戏公告功能,跑马灯效果 [ 45%]

... import Sprite = Laya.Sprite import Box = Laya.Box /** 公告栏 */ export default class Notice extends View { /** 滚动区域 */ hornBox: Box /** html对象 */ html: HTMLDivElement /** 滚动框的宽度 */ defaultX = 1110 /** 动画是否出于播放状态 */ isPlayIng:boolean = false /** 空格 ...

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

637. 资源加载 · LayaAir3.0文档 · LAYABOX [ 45%]

...?: string; //资源类型。比如:Loader.IMAGE。 priority?: number; //(default = 0)加载的优先级,数字越大优先级越高,优先级高的优先加载。 group?: string; //分组,方便对资源进行管理。 cache?: boolean; //是否缓存 noRetry?: boolean; //是否重新尝试...

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

638. laya接入fairyGUI的时候资源加载方式? [ 45%]

...来自: /** * FUI资源加载类 * jhj * QQ:8510001 * 2019-11-25 */ export default class FguiResMgr { private static _instance: FguiResMgr; public static get instance(): FguiResMgr { if (!this._instance) this._instance = new FguiResMgr(); return this._instance; } /**加载优先级,越小越优先...

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

639. laya.ui.Clip [ 45%]

...1, clipY:int = 1) 创建一个新的 Clip 示例。 Parameters url:String (default = null) — 资源类库名或者地址  clipX:int (default = 1) — x方向分割个数  clipY:int (default = 1) — y方向分割个数 Method DetailcreateChildren()methodoverride protected function createChildren...

来源: laya_api 发布时间: 20170929

640. 2.0下资源加载和销毁内存问题 [ 45%]

...例 class bitmapimg extends Laya.Image //2.0版本 这里区别为export default class bitmap extends Laya.Image { private szurl:string="" constructor(url:string){ super() this.onUrlChangeHandler(url); } protected onUrlChangeHandler(url:string):void     { if(this.szurl!="") this.disp() this.szur...

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