大约有 900 项符合查询结果, 库内数据总量为 30,778 项。 (搜索耗时: 0.0063 秒)
....events.Event; public class SwfLabelUse { private var mc:MovieClip; public function SwfLabelUse() { Laya.init(600,600); Laya.stage.bgColor="#EEFFCC"; mc=new MovieClip(); mc.load("output/AAA.swf"); mc.on(Event.LOADED,this,onLoaded); Laya.stage.addChild(mc); } private function onLoaded():void { mc.add...
来源: Laya_社区 发布时间: 20170705
Laya2.2问题,有没有遇到的? 子域所有代码 (function () { 'use strict'; class GameConfig { constructor() { } static init() { var reg = Laya.ClassUtils.regClass; } } GameConfig.width = 640; GameConfig.height = 1136; GameConfig.scaleMode = "fixedwidth"; GameConfig.screenMode = "none";...
来源: Laya_社区 发布时间: 20200104
...码: *模板,预制件 */ //class laya.components.Prefab var Prefab=(function(){ function Prefab(){ /**@private */ this.json=null; } __class(Prefab,'laya.components.Prefab'); var __proto=Prefab.prototype; /** *通...
来源: Laya_社区 发布时间: 20181102
... btCollisionObject undefined 导微信小程序报错window.focus is not a function 我刚开始使用layabox,发布了一个h5,但是手机上应该怎么打开这个网页呢 Laya2.0 WebGl模式,使用 drawToCanvas 报错 ImageData is not defined? IDE通过.ui自动生成的ui代码报错 ...
来源: Laya_社区 发布时间: 20190414
...ew Scene (laya.core.js:23721) at new GameMain (bundle.js:6) at Function.getCompInstance (laya.core.js:21214) at Function.createComp (laya.core.js:21081) at Function.createComp (laya.core.js:21111) at Function.createByData (laya.core.js:21034) at GameMain.createVie...
来源: Laya_社区 发布时间: 20201110
...开发者工具打开报错 导微信小程序报错window.focus is not a function 微信小游戏编译报错 Laya2.0 WebGl模式,使用 drawToCanvas 报错 ImageData is not defined? 3d项目-unity添加物理组件 layanative2 打包android平台 报错 btCollisionObject undefined 播放背景...
来源: Laya_社区 发布时间: 20180514
...e/cocos/./scripting/js-bindings/jswrapper/v8/Object.cpp, 628): Invoking function (0x794f5fe1c0) failed! 附件 : --> 2020-05-15 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请: 与内容相关的链接 提交 1 个回复 西西de弗斯 赞同来自: 兄...
来源: Laya_社区 发布时间: 20200515
... laya.utils.Browser; import laya.utils.Handler; public class Test { public function Test() { Laya.init(550,400); Laya.stage.bgColor="#EEFFCC"; Laya.loader.load("hu.ttf",Handler.create(this,onLoaded),null,Loader.BUFFER); } private function onLoaded():void { var arr:ArrayBuffer=Laya.loader.getRes("hu....
来源: Laya_社区 发布时间: 20161219
... laya.net.Loader; import laya.utils.Handler; public class XmlDemo { public function XmlDemo() { Laya.init(550,400); Laya.loader.load("data.xml",Handler.create(this,onLoaded),null,Loader.XML); } private function onLoaded():void { // TODO Auto Generated method stub var xml:XmlDemo=Laya.loader.getRes("...
来源: Laya_社区 发布时间: 20160914
...:-30}, 600, Ease.expoOut, Handler.create(this,onFloatComplete)); protected function onFloatComplete(callBack:Function):void { this.removeSelf(); } 我用这个缓动来做飘字效果,完成回调的时候,把飘字对象在场景上移除,结果执行次数很多之后,发现场景上有...
来源: Laya_社区 发布时间: 20170426