大约有 844 项符合查询结果, 库内数据总量为 30,786 项。 (搜索耗时: 0.0044 秒)
Laya_社区(556) Laya3.0_api(65) Laya2.0_api(58) Laya2.0_文档(55) laya_api(54) Laya2.0_示例(20) Laya3.0_文档(18) Laya_示例(18)
...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
...ite_DrawShapes() { Laya.init(500, 300); drawSomething(); } private function drawSomething():void { sp = new Sprite(); Laya.stage....
来源: Laya2.0_文档 发布时间: 20210715
...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
...point) console.log("normal",normal) console.log("fraction",fraction) },{ x:300, y:100 },{ x:300, y:1000 }) //每碰到一个物体就会触发一次回调函数,没碰到物体就不会触发 //在回调函数里加上renturn 0 ,可以中断检测,比如只想检测碰到的第一个物体时...
来源: Laya_社区 发布时间: 20190519
... constructor() { Laya.init(500, 300, WebGL); this.drawSomething(); } private drawSomething(): void { this.sp = new Sprite(); Laya.stage.addChi...
来源: Laya2.0_文档 发布时间: 20210715
...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
...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
...Element=new HTMLDivElement(); html3.style.lineHeight=30; html3.style.width=300; html3.style.align="center"; html3.innerHTML="<br/><span> 我的第一行要换行</span>"; Laya.stage.addChild(html3); var sp:Sprite=new Sprite(); sp.graphics.drawRect(0,0,300,30,null,"#999999"); Lay...
来源: Laya_社区 发布时间: 20161027
... { //初始化舞台 Laya.init(500, 300, WebGL); drawSomething(); })(); function drawSomething() { sp = new Sprite(); Laya.stage.addChild(sp); //画直线 ...
来源: Laya2.0_文档 发布时间: 20210715
...中。 异常情况 正常情况 代码如下 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