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

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

1461. 用Geolocation获取地理位置信息(ActionScript-LayaAir基础篇(AS3)-硬件设备相关) [ 45%]

...获取位置失败后触发 function onError(err:Error):void { var errType:String; if (err.code = Geolocation.PERMISSION_DENIED) errType = "Permission Denied"; else if (err.code == Geolocation.POSITION_UNAVAILABLE) errType = "Position Unavailable"; else if (err.code == Geolocation.TIMEOUT) errType =...

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

1462. 水平布局容器组件 · LayaAir3.0文档 · LAYABOX [ 45%]

...ya.Button; private btn3: Laya.Button; // 按钮皮肤资源 private skins: string = "atlas/comp/button.png"; //组件被激活后执行,此时所有节点和组件均已创建完毕,此方法只执行一次 onAwake(): void { Laya.loader.load(this.skins).then(() => { this.createBtn(); this.cre...

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

1463. 关于Laya.loader.load和getRes的问题 [ 45%]

...  加载结束回调。根据url类型不同分为2种情况:1. url为String类型,也就是单个资源地址,如果加载成功,则回调参数值为加载完成的资源,否则为null;2. url为数组类型,指定了一组要加载的资源,如果全部加载成功,则回调参...

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

1464. 微信的缓存引擎只支持了图片和声音,其他lh,lm等文件自动缓存时都不支持是缓存的时候有什么问题和难点吗? [ 45%]

...       */         public static function getFileInfo(fileUrl:String):Object {             return MiniFileMgr.getFileInfo(fileUrl);         }                  /**          * 获取缓存文件列表          * @return          ...

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

1465. new Laya.Templet() 时,说这不是一个constructor [ 45%]

... 求前辈指点下,谢谢! 代码如下: //private strAniConfPath:string = "res/fighter/fighter.json" //private aniFighter:Animation; this.aniFighter = new Animation(); this.aniFighter.loadAtlas(this.strAniConfPath); Laya.stage.addChild(this.aniFighter); this.aniFighter.interval = 1...

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

1466. sound manager在MOUSE_OVER事件中无法播放 [ 45%]

...ySound);         }          private createButton(label: string): Sprite {             var w: number = 110;             var h: number = 40;              var button: Sprite = new Sprite();             button.size(w, h)...

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

1467. 使用音频 · LayaAir3.0文档 · LAYABOX [ 45%]

...乐或音效)的音量。 */ static setSoundVolume(volume: number, url: string = null): void { if (url) { SoundManager._setVolume(url, volume); } else { SoundManager.soundVolume = volume; for (let i = SoundManager._channels.length - 1; i >= 0; i--) { let channel = SoundManager._channels[i]; if ...

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

1468. 要做一个方形倒计时,请问该怎么实现,不知道该怎么做 [ 45%]

...ds Sprite { public static const START:int = -90; public static const COLOR:String = "#000000"; private var r:Number = BarCell.WID / Math.SQRT2; private var rect:Rectangle = new Rectangle(0,0,BarCell.WID,BarCell.WID); private var pos:int = BarCell.WID*0.5; private var endTime:int; private var cdTime:...

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

1469. 关于位图字体的valign属性问题 [ 44%]

...Handler; public class GraphicCircle extends Sprite { private var mFontName:String="dataFont"; private var mBitmap:BitmapFont; public function GraphicCircle() { super(); Laya.init(550,400); mBitmap=new BitmapFont(); mBitmap.loadFont("date/data.fnt",new Handler(this,onLoadedFnt)); } private function o...

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

1470. 使用webgl之后toDataUrl返回黑色的图像 [ 44%]

...; Laya.stage.addChild(sp); } private function onClick():void { var htmlsss:String=(Laya.stage.getChildAt(0) as Sprite).drawToCanvas(100,100,0,0).getCanvas().toDataURL(); var sp2:Sprite = new Sprite(); sp2.name='drawCanvas'; sp2.x = 300; sp2.loadImage(htmlsss); Laya.stage.addChild(sp2); } } }   Laya...

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