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

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

531. 报错,这不是个构造函数 "StartPage is not a constructor" [ 67%]

...ple: var LayaSample = (function(){ (function(){ Laya.init(667,375); Laya.stage.bgColor = "#ffcccc"; Laya.loader.load("res/atlas/ui.atlas",Laya.Handler.create(this,onLoaded),null,Laya.Loader.ATLAS); })() function onLoaded(){ var StartPage = new StartPage(); Laya.stage.addChild(StartPage); var GameP...

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

532. 舞台背景透明设置无效 [ 67%]

舞台背景透明设置无效 很奇怪 看stage的文档里面 说设置bgColor为null是舞台背景透明 但是设置了之后无效 还是黑色的 ,怎样才能让舞台透明呢   附件 : --> 2017-02-07 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已...

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

533. HTMLDivElement如何设置文本区域内可以上下拖动的效果 [ 67%]

...LDivElement; public function HelloLaya() { Laya.init(600, 600,WebGL); Laya.stage.bgColor="#eeffcc"; var sp:Sprite=new Sprite(); sp.graphics.drawRect(50,50,300,300,null,"#0000FF",2); Laya.stage.addChild(sp); html=new HTMLDivElement(); html.innerHTML="<span>哈哈哈哈哈</span>"; Laya.st...

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

534. laya.display.Input_API3.0 [ 67%]

...ponents customRenderEnable destroyed displayHeight displayWidth displayedInStage drawCallOptimize editable filters focus font fontSize globalRotation globalScaleX globalScaleY graphics height hideFlags hitArea html htmlParseOptions is3D italic leading lines mask maxChars maxScrollX maxScrollY maxWid...

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

535. 设置滤镜(ActionScript-LayaAir基础篇(AS3)-位图) [ 67%]

...下: ```java package { import laya.display.Sprite; import laya.display.Stage; import laya.filters.ColorFilter; import laya.resource.Texture; import laya.utils.Browser; import laya.utils.Handler; import laya.webgl.WebGL; public class Main { private const ApePath:String = "res/img/monkey1.png"; priv...

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

536. 矢量图缩放之后边界,边界线条与填充色分离了。。。。 [ 67%]

...除 鼠标滚轮缩放地图,怎么防止同时滚动网页? 获得,stage缩放比例 pos会影响精灵缩放效果的问题 如何获取stage在html中的缩放后的真实宽高 如何给Sprite的graphics绘制的线条添加发光滤镜? 当屏幕尺寸,缩放模式,横竖屏 发生改...

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

537. 射线检测报错,outHitInfo.sprite3D=null; [ 67%]

...Laya.Vector3.ZERO); this.phasorSprite3D = new Laya.PhasorSpriter3D(); Laya.stage.on(Laya.Event.MOUSE_DOWN,this,this.onMouseDown); }  private onMouseDown():void{ this.camera.viewportPointToRay(new Laya.Vector2(Laya.MouseManager.instance.mouseX,Laya.MouseManager.instance.mouseY),this.ray); Laya.Physi...

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

538. 怎么实现在同一个sprite上绑定多个click事件? [ 67%]

怎么实现在同一个sprite上绑定多个click事件? Laya.stage.on('click',null,function(){alert(11111)}).on('click',null,function(){alert(2222)}),这不是我想要的,我想实现点击两次舞台弹出不同的值,第一次点击舞台弹出111,再点击一下弹出222,并不是点击一...

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

539. ui.TestPUI() 找不到 [ 67%]

ui.TestPUI() 找不到   Laya.init(1334,750); Laya.stage.bgColor = "#ffffff"; Laya.loader.load("./res/atlas/blackMagic.atlas",Laya.Handler.create(this,onLoaded)); function onLoaded(){ var efc =new ui.TestPUI(); Laya.stage.addChild(efc); } //new ui.TestPUI(); 这个东西找不到。我是按照官...

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

540. 使用多个时间轴动画 demo.ani(0,true,'name')失效 [ 66%]

...失效 //初始化引擎 Laya.init(600, 400); //设置舞台背景色 Laya.stage.bgColor = "#ffffff"; //加载图集成功后,执行onLoaded回调方法 Laya.loader.load("res/atlas/ui/boos.atlas", Laya.Handler.create(this, onLoaded)); function onLoaded() { // //创建一个Animation实例 // var t...

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