├── .gitignore ├── Examples └── Unity Example 1 - Receive and send with buttons │ ├── Example1.unitypackage │ └── Readme.md ├── Images └── Example.png ├── LICENSE ├── Readme.md ├── UdpComms.py ├── UdpSocket.cs └── server.py /.gitignore: -------------------------------------------------------------------------------- 1 | .idea/ 2 | __pycache__/ 3 | -------------------------------------------------------------------------------- /Examples/Unity Example 1 - Receive and send with buttons/Example1.unitypackage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siliconifier/Python-Unity-Socket-Communication/HEAD/Examples/Unity Example 1 - Receive and send with buttons/Example1.unitypackage -------------------------------------------------------------------------------- /Examples/Unity Example 1 - Receive and send with buttons/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siliconifier/Python-Unity-Socket-Communication/HEAD/Examples/Unity Example 1 - Receive and send with buttons/Readme.md -------------------------------------------------------------------------------- /Images/Example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siliconifier/Python-Unity-Socket-Communication/HEAD/Images/Example.png -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siliconifier/Python-Unity-Socket-Communication/HEAD/LICENSE -------------------------------------------------------------------------------- /Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siliconifier/Python-Unity-Socket-Communication/HEAD/Readme.md -------------------------------------------------------------------------------- /UdpComms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siliconifier/Python-Unity-Socket-Communication/HEAD/UdpComms.py -------------------------------------------------------------------------------- /UdpSocket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siliconifier/Python-Unity-Socket-Communication/HEAD/UdpSocket.cs -------------------------------------------------------------------------------- /server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Siliconifier/Python-Unity-Socket-Communication/HEAD/server.py --------------------------------------------------------------------------------