大约有 905 项符合查询结果, 库内数据总量为 30,778 项。 (搜索耗时: 0.0058 秒)
Laya_社区(492) Laya2.0_文档(153) Laya3.0_api(61) Laya2.0_api(57) laya_api(53) Laya_示例(37) Laya3.0_文档(28) Laya2.0_示例(24)
...址](https://layaair.ldc.layabox.com/demo2/?language=ch&category=3d&group=Sprite3D&name=TransformDemo))代码,首先我们 **克隆** 两个猴子(克隆的知识点会在精灵Sprite3D的章节详细讲解),来看下效果,并且在克隆后为了方便观察我们2个猴子的位置。...
来源: Laya2.0_文档 发布时间: 20210715
...es/atlas/comp.json', Handler.create(this, function(){ container = new Laya.Sprite(); var x = 0,y =80; Laya.stage.addChild(container); for(var i=0;i<1200;i++){ var role = new Laya.Sprite(); x = x+0.1; y = y+0.1 role.x = x; role.y = y; role.loadImage('comp/bg.png'); container.addChild(role); var ro...
来源: Laya_社区 发布时间: 20180122
...age.width, Laya.stage.height); } } new SmartScale_T();module laya { import Sprite = Laya.Sprite; import Stage = Laya.Stage; import Text = Laya.Text; import Event = Laya.Event; import Image = Laya.Image; import WebGL = Laya.WebGL; export class SmartScale_T { //所有适配模式 private modes: Array ...
来源: Laya2.0_示例 发布时间: 20241118
...rogress*100)+"%"; } onLoaded() { this.cacheAnimation(); var waterBg = Laya.Sprite.fromImage("res/bg.png"); Laya.stage.addChild(waterBg); //创建背景 this.bg = []; this.bg[0] = new BackGround("res/bg1.png", 0.1); this.bg[0].pos(0, 0); Laya.stage.addChild(this.bg[0]); this.bg[1] = new BackGround("r...
来源: Laya_社区 发布时间: 20170103
...改的资源(可多选),在属性面板中将Texture Type属性改为Sprite Texture,也可以解决。以上是2DUI资源的解决方法。 2023-01-30 0 1 分享 微博 QZONE 微信 为什么被折叠? 0 个回复被折叠 该问题目前已经被锁定, 无法添加新回复 发起人 131**...
来源: Laya_社区 发布时间: 20230130
sprite.loadImage加载图片怎么设置要显示的x,y坐标和宽高? 代码: import TiledMap = Laya.TiledMap; class GameMain{ private tMap:TiledMap; constructor() { Laya.init(935, 224, Laya.WebGL); this.tMap = new TiledMap(); var viewRect: Laya.Rectangle = new Laya.Rectangle(0, 0, Laya.stage...
来源: Laya_社区 发布时间: 20190214
...ion():void { var img:Texture = Laya.loader.getRes("comp/comp.png"); 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:...
来源: Laya2.0_文档 发布时间: 20210714
...egClass() export class Script extends Laya.Script { //declare owner : Laya.Sprite3D; @property({ type: Laya.Scene3D }) scene3d: Laya.Scene3D; constructor() { super(); } /** * 组件被激活后执行,此时所有节点和组件均已创建完毕,此方法只执行一次 */ onAwake(): void { //We...
来源: Laya3.0_文档 发布时间: 20241014
...,如图1所示。在webgl的调试模式下,可以看到UI中每帧的Sprite渲染节点数为23个,DrawCall渲染次数为8,Shader材质提交次数为7次。(*该数据在优化后可以用于性能优化对比*) ![imgage](img/1.png) (图1) ## 1、cacheAs为normal的缓存优化 ...
来源: Laya2.0_文档 发布时间: 20210715
...,如图1所示。在webgl的调试模式下,可以看到UI中每帧的Sprite渲染节点数为23个,DrawCall渲染次数为8,Shader材质提交次数为7次。(*该数据在优化后可以用于性能优化对比*) ![imgage](img/1.png) (图1) ## 1、cacheAs为normal的缓存优化 ...
来源: Laya2.0_文档 发布时间: 20210714