KO
|
EN
gitlite — search
Search
#python
#automation
#ai-agent
#agentic-ai
#genpark
#llm-tools
#mcp-server
#llm
#open-source
#typescript
#agent-skills
#developer-tools
SimpleWebTransport
★ 31
Open GitHub ↗
No description available.
Download README (.md)
Explore Similar Repositories
vue3-autocomplete
:
Vue3 component used to search and select an item in a custom list.
clean-contracts
:
A guide on smart contract patterns & practices
beautiful-animated-login-page-react
:
Animated Login Page built using React
vctr.xyz
:
Web app for visualizing vector transformations, linear algebra, etc.
d3-v6-tip
:
A famous d3-tip lib adapted to the latest - d3.v6 version.
// repository documentation
Was this content helpful?
★ 0
(0 ratings)
Select Rating:
★
★
★
★
★
Submit Feedback
Recent Feedback
×
Download README
Do you want to download the
README.md
file for
SimpleWebTransport
?
Download (.md)
[](https://sonarcloud.io/dashboard?id=MirrorNetworking_SimpleWebTransport) [](https://sonarcloud.io/dashboard?id=MirrorNetworking_SimpleWebTransport) [](https://discordapp.com/invite/N9QVxbM) [](https://github.com/MirrorNetworking/SimpleWebTransport/releases/latest) # Simple Web Transport Websocket Transport for [Mirror](https://github.com/vis2k/Mirror) This Transport uses the websocket protocol. This allows this transport to be used in WebGL builds of unity. ## Usage 1) Download the code from the source folder or package on [Release](https://github.com/MirrorNetworking/SimpleWebTransport/releases) page. 2) Put the code somewhere in your Assets folder 3) Replace your existing Transport with SimpleWebTransport on your NetworkManager ## Bugs? Please report any bugs or issues [Here](https://github.com/MirrorNetworking/SimpleWebTransport/issues) # Websocket Secure This transport supports the wss protocol which is required for https pages. ## How to create and setup an SSL Cert If you host your webgl build on a https domain you will need to use wss which will require a ssl cert. [See this page](./HowToCreateSSLCert.md) # Logging Log levels can be set using the dropdown on the transport or or setting `Mirror.SimpleWeb.Log.level`. The transport applies the dropdown value in its `Awake` and `OnValidate` methods. ### Log methods Log methods in this transport use the [ConditionalAttribute](https://docs.microsoft.com/en-us/dotnet/api/system.diagnostics.conditionalattribute?view=netstandard-2.0) so they are removed depending on the preprocessor defines. These preprocessor defines effect the logging - `DEBUG` allows warn/error logs - `SIMPLEWEB_LOG_ENABLED` allows all logs Without `SIMPLEWEB_LOG_ENABLED` info or verbose logging will never happen even if log level allows it. See the [Unity docs](https://docs.unity3d.com/Manual/PlatformDependentCompilation.html) on how set custom defines.