大约有 118 项符合查询结果, 库内数据总量为 30,778 项。 (搜索耗时: 0.0081 秒)
..."); var sp:Sprite = new Sprite(); sp.graphics.drawTexture(img); Laya.stage.addChild(sp); })); Laya.loader.load("res/atlas/test.atlas", Handler.create(this, function():void { var img:Texture = Laya.loader.getRes("test/test.png"); var sp:Sprite = new Sprite(); sp.graphics.drawTexture(img); Laya.stage....
来源: Laya2.0_文档 发布时间: 20210714
... /* ……省略若干代码 */ //创建盒型MeshSprite3D let box = scene.addChild(new Laya.MeshSprite3D(Laya.PrimitiveMesh.createBox(sX, sY, sZ))) as Laya.MeshSprite3D; //创建静态碰撞器 let staticCollider:Laya.PhysicsCollider = box.addComponent(Laya.PhysicsCollider); //设置为触发器,...
来源: Laya2.0_文档 发布时间: 20210715
... new Laya.Sprite(); a.graphics.drawCircle(0, 0, 50, "#ff0000"); Laya.stage.addChild(a); a.size(100, 100); a.pos(200, 200); a.mouseEnabled = true; a.mouseThrough = true; a.on(Laya.Event.MOUSE_DOWN, null, function (e: Laya.Event): void { console.log("touch a"); } 因为需要将mouseThrough=true...
来源: Laya_社区 发布时间: 20161109
...行一次 */ onAwake(): void { let sprite = new Laya.Sprite(); Laya.stage.addChild(sprite); sprite.graphics.fillText("fillText:引擎绘制的文本,适合简单的单行文本", 100, 300, " 60px simHei ", "#ff0000", "left"); } 在Text与Label中,font仅仅是指系统字体,例如该文本是...
来源: Laya3.0_文档 发布时间: 20241014
...aterial; //把圆锥形3D节点对象添加到3D场景节点下 this.scene.addChild(cone); //设置随机位置 this.tmpVector.setValue(Math.random() * 6 - 2, 6, Math.random() * 6 - 2); cone.transform.position = this.tmpVector; //为圆锥形3D节点对象创建刚体碰撞器 let _rigidBody = <L...
来源: Laya3.0_文档 发布时间: 20241014
...代码如下: ```typescript this.text.text="原text文本"; Laya.stage.addChild(this.text); //不优化的写法是:this.text.text="替换的text文本"; this.text.changeText("替换的text文本"); ``` #### 2、尽可能使用对应的文本组件 每个不同的组件都是有自己独特的...
来源: Laya2.0_文档 发布时间: 20210715
...,把加载回调中返回的完整场景scene添加到舞台 Laya.stage.addChild(scene); //获取摄像机 var camera = scene.getChildByName("Main Camera"); /** ** 省略其它代码若干,可前往Layabox官网示例或相关文档中查看 */ })); ``` ##### 5.2.2 预设的加载与使用(.lh) ...
来源: Laya2.0_文档 发布时间: 20210714
...复初始化场景了。正确使用如下: var scene:Scene = Laya.stage.addChild(Scene.load("xxx")) as Scene; var camera:Camera = scene.addChild(new Camera()) as Camera; sfsmmc • 2017-05-23 10:25 @183*****755:确实是,谢谢你 156*****940 • 2018-08-24 23:17 北京赛车微信群...
来源: Laya_社区 发布时间: 20170428