Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NetickNetworking/NetickForUnity
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 0.11.14
Choose a base ref
...
head repository: NetickNetworking/NetickForUnity
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: master
Choose a head ref
Loading
Showing with 1,565 additions and 653 deletions.
  1. +1 −1 Netick/Editor/CodeGen/AssemblyInfo.cs
  2. BIN Netick/Editor/Netick.CodeGen.dll
  3. BIN Netick/Editor/Netick.Unity.Editor.dll
  4. BIN Netick/Editor/Unity.Netick.CodeGen.dll
  5. BIN Netick/Runtime/Netick.Unity.dll
  6. +183 −68 Netick/Runtime/Netick.Unity.xml
  7. BIN Netick/Runtime/Netick.dll
  8. +116 −44 Netick/Runtime/Netick.xml
  9. +65 −36 README.md
  10. +8 −0 Resources/Network Icons.meta
  11. BIN Resources/Network Icons/Latency.png
  12. +153 −0 Resources/Network Icons/Latency.png.meta
  13. BIN Resources/Network Icons/PacketLoss.png
  14. +153 −0 Resources/Network Icons/PacketLoss.png.meta
  15. BIN Resources/Network Icons/ServerLag.png
  16. +153 −0 Resources/Network Icons/ServerLag.png.meta
  17. +6 −1 Samples~/Bomberman/Scenes/Bomberman.unity
  18. +2 −2 Samples~/Bomberman/Scripts/Block.cs
  19. +26 −41 Samples~/Bomberman/Scripts/Bomb.cs
  20. +28 −30 Samples~/Bomberman/Scripts/BombermanController.cs
  21. +63 −93 Samples~/Bomberman/Scripts/BombermanEventsHandler.cs
  22. +3 −1 Samples~/Bomberman/Scripts/BombermanInput.cs
  23. +6 −13 Samples~/Bomberman/Scripts/PowerUp.cs
  24. +25 −19 Samples~/First Person Shooter/Network Prefabs/FPS Player.prefab
  25. +16 −2 Samples~/First Person Shooter/Scenes/FPS Scene.unity
  26. +34 −24 Samples~/First Person Shooter/Scripts/FPSController.cs
  27. +1 −11 Samples~/First Person Shooter/Scripts/FPSEventsHandler.cs
  28. +5 −2 Samples~/First Person Shooter/Scripts/FPSInput.cs
  29. +166 −0 Scripts/AddressableSceneHandler.cs
  30. +11 −0 Scripts/AddressableSceneHandler.cs.meta
  31. +119 −99 Scripts/GameStarter.cs
  32. +3 −1 Scripts/Netick.Samples.asmdef
  33. +82 −20 Scripts/NetworkInfo.cs
  34. +41 −0 Scripts/PlayerSpawner.cs
  35. +11 −0 Scripts/PlayerSpawner.cs.meta
  36. +16 −0 Third-Party-Notices.txt
  37. +4 −0 Transport/LiteNetLib Transport/LiteNetLibTransportProvider.asset
  38. +61 −142 Transport/LiteNetLib Transport/LiteNetLibTransportProvider.cs
  39. +4 −3 package.json
2 changes: 1 addition & 1 deletion Netick/Editor/CodeGen/AssemblyInfo.cs
Original file line number Diff line number Diff line change
@@ -6,7 +6,7 @@
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("Karrar Rahim")]
[assembly: AssemblyProduct("Netick")]
[assembly: AssemblyCopyright("Karrar Rahim 2023")]
[assembly: AssemblyCopyright("Karrar Rahim 2025")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]
#endif
Binary file modified Netick/Editor/Netick.CodeGen.dll
Binary file not shown.
Binary file modified Netick/Editor/Netick.Unity.Editor.dll
Binary file not shown.
Binary file modified Netick/Editor/Unity.Netick.CodeGen.dll
Binary file not shown.
Binary file modified Netick/Runtime/Netick.Unity.dll
Binary file not shown.
Loading