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

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

1501. laya.ui.List_API3.0 [ 75%]

...aya.ui.List; import laya.utils.Handler; public class List_Example { public function List_Example() { Laya.init(640, 800, "false");//设置游戏画布宽高、渲染模式。 Laya.stage.bgColor = "#efefef";//设置画布的背景颜色。 Laya.loader.load(["resource/ui/vscroll.png", "resource/ui/vsc...

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

1502. TypeError: Cannot read property '_byteLength' of null [ 75%]

...打出的APK 报apploader.js:4515 TypeError: addGlobalValueDefine is not a function TypeError: Laya.Browser.window.conch.setFontFaceFromBuffer is not a function Uncaught TypeError: Class constructor Component cannot be invoked without 'new' 关于graphics.drawTexture方法设置纹理报错TypeError...

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

1503. 鼠标出屏事件 [ 75%]

...事件?           Laya.stage.on(Laya.Event.MOUSE_OUT, this, function(){console.log("mouseout")});         Laya.stage.on(Laya.Event.MOUSE_UP, this, function(){console.log("mouseup")});     mouseup能正常监听到,stage上加的MOUSE_OUT事件,当鼠标移出屏幕时,...

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

1504. Animator 怎么获取动画时长 [ 75%]

...相关的链接 提交 1 个回复 Laya_Aaron 赞同来自:    public function get normalizedTime():Number {             return _normalizedTime;         }                  /**          * 获取当前动画的持续时间,以秒为单位。      ...

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

1505. 官方文档里的位图字体的制作与使用JS 跑不通 以及 文档的几个问题 [ 75%]

...Font.loadFont("res/bitmapFont/test.fnt",new Laya.Handler(this,onLoaded)); function onLoaded(){init();}function init(){//如果位图字体中,没放空格,最好设置一个空格宽度this.mBitmapFont.setSpaceWidth(10);Laya.Text.registerBitmapFont(this.mFontName,this.mBitmapFont);var txt = new...

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

1506. laya.ui.ScaleBox_API3.0 [ 75%]

...。 example private var _testTips:TestTipsUI = new TestTipsUI(); private function testTips():void { //简单鼠标提示 btn2.toolTip = "这里是鼠标提示<b>粗体</b><br>换行"; //自定义的鼠标提示 btn1.toolTip = showTips1; //带参数的自定义鼠标提示 clip.tool...

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

1507. laya.ui.Box_API3.0 [ 75%]

...。 example private var _testTips:TestTipsUI = new TestTipsUI(); private function testTips():void { //简单鼠标提示 btn2.toolTip = "这里是鼠标提示<b>粗体</b><br>换行"; //自定义的鼠标提示 btn1.toolTip = showTips1; //带参数的自定义鼠标提示 clip.tool...

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

1508. 关于as版的Animation.createFrames()不能工作? [ 75%]

...lass LayaUISample { protected var text:Text; protected var aaa:AAA; public function LayaUISample() { Laya.init(1540, 990); Laya.Stat.show(); Laya.loader.load("res/atlas/war.json", Laya.Handler.create(this, this.onLoaded), null, Laya.Loader.ATLAS); Laya.loader.on(Event.ERROR, this, onError); } protec...

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

1509. 关于大量图片加载绘制后的内存暴增的疑问 [ 75%]

...对象容器 private var texture:Texture;//预加载图片的纹理 public function Demo() { Laya.init(800,1000,WebGL); Stat.show(); Laya.stage.bgColor="#EEFFCC"; //预加载图集 Laya.loader.load("res/atlas/bag.json",Handler.create(this,onLoaded),null,Loader.ATLAS); } private function onLoaded():v...

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

1510. 场景环境反射(TypeScript-3D基础(TS)-LayaAir3D之场景渲染配置) [ 75%]

...ad("res/threeDimen/skyBox/DawnDusk/SkyBox.lmat", Laya.Handler.create(null, function(mat){ //获取相机的天空盒渲染体 var skyRenderer = camera.skyRenderer; //设置天空盒mesh skyRenderer.mesh = Laya.SkyBox.instance; //设置天空盒材质 skyRenderer.material = mat; //设置场景的反...

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