docs(07): align replay param type table with the renumbered codes

This commit is contained in:
unanmed 2026-09-16 13:27:38 +08:00
parent 286edefd1d
commit 0224c2e67e

View File

@ -249,11 +249,13 @@ export interface IReplayArray {
* - 1: int8
* - 2: int16
* - 3: int32
* - 4: int64
* - 5: float
* - 6: bigint
* - 7: string
* - 8 ~ 255: n - 7
* - 4: 非负 int64
* - 5: int64
* - 6: float
* - 7: 非负 bigint
* - 8: bigint
* - 9: string
* - 10 ~ 255: n - 9
*/
getParamArray(): ArrayBuffer;
@ -334,15 +336,17 @@ export interface IReplaySystemSave {
*
*
*
* - 0: boolean --- 2 Byte
* - 1: int8 --- 2 Byte
* - 2: int16 --- 3 Byte
* - 3: int32 --- 5 Byte
* - 4: int64 --- 9 Byte
* - 5: float --- 9 Byte
* - 6: bigint --- n + 1 Byte, n bigint
* - 7: string --- n + 1 Byte, n
* - 8 ~ 255: n - 7 --- n + 1 Byte, n
* - 0: boolean --- 2 Byte
* - 1: int8 --- 2 Byte
* - 2: int16 --- 3 Byte
* - 3: int32 --- 5 Byte
* - 4: int64 --- 9 Byte
* - 5: int64 --- 9 Byte
* - 6: float --- 9 Byte
* - 7: bigint --- n + 2 Byte, n bigint
* - 8: bigint --- n + 2 Byte, n bigint
* - 9: string --- n + 5 Byte, n
* - 10 ~ 255: n - 9 --- n + 1 Byte, n
*/
readonly paramArray: ArrayBuffer;
}