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

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

121. 使用mask后,只要调用 Laya.Resource.destroyUnusedResources() 就会引起报错 [ 69%]

...e(); bgSprite.graphics.drawRect(0, 0, 200, 200, "#0xFFFF00"); bgSprite.pos(300, 300); Laya.stage.addChild(bgSprite); let mask = new Laya.Sprite(); bgSprite.mask = mask; mask.graphics.drawCircle(0, 0, 100, "0x0000FF"); window.onblur = function() { console.log("onblur....?"); Laya.timer.once(2000, nul...

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

122. 绘制圆形与扇形(ActionScript-LayaAir基础篇(AS3)-矢量图) [ 69%]

...ite_DrawShapes()         {             Laya.init(500, 300);             drawSomething();         }            private function drawSomething():void         {             sp = new Sprite();             Laya.stage....

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

123. 2D物理-碰撞过滤器 [ 69%]

...232628"; this.createHouse(); for (var i = 1; i <= 3; i++) { this.createBox(300, 300, 20, 20, i); this.createTriangle(500, 300, 20, i); this.createCircle(700, 300, 10, i); } } private function createHouse() { var house= new Sprite(); Laya.stage.addChild(house); var rigidbody: RigidBody = house.addCom...

来源: Laya2.0_示例 发布时间: 20241124

124. 请问laya2.0 2d物理有射线检测功能吗 [ 69%]

...point) console.log("normal",normal) console.log("fraction",fraction) },{ x:300, y:100 },{ x:300, y:1000 }) //每碰到一个物体就会触发一次回调函数,没碰到物体就不会触发 //在回调函数里加上renturn 0 ,可以中断检测,比如只想检测碰到的第一个物体时...

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

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

... constructor()         {             Laya.init(500, 300, WebGL);             this.drawSomething();         }            private drawSomething(): void {             this.sp = new Sprite();             Laya.stage.addChi...

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

126. textinput(type=password)手机打开华为安全键盘后,无法关闭(官网的例子) [ 68%]

...var WebGL = Laya.WebGL;     var SPACING = 100;     var INPUT_WIDTH = 300;     var INPUT_HEIGHT = 50;     var Y_OFFSET = 50;     var skins;     (function()     {         // 不支持WebGL时自动切换至Canvas         Laya.init(800, 600, WebGL);         Laya.s...

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

127. BackGround.super(this);这个报错 Cannot read property 'call' of undefined [ 68%]

...11 赞同来自: var shouye=(function(){ (function shouye(){ Laya.init(100,300); this.bgimg=new BackGround(); Laya.stage.addChild(this.bgimg); })(); return shouye; })(); var BackGround = (function (_super) { function BackGround() { BackGround.super(this); this.bg=new Laya.sprite; this.bg.loaImage(...

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

128. 富文本:LayaAir下 HtmlDivElement的使用汇总 [ 68%]

...Element=new HTMLDivElement(); html3.style.lineHeight=30; html3.style.width=300; html3.style.align="center"; html3.innerHTML="&lt;br/&gt;&lt;span&gt;  我的第一行要换行&lt;/span&gt;"; Laya.stage.addChild(html3); var sp:Sprite=new Sprite(); sp.graphics.drawRect(0,0,300,30,null,"#999999"); Lay...

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

129. 绘制直线与折线(JavaScript-LayaAir基础篇(JS)-矢量图) [ 68%]

...   {         //初始化舞台         Laya.init(500, 300, WebGL);         drawSomething();     })();       function drawSomething()     {         sp = new Sprite();         Laya.stage.addChild(sp);         //画直线      ...

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

130. HTMLDivElement 2.0 只有单行内容是 水平排版不居中 [ 68%]

...中。   异常情况 正常情况     代码如下   htmlDiv.width = 300; htmlDiv.height = 100; htmlDiv.style.color =  color; htmlDiv.style.leading = leading; htmlDiv.style.align = "center"; htmlDiv.innerHTML = "确定要退出副本吗?"; 附件 : --> 2019-02-27 添加评论 免费帖 --> ...

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