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

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

111. 通过html的input类型file上传图片,然后通过FileReader获取图片数据之后设置laya的image.skin图片不显示 [ 75%]

... __proto.uploaderHandler=function (files) {              var self=this; var file=files[0];              var reader=new FileReader();               reader.onload=function () {                         this.headIcon.loadImage(this.result); 或者 this.headIcon.skin=thi...

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

112. Button和下面的3D物体重叠,点击button,3D物体会同时响应自己的鼠标脚本 [ 75%]

...UI元素的 mouseEnable 设置为 true ,接收鼠标点击 onAwake() { this.isClick = false; //对舞台stage添加点击事件(这里由于有scene的缘故,点击空白处返回的对象是scene) Laya.stage.on(Laya.Event.CLICK,this,function(e) { if(e.target.name == "scene的名字") { this...

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

113. sprite 添加点击事件没反应,对sprite设置了size也没用 [ 75%]

...邀请: 与内容相关的链接 提交 4 个回复 jiehao 赞同来自: this.btn.graphics.drawTexture(window.music.btn_on) ; this.btn.pivot(75/2 , 75/2) ; this.btn.x = window.client_width - 25 ; this.btn.y = 25 ; this.btn.scaleX = 25 / 75 ; this.btn.scaleY = 25 / 75 ; Laya.stage.addChild(this.btn) ...

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

114. 预制体添加刚体后,和其它刚体碰撞后不能修改角度和位置 [ 75%]

...置  onTriggerEnter(other,self,contact)     {         var n=this.owner.rotation;         if(other.label === "heng"){             console.log("角度"+this.owner.rotation);             this.owner.rotation=180-n;             console.log("角...

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

115. TextInput 在panle里滚动后输入位置错乱,求解 [ 75%]

...多少? 2018-06-25 0 6 分享 微博 QZONE 微信 水晶 赞同来自: this.input.on(Laya.Event.FOCUS,this,()=>{ this.board.scrollPane.touchEffect = false; }) this.input.on(Laya.Event.BLUR,this,()=>{ this.board.scrollPane.touchEffect = true; }) 2019-03-18 0 0 分享 微博 QZONE 微信 为...

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

116. 怎么做到第二次点击color的时候lable背景颜色变回原来的颜色 [ 75%]

...做到第二次点击color的时候lable背景颜色变回原来的颜色 this.label.bgColor = "#ff0400"; start(): void { this.color_btn.on(Laya.Event.CLICK, this, this.onTipClick); } if(tipBtn == this.color_btn){ this.label.bgColor = "#ffffff";   2019-07-22 添加评论 免费帖 --> 分享 微博...

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

117. 用laya自带的ui编辑器 编辑了一个ui界面,怎么加载啊? 怎么写代码让这个ui界面, 在程序运行时,显示出来啊? [ 75%]

...?   STATICATTR$(TestPageUI,         ['uiView',function(){return this.uiView={"type":"View","child":[{"props":{"x":0,"y":0,"skin":"comp/bg.png","sizeGrid":"30,4,4,4","width":600,"height":400},"type":"Image"},{"props":{"x":41,"y":56,"skin":"comp/button.png","label":"点我赋值","width":150,...

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

118. matterjs渲染laya的ui [ 75%]

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

119. 三星手机 list中元素 点击触发拖动 元素不响应点击 [ 75%]

...星的 点击时候容易触发touchmove   根据touchstart里记录的_this.mouseDownTime  结合touchmove的时候的时间 做了时间差判断。。加了变量控制是否开启时间差判断。。   2017-12-19 0 0 分享 微博 QZONE 微信 为什么被折叠? 0 个回复被折叠 要回...

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

120. 在开发域绘制list后 显示出来了 但点击会报下面的错误 [ 75%]

... 但点击会报下面的错误 WAGame.js:3 gameSubContextThirdScriptError this._stage._canvasTransform.invertTransformPoint is not a function;at requestAnimationFrame callback function TypeError: this._stage._canvasTransform.invertTransformPoint is not a function at MouseManager.__proto.initEvent (...

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