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

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

161. 关于项目分包的问题?? [ 84%]

...代码如下:package { import flash.display.Sprite; import flash.display.StageAlign; import flash.display.StageScaleMode; import flash.events.Event; import login.LoginView; [SWF(width=800,height=600,backgroundColor="0xffffff",frameRate=60)] public class Main extends Sprite { public function Main()...

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

162. [Error] TypeError: null is not an object (evaluating 'this._style._tf') [ 84%]

...his.reference.width, this.reference.height) 第二: 加Event.RESIZE Laya.stage.on(Laya.Event.RESIZE, this, Laya.Utils.fitDOMElementInArea, [this.videoElement, this.reference, 0, 0, this.reference.width, this.reference.height]) 第三: 离开这个有videoElement页面 也做了 Laya.stage.off(La...

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

163. 分享:Dragonbones/Spine的换肤操作 [ 84%]

...始化LayaAir引擎 Stat.show();//舞台左上角显示帧频信息 Laya.stage.bgColor='#EEFFCC';//设置舞台背景色 Laya.stage.alignH='center';//水平居中对齐 Laya.stage.alignV='middle';//垂直居中对齐 Laya.stage.scaleMode='showall';//缩放模式 Laya.stage.screenMode='horizontal';//...

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

164. 那个文本溢出需要滚动条怎么弄,API里面就说用Scroll接口,小白 不懂怎么弄 [ 84%]

...erColor = "#ffff00";this.txt.fontSize = 20;this.txt.color = "#ffffff";Laya.stage.addChild(this.txt);this.txt.on(Laya.Event.MOUSE_DOWN,this,startScrollText);}/*开始滚动文本*/function startScrollText(){this.prevX = this.txt.mouseX;this.prevY = this.txt.mouseY;Laya.stage.on(Laya.Event.MOUSE_MOVE,...

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

165. 如何主动抛出Event.RESIZE事件 [ 83%]

...何主动抛出Event.RESIZE事件 在设置DOM参考定位后需要在Laya.stage.on(Laya.Event.RESIZE。。。中生效。 但手机浏览器加载后,默认不会调用resize,需要手工触发一下才能生效。 如何在代码中主动发出resize事件呢 2017-07-17 添加评论 免费帖 ...

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

166. laya.ani.swf.MovieClip [ 83%]

...读]是否已经销毁。对象销毁后不能再使用。Node displayedInStage : Boolean[read-only] 表示是否在显示列表中显示。Node displayHeight : Number[read-only] 对象的显示高度(以像素为单位)。 Sprite displayWidth : Number[read-only] 对象的显示宽度(以...

来源: Laya2.0_api 发布时间: 20190513

167. 画了一个封闭的曲线,获取鼠标点击处的像素,为何坐标对不上导致拿不到正确位置的Texture? [ 83%]

...置的Texture? package { import laya.display.Sprite; import laya.display.Stage; import laya.events.Event; import laya.resource.HTMLCanvas; import laya.resource.Texture; import rain.core.StageReferance; public class Main { private var _view:Sprite; public function Main() { Config.isAntialias = true...

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

168. runTime使用(ActionScript-IDE篇(AS3)-组件化开发相关) [ 83%]

...hysics"].enable(); Laya["DebugPanel"] && Laya["DebugPanel"].enable(); Laya.stage.scaleMode = GameConfig.scaleMode; Laya.stage.screenMode = GameConfig.screenMode; Laya.stage.alignV = GameConfig.alignV; Laya.stage.alignH = GameConfig.alignH; //打开调试面板(IDE设置调试模式,或者url地...

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

169. 动画-旧版骨骼动画 [ 83%]

...言、LayaAirIDE让项目开发更高效。Laya3D.init(0, 0, true); Laya.stage.scaleMode = Laya.Stage.SCALE_FULL; Laya.stage.screenMode = Laya.Stage.SCREEN_NONE; var scene = Laya.stage.addChild(new Laya.Scene()); var camera = scene.addChild(new Laya.Camera(0, 0.1, 1000)); camera.transform.translate(...

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

170. 关于event中只读属性touches,问题,求解 [ 83%]

...DemoTouch { public function DemoTouch() { Laya.init(800, 600, WebGL); Laya.stage.bgColor = "#232628"; var txt:Text = new Text(); txt.text = "hello"; txt.color = "#FF00FF"; txt.width = 100; txt.height = 100; txt.x = 200; txt.y = 100; txt.fontSize = 50; txt.on("click", this, onFunc); Laya.stage.addChi...

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