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

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

2691. 分享:List相关(Item增删功能) [ 41%]

...laya.ui.Clip; import laya.utils.Handler; import ui.test.ListPageUI; public class LayaUISample { private var listP:ListPageUI;//UI面板 private var arr:Array;//list数据数组 public function LayaUISample() { //初始化引擎 Laya.init(600, 800); Laya.stage.bgColor = "#ffcccc"; //加载界面需...

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

2692. laya.d3.core.material.PBRSpecularMaterial [ 41%]

API DocumentationAll Packages | All Classes | Index | Frames No Frames PBRSpecularMaterialProperties | Methods | Constants Packagelaya.d3.core.materialClasspublic class PBRSpecularMaterialInheritancePBRSpecularMaterial BaseMaterial laya.resource.Resource PBRSpecularMaterial 类用于实现...

来源: Laya2.0_api 发布时间: 20190513

2693. laya.ui.ColorPicker [ 41%]

API DocumentationAll Packages | All Classes | Index | Frames No Frames ColorPickerProperties | Methods | Events Packagelaya.uiClasspublic class ColorPickerInheritanceColorPicker UIComponent Sprite Node EventDispatcher Object ColorPicker 组件将显示包含多个颜色样本的列表,...

来源: Laya2.0_api 发布时间: 20190513

2694. Resources already exist,is repeated loading 加载特效报重复加载 [ 41%]

...ready exist,is repeated loading 加载特效报重复加载 export default class TransformDemo{     private scene:Laya.Scene3D;     private position:Laya.Vector3 = new Laya.Vector3(0, 0, 0);     private position1:Laya.Vector3 = new Laya.Vector3(0, 0, 0);     private rotate:Laya.Vector...

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

2695. 材质的功能介绍(TypeScript-3D基础(TS)-LayaAir3D之Material材质) [ 41%]

...址](https://layaair.ldc.layabox.com/api2/Chinese/index.html?category=3D&class=laya.d3.core.render.BaseRender))。 ​ 获取的材质分为两种类型: ​ 自身材质 **Material**,如果自身材质被修改了,只有自身模型显示进行变化; ​ 共享材质 **SharedMaterial** ...

来源: Laya2.0_文档 发布时间: 20210715

2696. [临时解决]bug?加载sk问题 [ 41%]

...  this.preload(this.onPreloaded.bind(this));      }      Laya.class(Test01, 'view.Test01', _super);      var _proto = Test01.prototype;      _proto.preload = function (complete) {         console.log("preload..." + (++this.numPreloadCalls));          if (this.d...

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

2697. laya.d3.core.material.PBRStandardMaterial [ 41%]

API DocumentationAll Packages | All Classes | Index | Frames No Frames PBRStandardMaterialProperties | Methods | Constants Packagelaya.d3.core.materialClasspublic class PBRStandardMaterialInheritancePBRStandardMaterial BaseMaterial laya.resource.Resource PBRStandardMaterial 类用于实现...

来源: Laya2.0_api 发布时间: 20190513

2698. 加载的时候动画会卡 [ 41%]

...uanjing);         Laya.propertyIsEnumerable = true;     }     Laya.class(Lload,"Lload",ui.loadUI);     Lload.prototype.dh = function(){         this.ani1.play(0,true);         Tween.to(this.bigfont,{scaleX:1,scaleY:1},500,Ease.backOut,null,0)         Tween.to(this.smallfont,{y:...

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

2699. laya.d3.core.material.PBRMaterial [ 40%]

API DocumentationAll Packages | All Classes | Index | Frames No Frames PBRMaterialProperties | Methods | Constants Packagelaya.d3.core.materialClasspublic class PBRMaterialInheritancePBRMaterial BaseMaterial laya.resource.ResourcePublic Properties Hide Inherited Public Properties Show Inhe...

来源: laya_api 发布时间: 20170929

2700. WebSocket发送与接收数据(TypeScript-LayaAir基础篇(TS)-数据与通信) [ 40%]

...目。声明一个Socket实例,声明一个Byte实例: ```typescript class Game { private socket: Laya.Socket; private byte: Laya.Byte; constructor() { //初始化引擎 Laya.init(600, 400, Laya.WebGL); this.byte = new Laya.Byte(); //这里我们采用小端 this.byte.endian = Laya.Byte.LITTLE_E...

来源: Laya2.0_文档 发布时间: 20210714