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

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

51. UI-Input [ 87%]

...his, onLoadComplete)); //加载资源。 })(); function onLoadComplete() { for (var i = 0; i ; constructor() { // 不支持WebGL时自动切换至Canvas Laya.init(800, 600, WebGL); Laya.stage.alignV = Stage.ALIGN_MIDDLE; Laya.stage.alignH = Stage.ALIGN_CENTER; Laya.stage.scaleMode = Stage.SCALE_SHOW...

来源: Laya_示例 发布时间: 20241118

52. 网络和格式-Socket [ 87%]

...onstrate "); // 使用output.writeByte发送 let message = "demonstrate "; for (let i = 0; i "); // 使用output.writeByte发送 var message: string = "demonstrate "; for (var i: number = 0; i "); // 使用output.writeByte发送 var message:String = "demonstrate "; for (var i:int = 0; i < message.le...

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

53. Sprite-容器 [ 87%]

...tn = new Sprite(); Laya.stage.addChild(apesCtn); // 添加4张猩猩图片 for (var i = 0; i < 4; i++) { var ape = new Sprite(); ape.loadImage("../../res/apes/monkey" + i + ".png"); ape.pivot(55, 72); // 以圆周排列猩猩 ape.pos( Math.cos(radianUnit * i) * layoutRadius, Math.sin(radianUnit * i)...

来源: Laya_示例 发布时间: 20241118

54. 计时器-延迟调用 [ 87%]

...a.stage.bgColor = "#232628"; demonstrate(); })(); function demonstrate() { for (var i = 0; i < 10; i++) { Laya.timer.callLater(this, onCallLater); } } function onCallLater() { console.log("onCallLater triggered"); var text = new Text(); text.font = "SimHei"; text.fontSize = 30; text.color = "#FFFFFF...

来源: Laya_示例 发布时间: 20241118

55. Node.prototype._activeHierarchy存在的bug或者说是onEnable和onAwake的坑 [ 87%]

...0x02,true);         if (this._components){             for (var i=0,n=this._components.length;i &lt; n;i++){                 var comp=this._components[i];                 comp._setActive(true);                 (comp._isScript())&amp...

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

56. 3D 鼠标检测 错乱 [ 87%]

...his._eventList.length; var cameras=this._scene._cameraPool; if (n &gt; 0){ for (i=0;i &lt; n;i++){ var e=this._eventList; switch (e.type){ case "mousedown": this._mouseTouchDown(); break ; case "mouseup": this._mouseTouchUp(); break ; case "mousemove":; var mousePoint=Input3D._tempPoint; mousePoint....

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

57. 高级应用-渲染纹理 [ 87%]

...); var camera = scene.addChild(new Laya.Camera(0, 0.1, 1000)); camera.transform.translate(new Laya.Vector3(0, 0.5, 1)); camera.transform.rotate(new Laya.Vector3(-10, 0, 0), true, false); camera.addComponent(CameraMoveScript); var renderTargetCamera = scene.addChild(new Laya.Camera(0, 0.1, 1000)); re...

来源: Laya_示例 发布时间: 20241118

58. 为什么会出现报错 ani not found:ufo1_down [ 86%]

...,onLoop); } function onLoop() { // 遍历所有飞机,更改飞机状态 for(var i = Laya.stage.numChildren - 1; i &gt; 0; i--) { // 接收舞台子对象 var role = Laya.stage.getChildAt(i); // 判断是否有飞机,并且是否有速度值 if(role &amp;&amp; role.speed){ // 根据飞机速度...

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

59. UI-Tree [ 86%]

...)(); function onLoadComplete() { // 组装tree的数据 var treeData = ""; for (var i = 0; i "; for (var j = 0; j "; } treeData += ""; } treeData += ""; // 解析tree的数据 var xml = Utils.parseXMLFromString(treeData); var tree = new Tree(); tree.scrollBarSkin = "../../res/ui/vscroll.png"; tree.i...

来源: Laya_示例 发布时间: 20241118

60. UI-RadioGroup [ 86%]

...Handler.create(this, initRadioGroups)); })(); function initRadioGroups() { for (var i = 0; i ; constructor(){ // 不支持WebGL时自动切换至Canvas Laya.init(800, 600, WebGL); Laya.stage.alignV = Stage.ALIGN_MIDDLE; Laya.stage.alignH = Stage.ALIGN_CENTER; Laya.stage.scaleMode = Stage.SCALE_SHOWA...

来源: Laya_示例 发布时间: 20241118