大约有 517 项符合查询结果, 库内数据总量为 30,778 项。 (搜索耗时: 0.0045 秒)
...码如下 (function () { /** * 血条 * */ function Hp(type){ //背景 this.bg = null; //进度条 this.bar = null; //最小值 this.MIN_VALUE = 0; //最大值 this.MAX_VALUE = 100; //值 this.value = 100; Hp.__super.call(this); this.init(type); } //能量类型 Hp.HP_TYPE_ENERGY = "hp_type_energy...
来源: Laya_社区 发布时间: 20160803
...m/demo/?InputDevice_Video 监听加载完成: video.on('loadedmetadata', this, onVideoReady); js下没有针对某个文件的loading事件,不过可以通过文件加载的个数来模拟进度条加载! 2017-02-07 0 2 分享 微博 QZONE 微信 为什么被折叠? 0 个回复被折叠 要回...
来源: Laya_社区 发布时间: 20170123
...但是可以用frameLoop方法来替代 启动一个Laya.timer.frameLoop(1,this,onLoop).在frameLoop的回调里去监听Animation播放的是第几帧(index) 2016-10-12 0 0 分享 微博 QZONE 微信 unnamedzc 赞同来自: 那如何确定监听对象哪?是直接在回调里面取 ani.count?...
来源: Laya_社区 发布时间: 20161011
matterjs渲染laya的ui let ball = this.Matter.Bodies.circle(200, 200, 120); //自己定义的ui let layaSprite = new MatterSprite(); //对齐 layaSprite.anchorX = layaSprite.anchorY = 0.5; //背景色 layaSprite.graphics.drawCircle(120, 120, 120, '#ffffff'); ball.layaSprite = layaSprite; 2018-04-2...
来源: Laya_社区 发布时间: 20180423
...aya.stage.scaleMode = Stage.SCALE_SHOWALL; Laya.stage.bgColor = "#232628"; this.createText(); } createText() { const Text = Laya.Text; let txt = new Text(); Laya.stage.addChild(txt); //给文本的text属性赋值 txt.text = "Layabox是性能最强的HTML5引擎技术提供商与优秀的游戏发...
来源: Laya2.0_示例 发布时间: 20241118
...侠 • 2018-01-19 09:20 public function Test1View() { Laya.timer.loop(10,this,draw); } private function draw():void { texture = Laya.loader.getRes("comp/lhjicon_5.png"); var temp:Texture = Texture.createFromTexture(texture,0,0,texture.sourceWidth/2,texture.height/2); IconSpr.graphics.draw...
来源: Laya_社区 发布时间: 20180118
...mc:MovieClip = new MovieClip(); Laya.stage.addChild(mc); mc.on("complete", this, function (evt:Event){ trace("swf complete"); }); mc.load("../../res/swf/mapFlash.swf"); 为何加了这段代码,整个H5就如“死机”,点浏览器的刷新都不管用? 也不抱错? 2017-01-18 添加评...
来源: Laya_社区 发布时间: 20170118
...rial; var rotation = new Laya.Vector3(0, 0.01, 0); Laya.timer.frameLoop(1, this, function () { layaMonkey.transform.rotate(rotation, false); }); function initShader() { var attributeMap = { 'a_Position': Laya.VertexElementUsage.POSITION0, 'a_Normal': Laya.VertexElementUsage.NORMAL0 }; var uniformMap...
来源: Laya_示例 发布时间: 20241118
...del3D/PangZi-Take 001.lani",]; Laya.loader.create(resource, Handler.create(this, onPreLoadFinish)); } public function onPreLoadFinish() { //初始化3D场景 _scene = Laya.stage.addChild(Loader.getRes("res/threeDimen/scene/TerrainScene/XunLongShi.ls")) as Scene3D; //获取相机 var camera:Camera = ...
来源: Laya2.0_文档 发布时间: 20210715
...as Camera; Laya.stage.on(Event.MOUSE_DOWN, this, onMouseDown); trace(camera); })) } public function onMouseDown():void { trace(camera); ...
来源: Laya_社区 发布时间: 20190328