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

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

1411. 我想问下如果要调用手机本地相册,能不能用HTMLDivElement?该怎么用 [ 76%]

..."canvas"></canvas> </body> <script> $("#file").change(function (){ var file = new FileReader();//读取文件2进制 file.onload = function(e){ var base64 = e.target.result; var img = new Image();//创建一个图片对象 img.onload = function (){ var canvas = $("#canvas").get(...

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

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

...:ComboBox /***提示信息文本框**/ private var promptText:Text; public function UI_ComboBox() { // 不支持WebGL时自动切换至Canvas Laya.init(800, 600, WebGL); //画布垂直居中对齐 Laya.stage.alignV = Stage.ALIGN_MIDDLE; //画布水平居中对齐 Laya.stage.alignH = Stage.ALIGN_CENT...

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

1413. layaAirIDE 打包APK 后 真机运行报错 [ 76%]

...enceError: createApes is not defined i=new RunGame;Laya.stage.addChild(i)}!function(){createApes()}(function(){function i(){this.BG_WIDT ReferenceError: createApes is not defined at BG_WIDTH (http://stand.alone.version/main.min.js:1:149) at eval (http://stand.alone.version/main.min.js:1:162) at eval...

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

1414. layaAirIDE中如何使用wx等微信基础对象,ide版本1.7.19.1beta [ 76%]

...使用wx等微信基础对象,ide版本1.7.19.1beta wx.login({ success: function () { wx.getUserInfo({ success: function (res) { console.log('success', res) }, fail: function (res) { console.log("reject",res) } }) } }); 这段代码里的wx对象,报错如下 "wx is not defined" 2018-07-28 添...

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

1415. swf预加载问题 [ 76%]

... var assets:Array = []; private var mc:MovieClip = new MovieClip(); public function BeforLoader() { assets.push(ADDONE); assets.push(BG); assets.push(CDOWNBIN); assets.push(CUOLE); assets.push(CUPBIN); assets.push(CUTONE); assets.push(LOOKDOWNBIN); assets.push(LOOKUPBIN); assets.push(NOMALBIN); asse...

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

1416. 动画挂点(ActionScript-3D基础(AS3)-LayaAir3D之Animator动画) [ 76%]

...ad("LayaScene_SceneMonkey/Conventional/SceneMonkey.ls",Handler.create(this,function(res:Scene3D):void{ Laya.stage.addChild(res); //用于挂点的精灵 var box: MeshSprite3D = new MeshSprite3D(PrimitiveMesh.createBox(1,1,1)); var material: BlinnPhongMaterial = new BlinnPhongMaterial(); Texture2D.lo...

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

1417. 使用IDE制作的动画在pc模拟器播放OK在手机端不显示 [ 76%]

...用IDE制作的动画在pc模拟器播放OK在手机端不显示 loaded : function(){ this.loader = Laya.loader; this.loader.retryNum = 0;//无加载重试 this.urls = ['imgdebris/imgdebris.atlas','imgdebris/p1_slj.png',]; // this.loader.load(this.urls[0], Laya.Handler.create(this, this.onAssetloade...

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

1418. laya底层的加载为什么可以new两次 [ 76%]

...行 new HTMLImage.create(url, {onload: onload, onerror: onerror, onCreate: function(img:*):void { image = img; //增加引用,防止垃圾回收 imgCache[url] = img; }}); 这里的调用create本身就是返回一个对象了,为什么这里还能在new那个对象呢,而且如果用一个t去...

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

1419. 绘制形状时事件不触发 [ 76%]

绘制形状时事件不触发 function myRing(x,y,r1,color1,r2,color2) {         this.sprite = new Laya.Sprite();     this.sprite.on('mousedown', this, on_down);     this.sprite.graphics.drawCircle(x, y, r2, color2, color2, 2);     this.sprite.graphics.drawCircle(x, y, r1, color1, color...

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

1420. laya.ui.HScrollBar_API3.0 [ 76%]

...ublic class HScrollBar_Example { private var hScrollBar:HScrollBar; public function HScrollBar_Example() { Laya.init(640, 800);//设置游戏画布宽高。 Laya.stage.bgColor = "#efefef";//设置画布的背景颜色。 Laya.loader.load(["resource/ui/hscroll.png", "resource/ui/hscroll$bar.png", "re...

来源: Laya3.0_api 发布时间: 20231115