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

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

1. Clip属性详解(JavaScript-IDE篇(JS)-IDE组件属性详解) [ 100%]

...er.width) / 2 - 35; counter.y = (Laya.stage.height - counter.height) / 2 - 40; Laya.stage.addChild(counter); } function showTotalSeconds() { var clip = new Clip(clipSkin, 10, 1); clip.index = clip.clipX - 1; clip.pos(counter.x + 60, counter.y); Laya.stage.addChild(clip); } function createController(...

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

2. Clip属性详解(TypeScript-IDE篇(TS)-IDE组件属性详解) [ 95%]

.../ 2 - 35; this.counter.y = (Laya.stage.height - this.counter.height) / 2 - 40; Laya.stage.addChild(this.counter); } private showTotalSeconds(): void { var clip: Clip = new Clip(this.clipSkin, 10, 1); clip.index = clip.clipX - 1; clip.pos(this.counter.x + 60, this.counter.y); Laya.stage.addChild(clip...

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

3. Clip属性详解(ActionScript-IDE篇(AS3)-IDE组件属性详解) [ 91%]

...er.width) / 2 - 35; counter.y = (Laya.stage.height - counter.height) / 2 - 40; //加载到舞台 Laya.stage.addChild(counter); } /***显示总数切片***/ private function showTotal():void { //实例化总数切片 var clip:Clip = new Clip(clipSkin, 10, 1); //总数切片索引为最后一个 clip....

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