* 更新增量快照基准 * * 将当前场景状态设为新的增量序列化基准 * * @param options 序列化选项 * * @example * ```typescript * // 创建初始快照 * scene.createIncrementalSnapshot(); * * // 进行一些修改并序列化 * const incremental1 = scene.serializeIncremental(); * * // 更新基准,之后的增量将基于当前
(options?: IncrementalSerializationOptions)
| 1472 | * ``` |
| 1473 | */ |
| 1474 | public updateIncrementalSnapshot(options?: IncrementalSerializationOptions): void { |
| 1475 | this.createIncrementalSnapshot(options); |
| 1476 | } |
| 1477 | |
| 1478 | /** |
| 1479 | * 清除增量快照 |
no test coverage detected