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

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

1111. laya.d3.math.OrientedBoundBox [ 51%]

API DocumentationAll Packages | All Classes | Index | Frames No Frames OrientedBoundBoxProperties | Methods Packagelaya.d3.mathClasspublic class OrientedBoundBoxInheritanceOrientedBoundBox Object OrientedBoundBox 用于创建OBB包围盒。 Public Properties PropertyDefined By  extent...

来源: laya_api 发布时间: 20170929

1112. Panel使用文档(TypeScript-IDE篇(TS)-IDE组件属性详解) [ 51%]

...动图5所示: ![5](img\5.gif)(图5) **示例代码:** ```typescript class PanelTest { constructor() { //初始化引擎 Laya.init(800, 600); //预加载所需资源 Laya.loader.load("res/atlas/comp.atlas", Laya.Handler.create(this, this.onLoaded)); } private onLoaded(): void { //实例化Panel...

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

1113. 刚刚接触2天layaair,有几个问题请教。 [ 51%]

...Main.js格式完全和教程不同 import GameConfig from "./GameConfig"; class Main { constructor() { //根据IDE设置初始化引擎 if (window["Laya3D"]) Laya3D.init(GameConfig.width, GameConfig.height); else Laya.init(GameConfig.width, GameConfig.height, Laya["WebGL"]); Laya["Physics"] &&am...

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

1114. 在微信小游戏中使用list,兼听不到mouseHandler跟selectHandler。 [ 51%]

...(this.img);   this.setImg = function(src) { this.img.skin = src; } } Laya.class(Item, "Item", Box);   // 主要逻辑代码 var Stage   = Laya.Stage; var List    = Laya.List; var Handler = Laya.Handler; var WebGL   = Laya.WebGL;     (function() { // 不支持WebGL时自动切换至Canvas L...

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

1115. 微信关系链:LayaAir引擎针对开发数据域使用图集支持介绍 [ 51%]

...事件派发监听管理 * author xiaosong * @date 2017-02-26 */ public class MsgMgr { /**共享画布型**/ public static var SHAREDRESIZE:String = "sharedresize"; private static var _i:MsgMgr = null; public function MsgMgr() { super(); } public static function get instance():MsgMgr { return ...

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

1116. http无响应 [ 51%]

...RequestComplete(e) { this.aaaa.text += "收到数据:" + hr.data; } Laya.class(LoginView,"LoginView",_super); //设置继承关系 //初始化函数 LoginView.prototype.init = function () { //监听登录按钮按下事件 this.login.on(Laya.Event.CLICK,this,this.onButtonLogin); //忘记密码 thi...

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

1117. 使用typescript开发项目,解决文件引用顺序问题 [ 51%]

...rld.js' Laya.stage.addChild(new HelloWorld) //HelloWorld.ts export default class HelloWorld extends Laya.Text { constructor(){ super() this.text = "Hello Layabox" this.color = '#ffffff' } }   2017-11-20 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请: 与内...

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

1118. laya.resource.RenderTexture2D [ 51%]

API DocumentationAll Packages | All Classes | Index | Frames No Frames RenderTexture2DProperties | Methods | Constants Packagelaya.resourceClasspublic class RenderTexture2DInheritanceRenderTexture2D BaseTexture laya.resource.Bitmap RenderTexture 用于创建渲染目标。 Public Proper...

来源: Laya2.0_api 发布时间: 20190513

1119. laya.display.BitmapFont_API3.0 [ 51%]

... Externals Only exported Menu Globals "laya/display/BitmapFont" BitmapFont Class BitmapFont BitmapFont 是位图字体,用于定义位图字体信息。 字体制作及使用方法,请参考文章 see http://ldc2.layabox.com/doc/?nav=ch-js-1-2-5 Hierarchy Resource BitmapFont Index Constructor...

来源: Laya3.0_api 发布时间: 20231115

1120. LayaBox HelloWorld实战 [ 51%]

...弹出一个对话框,对话框里面展示 Hello World!export default class HelloWorld extends Laya.Scene { constructor() { super(); HelloWorld.instance = this; } onBtnShowClick(){ var dialog = new Laya.Dialog(); dialog.width=300; dialog.height=600; //var bg = new Laya.Image('comp/img_bg.png'); /...

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