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

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

71. Sprite-轴心点 [ 93%]

...tage.height / 2); //设置轴心点为中心 sp1.pivot(55, 72); Laya.stage.addChild(sp1); //不设置轴心点默认为左上角 sp2 = new Sprite(); sp2.loadImage("../../res/apes/monkey2.png", 0, 0); sp2.pos((Laya.stage.width + gap) / 2, Laya.stage.height / 2); Laya.stage.addChild(sp2); Laya.timer.f...

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

72. UI-Tree [ 93%]

...景。 selectBox.height = 32; selectBox.x = 13; selectBox.left = 12; this.addChild(selectBox); var folder = new Clip("../../res/ui/tree/clip_tree_folder.png", 1, 3); folder.name = "folder"; //设置 folder 的name 为“folder”时,将被识别为树结构的文件夹开启状态图表。2帧:...

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

73. UI-Tree [ 93%]

...ree.width) / 2; tree.y = (Laya.stage.height - tree.height) / 2; Laya.stage.addChild(tree); } } const Box = Laya.Box, Clip = Laya.Clip, Label = Laya.Label; // 此类对应的json对象: // {"child": [{"type": "Clip", "props": {"x": "13", "y": "0", "left": "12", "height": "24", "name": "selectBox", ...

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

74. 加载.lh文件 运行后黑屏 无法显示 [ 93%]

... onComplete():void {     //创建场景     var scene = Laya.stage.addChild(new Laya.Scene3D());     //创建相机     var camera = new Laya.Camera(0, 0.1, 100);     scene.addChild(camera);     camera.name = "camera";         //this.scene = Laya.stage.addChild(new La...

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

75. 骨骼动画-Spine事件 [ 93%]

...装(相当耗费内存) mArmature = mFactory.buildArmature(1); Laya.stage.addChild(mArmature); mArmature.pos(mStartX, mStartY); mArmature.scale(0.5, 0.5); mArmature.on(Event.LABEL, this, this.onEvent); mArmature.on(Event.STOPPED, this, this.completeHandler); this.play(); } completeHandler() { this.p...

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

76. 骨骼动画-Spine事件 [ 93%]

....x = mStartX; mArmature.y = mStartY; mArmature.scale(0.5, 0.5); Laya.stage.addChild(mArmature); mArmature.on(Event.LABEL, this, onEvent); mArmature.on(Event.STOPPED, this, completeHandler); play(); } function completeHandler() { play(); } function play() { mCurrIndex++; if (mCurrIndex >= mArmature.g...

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

77. DOM元素-表单输入 [ 93%]

...s.form.width) / 2, (Laya.stage.height - this.form.height) / 2); Laya.stage.addChild(this.form); this.rowHeight = 30; this.rowSpacing = 10; var rowHeightDelta = this.rowSpacing + this.rowHeight; // 显示左侧标签 showLabel("邮箱", 0, rowHeightDelta * 0); showLabel("出生日期", 0, rowHeightDe...

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

78. DOM元素-表单输入 [ 93%]

...s.form.width) / 2, (Laya.stage.height - this.form.height) / 2); Laya.stage.addChild(this.form); this.rowHeight = 30; this.rowSpacing = 10; let rowHeightDelta = this.rowSpacing + this.rowHeight; // 显示左侧标签 this.showLabel("邮箱", 0, rowHeightDelta * 0); this.showLabel("出生日期", 0, r...

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

79. iphoneX 用微信打开游戏,,做新手引导 抠图有问题,,, [ 93%]

...蓝色方块,不被抠图 this.gameContainer = new Sprite(); Laya.stage.addChild(this.gameContainer); // 引导所在容器 this.guideContainer = new Sprite(); // 设置容器为画布缓存 this.guideContainer.cacheAs = "bitmap"; Laya.stage.addChild(this.guideContainer); this.gameContainer.on("cl...

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

80. Laya截图3D场景相关模型,导致模型透视! [ 93%]

...bin/res/modles/role_48_lurenyi/role_48_lurenyi.lh"; var scene = Laya.stage.addChild(new Laya.Scene()); var camera = scene.addChild(new Laya.Camera(0, 0.1, 100)); camera.transform.position = new Laya.Vector3(0, 0, 10); camera.transform.rotate(new Laya.Vector3(0, 180, 0), true, false); camera.orthogra...

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