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

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

1. Sprite-节点控制 [ 100%]

... this.ape2.pos(200, 0); // 一只猩猩在舞台上,另一只被添加成第一只猩猩的子级 Laya.stage.addChild(this.ape1); this.ape1.addChild(this.ape2); Laya.timer.frameLoop(1, this, this.animate); } animate() { this.ape1.rotation += 2; this.ape2.rotation -= 4; } } new Sprite_NodeControl()...

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

2. 网络和格式-XML [ 71%]

...ype == 1) { trace("节点名称: " + node.nodeName); trace("元素节点,第一个子节点值为:" + node.firstChild.nodeValue); } // 本节点是文本节点 else if (node.nodeType == 3) { trace("文本节点:" + node.nodeValue); } trace("\n"); } } } }

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