大约有 4,338 项符合查询结果, 库内数据总量为 30,789 项。 (搜索耗时: 0.0100 秒)
Laya_社区(2450) Laya3.0_api(673) Laya2.0_api(357) laya_api(289) Laya2.0_文档(271) Laya_示例(157) Laya2.0_示例(116) Laya3.0_文档(25)
...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
... 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
...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
...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
...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
...打出的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
...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
...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
...信小游戏真机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
...个问题请教下,如何绘制玩家头像。我用了同样的代码 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