feat(network): 添加状态同步和客户端预测模块 (#330)

* feat(network): 添加状态同步和客户端预测模块

- 添加状态快照接口和快照缓冲区实现
- 实现线性插值和赫尔米特插值器
- 实现客户端预测和服务器校正系统
- 添加网络相关蓝图节点 (IsLocalPlayer, IsServer 等)

* chore: update pnpm-lock.yaml
This commit is contained in:
YHH
2025-12-25 14:03:12 +08:00
committed by GitHub
parent f43631a1e1
commit 25936c19e9
13 changed files with 1235 additions and 2 deletions

View File

@@ -9,5 +9,8 @@
"moduleResolution": "node"
},
"include": ["src/**/*"],
"exclude": ["node_modules", "dist", "**/*.test.ts"]
"exclude": ["node_modules", "dist", "**/*.test.ts"],
"references": [
{ "path": "../blueprint" }
]
}