大约有 56 项符合查询结果, 库内数据总量为 30,778 项。 (搜索耗时: 0.0044 秒)
Laya2.0_文档(26) Laya_社区(12) Laya3.0_文档(12) Laya3.0_api(3) laya_api(1) Laya2.0_示例(1) Laya2.0_api(1)
...ut.addAxisEvent(1,AxiGamepad.EVENT_OUTPUT,this,this.RightAxisEvent); } /** 省略的代码请前往官网示例查看 **/ 以上的代码,并不是全部代码,关于oculus显示与交互的全部代码请前往官网示例中查看。 3.2.2 demo测试提示 代码编译好之后,直接前往O...
来源: Laya3.0_文档 发布时间: 20230303
...ny): void { // 假如碰到了炸弹 if (other.label == "bomb") { // 此处省略爆炸伤害的逻辑 console.log("碰到炸弹:" + self.label + "受到伤害,生命值减少xx"); } else if (other.label == "Medicine") { // 假如碰到了药箱 // 此处省略恢复生命值的逻辑 console.lo...
来源: Laya3.0_文档 发布时间: 20241014
...=== "buttle") { //碰撞到子弹后,增加积分,播放声音特效 //省略若干代码…… } else if (other.label === "ground") { //只要有一个盒子碰到地板,则停止游戏 //省略若干代码…… } } 3.2.7 编辑碰撞体形状 点击编辑碰撞体形状,可以使得该碰...
来源: Laya3.0_文档 发布时间: 20241014
...byte1.buffer,6);//把byte1的数据从第六个字节开始读入byte中。省略其中的浮点数20.0和整数16 byte.pos = 0;// console.log(byte.readUTFString())//从byte中读出字符串。 读取数据 getByte():number 从字节流中读取带符号的字节。 getInt16():number 从字节流...
来源: Laya3.0_文档 发布时间: 20241014
...em内容 this.LmsgText = new Label(); this.LmsgText.text = "测试消息,省略10字……"; this.addChild(this.LmsgText); this.LmsgText.font = "SimHei"; this.LmsgText.fontSize = 18; this.LmsgText.color = "#322f2f"; this.LmsgText.pos(88, 56); this.LmsgText.width = 307; this.LmsgText.height = 20; /...
来源: Laya2.0_示例 发布时间: 20241118
...点到弧线起点的直线,因此,绘制圆角矩形时,lineTo可以省略。 2.6.3 绘制圆角矩形示例 下面绘制一个圆角弧线半径为30的圆角矩形,示例代码如下: let sp = new Laya.Sprite(); //自定义路径 var path:any[] = [ ["moveTo", 0, 0], //画笔的起始点...
来源: Laya3.0_文档 发布时间: 20241014