大约有 201 项符合查询结果, 库内数据总量为 30,784 项。 (搜索耗时: 0.0052 秒)
...3-28 10:33 var roleTemp = new Templet(); roleTemp.on(Event.COMPLETE, this, function(){ var roleAni = roleTemp.buildArmature(1); Laya.stage.addChild(roleAni); }) roleTemp.loadAni('res/spine/knight/effect1.sk'); SK动画已经预加载了:Laya.loader.load(['res/spine/knight/effect1.png', 'res/spine/...
来源: Laya_社区 发布时间: 20171116
...会打扰到用户。 1,属性 属性 类型 描述 onreadystatechange function 一个JavaScript函数对象,当readyState属性改变时会调用它。 readyState unsigned short 请求的五种状态 response varies 响应实体的类型由 responseType 来指定, 可以是 ArrayBuffer ,Blo...
来源: Laya3.0_文档 发布时间: 20241014
... ```java package { import laya.utils.Browser; public class JSDemo { public function JSDemo() { //初始化引擎 Laya.init(0, 0); //运行JS alert Browser.window.alert('我是alert'); } } } ``` **方式二:** ```java package { public class JSDemo { public function JSDemo() { //初始化引擎 Laya...
来源: Laya2.0_文档 发布时间: 20210715
...游戏 Animation 无法监听到Event.COMPLETE anim.on(Event.COMPLETE,this,function onComplete():void{ trace("动画播放完毕了===%%%%%%%%%%%%%%%%%"); } 在微信小游戏中监听不到 2018-04-16 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请: 与内...
来源: Laya_社区 发布时间: 20180416
...Touch(false); var ctx = document.createElement('canvas').getContext('2d'); function render(){ ctx.fillStyle='#99d9ea'; ctx.fillRect(0,0,window.innerWidth,window.innerHeight); window.requestAnimationFrame(render); } window.requestAnimationFrame(render); document.addEventListener('touchstart',()=>{...
来源: Laya_社区 发布时间: 20180525
...seEnabled = true; a.mouseThrough = true; a.on(Laya.Event.MOUSE_DOWN, null, function (e: Laya.Event): void { console.log("touch a"); } 因为需要将mouseThrough=true才可以,蛋疼的api描叙你能相信是这个熟悉么? “mouseThrough : Boolean = false,指定当mouseEnabled=true...
来源: Laya_社区 发布时间: 20161109
drawToCanvas无法释放内存 Laya.stage.frameLoop(1, this, ZX);function ZX():void{ var tex:Texture=new Texture(sp.drawToCanvas(sp.width,sp.height,0,0)) sp.graphics.clear() sp.graphics.destroy() tex.destroy() ...
来源: Laya_社区 发布时间: 20190120
LayaNative2.0 UI移除舞台,再添加必然无法显示 private function CreateCon():void { _con1 = new Sprite(); _con2 = new Sprite(); _con3 = new Sprite(); _con4 = new Sprite(); Laya.stage.addChild(_con1); Laya.stage.addChild(_con2); Laya.stage.addChild(_con3); Laya.stage.addChild(_con4); _...
来源: Laya_社区 发布时间: 20181025
...a.net.Loader; import laya.utils.Handler; public class LayaAirDemo { public function LayaAirDemo() { Laya.init(500,400); Laya.loader.load("unpack.json",Handler.create(this,onLoaded),null,Loader.JSON); } private function onLoaded():void { var json:JSON=Laya.loader.getRes("unpack.json"); var str:String...
来源: Laya_社区 发布时间: 20170802
...{ prevTasks = ["替换Laya前缀"] } const fs = require("fs"); function readFile(path) { if (fs.existsSync(path)) { return fs.readFileSync(path, "utf-8"); } return null; } gulp.task('替换Laya前缀', function(){ var layaMaxUI_Pat...
来源: Laya_社区 发布时间: 20190128