executeCallbacks 执行时间缩放过渡结束回调
executeCallbacks
类型: MethodDeclaration
定义位置: time.ts
描述
执行时间缩放过渡结束回调
返回值
类型: void
源代码
位置: 第 149 行
private executeCallbacks(): void {
    if (this.callbacks !== null) {
      for (const callback of this.callbacks) {
        callback()
      }
      this.callbacks = null
    }
  }
文档生成时间:2025/7/21 20:53:39