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

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

161. 在父sprite中添加子sprite ,移动父Spritesprite为什么不动? [ 88%]

在父sprite中添加子sprite ,移动父Spritesprite为什么不动? (function(){ // 配置数据 var data = configJSON; // 目标等级 var target = { "tower":{"level":1}, "aeroboat":{"level":1}, "mountain":{"level":1}, "statue":{"level":1}, "angel":{"level":1} }; var towerLel = target.to...

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

162. 为什么Laya.Panel的子节点在(0,0)位置会不显示呢? [ 88%]

....width = 800; panel.y = 30; panel.hScrollBarSkin = null; var sp = new Laya.Sprite(); panel.addChild(sp); sp.x = 0; sp.y = 0; // 用下面这组数据是可显示的 // sp.y = 1; // sp.x = 1; sp.graphics.drawRect(0, 0, 200, 200, "#00FF00"); Laya.stage.addChild(panel);   这个是我的代码,sp是...

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

163. 屏幕适配的缩放模式详解(TypeScript-2D基础篇(TS)-屏幕适配) [ 88%]

...Text = Laya.Text;     import Image = Laya.Image;     import Sprite = Laya.Sprite;       export class SmartScale_T {           //适配模式         private modes:string = "exactfit";         //全局文本信息         private txt: Text...

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

164. 鼠标交互-拖动 [ 88%]

...种开发语言、LayaAirIDE让项目开发更高效。(function() { var Sprite = Laya.Sprite; var Stage = Laya.Stage; var Event = Laya.Event; var Rectangle = Laya.Rectangle; var Texture = Laya.Texture; var Browser = Laya.Browser; var Handler = Laya.Handler; var WebGL = Laya.WebGL; var ApePath = ".....

来源: Laya_示例 发布时间: 20241117

165. 绘制形状时事件不触发 [ 88%]

...件不触发 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, color1, 0);     functi...

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

166. 请问如何在Sprite上显示文本 [ 88%]

请问如何在Sprite上显示文本 请问如何在Sprite上显示文本,比如我用Sprite加载了一个砖块图片,想在这个砖块上显示对应的分数 2018-03-22 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请: 与内容相关的链接 提交...

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

167. graphics 问题 [ 88%]

...内容相关的链接 提交 3 个回复 cuixueying 赞同来自: var sp:Sprite=new Sprite(); sp.graphics.save(); var matrix:Matrix=new Matrix(); matrix.rotate(45); matrix.translate(100,100); sp.graphics.transform(matrix); sp.graphics.drawRect(0,0,200,100,"#FF0000"); sp.graphics.restore(); Laya.stag...

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

168. 绘制圆形与扇形(TypeScript-LayaAir基础篇(TS)-矢量图) [ 88%]

...形,示例代码如下: ```javascript module laya {     import Sprite = Laya.Sprite;     import Stage = Laya.Stage;     import WebGL = Laya.WebGL;        export class Sprite_DrawShapes {         private sp: Sprite;            constructor()   ...

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

169. 如何给Sprite的graphics绘制的线条添加发光滤镜? [ 88%]

如何给Sprite的graphics绘制的线条添加发光滤镜? 2017-03-13 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请: 与内容相关的链接 提交 1 个回复 cuixueying 赞同来自: bluesky var sp:Sprite=new Sprite(); sp.graphics.drawLine(0,0,200,2...

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

170. 如何移动sprite3d [ 88%]

如何移动sprite3d 新建了个空场景,场景里添加了一个sprite3d对象pos,然后将模型和相机作为pos的子对象添加进去,使用pos.transform.translate移动pos,发现并没有用 2018-01-25 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 ...

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