大约有 517 项符合查询结果, 库内数据总量为 30,778 项。 (搜索耗时: 0.0041 秒)
...e = Stage.SCALE_SHOWALL; Laya.stage.bgColor = "#232628"; Laya.Stat.show(); this.cacheText(); } cacheText() { const Sprite = Laya.Sprite, Text = Laya.Text; let textBox = new Sprite(); Laya.stage.addChild(textBox); // 随机摆放文本 let text; for (let i = 0; i < 1000; i++) { text = new Text(); tex...
来源: Laya2.0_示例 发布时间: 20241118
...ZONE 微信 kylin 赞同来自: 第813行 Config.FunRestart=Handler.create(this,this.on重启); 定义的变量、函数名等,不要出现中文等非ASCII字符,变量的命名最好要符合规范。 LayaAirIDE里的压缩工具会分析代码,类似的中文命名的变量,通不过...
来源: Laya_社区 发布时间: 20180806
... */ __proto.clearForces=function(){ var rigidBody=this._nativeColliderObject; if (rigidBody==null) throw "Attempted to call a Physics function that is avaliable only when the Entity has been already added to the Scene."; ...
来源: Laya_社区 发布时间: 20190614
...:if(ProjectSetting.codeType==0){ imports+=" import "+lib+";\n"; }else if(this.projectSetting.codeType==1&&lib.lastIndexOf(".ts")==lib.length-3){ libName=lib.substring(lib.lastIndexOf("/")+1,lib.length); if(libName.lastIndexOf(".")>=0){ libName=libName.substring(0,libName.lastIndexOf("."...
来源: Laya_社区 发布时间: 20190531
...NE 微信 ohkei - as3、as2、h5 赞同来自: Laya.stage.on(Event.RESIZE, this, resizeFn); resizeFn(); 你在监听Event.RESIZE的同时,调用一下你的方法resizeFn();不就行了嘛 2017-08-02 0 0 分享 微博 QZONE 微信 为什么被折叠? 0 个回复被折叠 要回复问题请先...
来源: Laya_社区 发布时间: 20170717
...r scene: Laya.Scene = Laya.stage.addChild(new Laya.Scene()) as Laya.Scene; this.rotation = new Laya.Vector3(0, 0.002, 0); //与3d场景的不同是添加了vr相机 var vrCamera: Laya.VRCamera = scene.addChild(new Laya.VRCamera(0.03, 0, 0, 0.1, 100)) as Laya.VRCamera; vrCamera.transform.translate(ne...
来源: Laya_示例 发布时间: 20241118
...eScript脚本写控制摄像机移动的功能, var yPRElem:Float32Array=this.yawPitchRoll.elements; 附件 : --> 2019-02-26 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请: 与内容相关的链接 提交 2 个回复 Laya_Aaron 赞同来自: 可能是...
来源: Laya_社区 发布时间: 20190226
... ```typescript Mesh.load("res/threeDimen/Physics/table.lm", Handler.create(this, function(mesh:Mesh):void { //....省略中间 //读取导出的桌子模型 var table:MeshSprite3D = scene.addChild(new MeshSprite3D(mesh)) as MeshSprite3D; //给桌子加刚体并且设置刚体属性 var rigidBody:Rig...
来源: Laya2.0_文档 发布时间: 20210714
...目开发更高效。class Physics_Physics_Strandbeests { constructor() { this.scale = 2.5; this.pos = [500, 400]; this.m_offset = [0, -80 * this.scale]; this.pivot = [0, 8 * this.scale]; Laya.Config.isAntialias = true; Laya.Laya.init(1200, 700, Laya.WebGL); Laya.Stat.show(); Laya.Physics.enable(); ...
来源: Laya2.0_示例 发布时间: 20241118
...learTextureRes引起的内存泄露以及恢复图片显示闪烁 Warning!,this class[MiniAdpter] already exist: Object {init: } 在js代码中,let 是什么意思 请问这两段用as3应该怎么写 看官方2.0的shader例子,模型视图投影矩阵定义的名称是u_MvpMatrix, 那相应单...
来源: Laya_社区 发布时间: 20170805