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

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

1491. LayaAir和原生DOM交互(ActionScript-2D进阶篇(AS3)-扩展模块) [ 42%]

...始化引擎 Laya.init(600, 400); Laya.stage.bgColor ="#cccccc"; var data:String= "data:image/svg+xml,"+'' + '' + '' + 'I like ' + '' + 'cheese' + '' + '' + ''; var sp:Sprite = new Sprite(); sp.loadImage(data,0,0,200,200); Laya.stage.addChild(sp); } } } ``` 通过data来当做url传递给loadImage...

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

1492. 使用createFrames创建的图集动画。如何单独修改这个缓存动画播放速度 [ 42%]

...播放速度了!/** * 角色创建 */ public function init(interval,type:String,hp:Number,speed:Number,hitRadius:Number,camp:Number,heroType:Number = 0):void { //初始化属性 this.type = type; this.hp = hp; this.speed = speed; this.hitRadius = hitRadius; this.camp = camp; this.heroType = heroTy...

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

1493. 性能测试-卡通人物2 [ 42%]

....update(); } if (Laya.timer.currFrame % 60 === 0) { text.text = Stat.FPS.toString(); } } })();module laya { import Stage = Laya.Stage; import Text = Laya.Text; import Stat = Laya.Stat; import WebGL = Laya.WebGL; import Animation = Laya.Animation; import Sprite = Laya.Sprite; export class Performance...

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

1494. 使用百度地图显示当前位置(ActionScript-LayaAir基础篇(AS3)-硬件设备相关) [ 42%]

...Error函数: ```java private function onError(e:*):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.T...

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

1495. ComboBox属性详解(ActionScript-IDE篇(AS3)-IDE组件属性详解) [ 42%]

...ublic class UI_ComboBox { /***下边列表美术资源**/ private var skin:String = "../../../../res/ui/combobox.png"; /***下拉列表**/ private var comboBox:ComboBox /***提示信息文本框**/ private var promptText:Text; public function UI_ComboBox() { // 不支持WebGL时自动切换至Canvas...

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

1496. 动画实例在调用含有名字参数的时候获取不到边界 [ 42%]

...ld(this.enemyUnit[i]); } this.enemyUnitReady+=1; } private aniUrls(aniName:string,length:number):any{ var urls:any = []; for(var i:number = 0;i<length;i++){ //动画资源路径要和动画图集打包前的资源命名对应起来 urls.push("character/m1/"+aniName+i+".png"); ...

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

1497. 求HTTP相关的文档或者例子谢谢了 [ 42%]

... // TODO Auto-generated method stub trace("加载完成!!!") var str:String=event.target.data; var jsonObject:Object=JSON.parse(str); trace(jsonObject.status); trace(jsonObject.message) } protected function progressEventHandler(event:ProgressEvent):void { // TODO Auto-generated method stub tra...

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

1498. 性能测试-卡通人物2 [ 41%]

....update(); } if (Laya.timer.currFrame % 60 === 0) { text.text = Stat.FPS.toString(); } } } class Character extends Laya.Sprite { constructor(images) { super(); this.speed = 5; this.bloodBar; this.animation; this.nameLabel; this.createAnimation(images); this.createBloodBar(); this.createNameLabel(); ...

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

1499. Animation创建和销毁的问题 [ 41%]

...false          */         public static function clearRes(url:String, forceDispose:Boolean = false):void { Loader.clearRes清理你把里面的第二个参数设置成false试试 如果还是不行的话你就把资源清理方法改用一下这个方法!还有如果你的图片小于5...

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

1500. 使用UI组件tree时,添加的数据结构必须是xml吗?添加xml时对于tree的单元格里面的label如何控制例如visible的属性 [ 41%]

...内容相关的链接 提交 2 个回复 shiyang12345 赞同来自: var xmlString="<data>"+ "<dir name='shi' num='10000' state='已集结' time_pro='' isOpen='true'>"+ "<file num='1000' ok='ok' isOpen='true'/>"+ "<file num='1000' ok='ok' isOpen='true'/>"+ "<file num='1000'...

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