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

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

1421. laya.ui.VScrollBar_API3.0 [ 76%]

...ublic class VScrollBar_Example { private var vScrollBar:VScrollBar; public function VScrollBar_Example() { Laya.init(640, 800);//设置游戏画布宽高、渲染模式。 Laya.stage.bgColor = "#efefef";//设置画布的背景颜色。 Laya.loader.load(["resource/ui/vscroll.png", "resource/ui/vscrol...

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

1422. Laya中的宏编译要怎么用啊 [ 76%]

... 3、宏编译示例代码   3.1 LayaFlash单行宏编译写法private function byteArrayReadIntTest():void { var byteArray:ByteArray = new ByteArray(); byteArray.writeInt(100); byteArray.position = 0; var value:int; /*[IF-FLASH]*/value = byteArray.readUnsignedInt(); //[IF-SCRIPT]value = byteArray...

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

1423. laya.d3.core.material.ParticleMaterial [ 76%]

...Texture:BaseTexture 获取漫反射贴图。 Implementation     public function get diffuseTexture():BaseTexture    public function set diffuseTexture(value:BaseTexture):voidrenderModeproperty renderMode:int 获取渲染状态。 Implementation     public function get renderMode():int ...

来源: laya_api 发布时间: 20170603

1424. UI-Tab [ 76%]

...r skins:Array = ["../../res/ui/tab1.png", "../../res/ui/tab2.png"]; public function UI_Tab() { // 不支持WebGL时自动切换至Canvas Laya.init(550, 400, WebGL); Laya.stage.alignV = Stage.ALIGN_MIDDLE; Laya.stage.alignH = Stage.ALIGN_CENTER; Laya.stage.scaleMode = Stage.SCALE_SHOWALL; Laya.stage....

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

1425. laya.ui.ProgressBar_API3.0 [ 76%]

...ic class ProgressBar_Example { private var progressBar:ProgressBar; public function ProgressBar_Example() { Laya.init(640, 800);//设置游戏画布宽高。 Laya.stage.bgColor = "#efefef";//设置画布的背景颜色。 Laya.loader.load(["resource/ui/progress.png", "resource/ui/progress$bar.png"],...

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

1426. TypeError: Cannot read property '_byteLength' of null [ 76%]

...打出的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_社区 发布时间: 20180125

1427. VR场景-VR地球 [ 76%]

...ar rotation = new Laya.Vector3(0, 0.002, 0); Laya.timer.frameLoop(1, null, function() { earth.transform.rotate(rotation, true); });class VRScene1 { private rotation: Laya.Vector3; constructor() { Laya3D.init(0, 0, true); Laya.stage.scaleMode = Laya.Stage.SCALE_FULL; Laya.stage.screenMode = Laya.Stag...

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

1428. 射线检测-点击行走 [ 76%]

...aternion = new Laya.Quaternion(); var _outHitInfo = new Laya.RaycastHit(); function checkHit() { box.transform.position = _position; box.transform.rotation = _quaternion; //从屏幕空间生成射线 point.elements[0] = Laya.MouseManager.instance.mouseX; point.elements[1] = Laya.MouseManager.instan...

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

1429. 在微信小游戏真机wx.onShow和wx.onHide中的currTimer的问题 [ 76%]

...信小游戏真机wx.onShow和wx.onHide中的currTimer的问题  public function Main() { MiniAdpter.init(); MiniAdpter.window.wx.onShow(_onShowWX); MiniAdpter.window.wx.onHide(_onHideWX); } private function _onShowWX(res:*):void { console.log("wx.onShow:",res); console.log(Laya.timer.currTimer); }...

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

1430. 排行榜上的玩家头像绘制问题 [ 76%]

...个问题请教下,如何绘制玩家头像。我用了同样的代码 function drawRankList(data) {     data.forEach((item, index) => {       // context.drawImage(item.avatarUrl, 0, 0, 200, 400);       // var image1 = wx.createImage()       // image1.src = item.avatarUrl     ...

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