大约有 2,627 项符合查询结果, 库内数据总量为 30,778 项。 (搜索耗时: 0.0080 秒)
Laya_社区(2117) Laya2.0_文档(119) Laya3.0_api(106) Laya_示例(84) Laya2.0_api(57) Laya2.0_示例(55) laya_api(53) Laya3.0_文档(36)
... https://my.oschina.net/u/659068/blog/1564002 class Ball extends Laya.Sprite{ private static cached:boolean = false; private body:Laya.Sprite; constructor(){ super(); this.init(); } public init():void{ if(!Ball.cached){ Ball.cached = true; this.body = new Laya.Sprite(); this.body.loadImage("war/b...
来源: Laya_社区 发布时间: 20171108
...示对象,我看3d的addChild源码 if (!((node instanceof laya.d3.core.Sprite3D ))) throw new Error("Sprite3D:Node type must Sprite3D."); 是不支持的,请问有其他方式么? 麟。 • 2018-09-12 18:44 我的目的是想2d的ui可以有3d的坐标系Transform3D FullyI • 2019...
来源: Laya_社区 发布时间: 20180912
... 实例。 Returns NativeFilter Methods Static _filter _filter(this: RenderSprite, sprite: Sprite, context: any, x: number, y: number): void Defined in laya/filters/NativeFilter.ts:36 Parameters this: RenderSprite sprite: Sprite context: any x: number y: number Returns void Globals "laya/filters/Nat...
来源: Laya3.0_api 发布时间: 20231115
...onRemoveClick回调 大致代码如下:package { import laya.display.Sprite; import laya.events.Event; import laya.net.Loader; import laya.ui.Box; import laya.ui.CheckBox; import laya.ui.Clip; import laya.utils.Handler; import ui.test.ListPageUI; public class LayaUISample { private var listP:Li...
来源: Laya_社区 发布时间: 20170313
.../初始化引擎 Laya.init(600, 400); Laya.stage.bgColor="#eeffcc"; var sp:Sprite=new Sprite(); sp.graphics.drawRect(0,0,200,200,"#FF0000"); Laya.stage.addChild(sp); var timeLine:TimeLine=new TimeLine(); timeLine.on(Event.LABEL,this,onLabel); timeLine.addLabel("A",0).to(sp,{rotation:360},700) .addLa...
来源: Laya_社区 发布时间: 20161229
...有什么方法可以,通过某个标签来获取所有具备此标签的sprite? 比如飞机大战例子中做碰撞检测,我觉得都添加到roleBox中不太合理 如果能给sprite贴标签,sprite可以具备多个标签,然后通过标签直接获取sprite,就像dom的getElementsB...
来源: Laya_社区 发布时间: 20171110
... = Laya.Browser, WebGL = Laya.WebGL, Stage = Laya.Stage, Stat = Laya.Stat, Sprite = Laya.Sprite; // 不支持WebGL时自动切换至Canvas Laya.init(Browser.clientWidth, Browser.clientHeight, WebGL); Laya.stage.alignV = Stage.ALIGN_MIDDLE; Laya.stage.alignH = Stage.ALIGN_CENTER; Laya.stage.scaleMode...
来源: Laya2.0_示例 发布时间: 20241118
请问如何通过Laya.plane创建一个sprite3d的plane? 通过数学计算得到了一个Laya.Plane类,我想通过 Laya.PrimitiveMesh.createPlane(h,w)这种方法把这个平面创建出来,应该怎么办? 2021-02-18 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到...
来源: Laya_社区 发布时间: 20210218
...自: 常山赵子龙 let asteroid = asteroidBox.getChildAt(0) as Laya.Sprite3D; asteroidBox.transform.position = new Laya.Vector3(Strong.rangeRandomFloat(-5, 5), 0, 15.4); //asteroidBox.transform.position = new Laya.Vector3(0, 0, 7); //...
来源: Laya_社区 发布时间: 20191115
...三角形,示例代码如下: ```javascript (function() { var Sprite = Laya.Sprite; var Stage = Laya.Stage; var WebGL = Laya.WebGL; var sp; (function() { //初始化舞台,不支持WebGL时自动切换至Canvas ...
来源: Laya2.0_文档 发布时间: 20210715