
Unity 编辑器插件与实用工具。
YetAnotherHttpHandler brings the power of HTTP/2 to Unity and .NET Standard. This library enables the use of HTTP/2, which Unity does not support. It allows you to use grpc-dotnet instead of the deprecated C-core gRPC library. It can also be used for asset downloading via HTTP/2, providing more functionality to your projects. The library is implemented as a HttpHandler for HttpClient, so you can use the same API by just replacing the handler. (drop-in replacement)。
使用说明:Create an instance of YetAnotherHttpHandler and pass it to HttpClient.;csharp using Cysharp.Net.Http; using var handler = new YetAnotherHttpHandler(); var httpClient = new HttpClient(handler); var result = await httpClient.GetStringAsync(";Unity support (including Apple Silicon support);Compatible with gRPC (grpc-dotnet)。
















