Commit Graph

8780 Commits

Author SHA1 Message Date
mischa
54b78251ad Tanks demo fixes 2024-07-13 19:01:15 +02:00
MrGadget
8f8efe864c chore(CI): RunUnityTests - updated unityVersions 2024-07-12 22:22:47 -04:00
mischa
794c9a2350 fix comment 2024-07-12 21:10:16 +02:00
MrGadget
9a37b26f27 fix: fixed tests 2024-07-11 15:10:44 -04:00
MrGadget
4c22f878c7 fix(LatencySimulation): Implement OnServerConnectedWithAddress 2024-07-11 11:33:50 -04:00
MrGadget
938cdc6c2a fix(EncryptionTransport): Implement OnServerConnectedWithAddress 2024-07-11 11:32:50 -04:00
MrGadget
aad625decc fix(MiddlewareTransport): Implement OnServerConnectedWithAddress 2024-07-11 11:27:16 -04:00
MrGadget
8f6b01b0f4 fix(MemoryTransport): Implemented OnServerConnectedWithAddress 2024-07-11 11:26:00 -04:00
MrGadget
ac3007fd1b fix(MultiplexTransport) Implement OnServerConnectedWithAddress 2024-07-11 09:53:55 -04:00
MrGadget
76d83aa998 fix(NetworkServer): RemoveTransportHandlers OnTransportConnectedWithAddress 2024-07-11 09:53:54 -04:00
MrGadget
105607014f
feat(Examples): Overhauled Examples (#3858)
* Added Player, Flyer, Tank Controllers

* and the meta

* Removed NT from Tank prefab

* Additive Scenes Player with new controller

* Updated Examples

* fixed healthbar

* Updated TankController

* Fixed MouseSteer

* Updated PlayerController

* Updated PlayerController

* Tank and Controller Updates

* Updated Tanks Navmesh

* Updated Tanks example

* Fixed Tank Model

* Tanks fixed

* Removed commented code

* Controller updates

* Projectile and Controller updates

* Tanks Navmesh

* Fixed navmesh

* Updated Projectile destroyAfter

* Update NavMesh

* Fixed spawn point

* TTA Scene Update

* TTA NavMesh

* TTA Tank Prefab

* Added Tank SeatedPlayer and turretAcceleration

* TTA Scene update

* TTA Scene higher walls

* Improved Projectile and PlayerTest

* Default Mouse Lock on

* IgnoreCollision

* Updated prefabs

* Latest

* Cleanup

* Disable sync position, Compress Rotation, and animation
- Animation is interfering with the controls and the child NT sync.

* Cleanup Reset on Disconnect

* Removed dead scripts
2024-07-11 14:32:59 +02:00
James Frowen
4a4ef9707c
fix(SimpleWebTransport): increasing default handshake max size (#3857)
Some browsers will send handshake larger than 3k, setting default limit to 16k so user dont have to worry about changing it
2024-07-08 16:38:54 -04:00
MrGadget
2d2e270868
feat(Transport): Added OnServerConnectedWithAddress (#3855)
* feat(Transport): Added OnServerConnectedWithAddress
Transports can now pass the remote client address directly to NetworkServer Action
- Facliltates ThreadedTransport passing the client Address
- KCP Transport Updated accordingly
- Original OnServerConnected passes ServerGetClientAddress result to NetworkConnectionToClient consrtuctor
- Saves round trips back to the transport for client address whenever it's needed

* formatting

* Simplified

* Cleanup
2024-07-05 11:58:43 +02:00
MrGadget
b0aa8a412a chore(CI): RunUnityTests - updated unityVersions 2024-07-04 21:34:04 -04:00
MrGadget
561e33ffea fix(NetworkConnectionToClient): DestroyOwnedObjects use RemovePlayerForConnection for scene objects instead of UnSpawn
- Scene objects need to stay alive for everyone else by default
- Users can choose to Unspawn for themselves.
2024-07-04 10:31:45 -04:00
MrGadget
49ad787d7c
fix(NetworkBehaviour): Skip OnValidate in Editor Play Mode (#3852)
OnValidate only runs in Editor, but can get invoked in PlayMode if user fiddles with the inspector or by other Unity activities.
2024-06-29 21:09:50 +02:00
MrGadget
fb0704c1d4 chore(CI): RunUnityTests - updated unityVersion 2024-06-28 19:55:24 -04:00
MrGadget
353a0bf80c chore(CI): RunUnityTests - updated unityVersion 2024-06-28 15:26:03 -04:00
JesusLuvsYooh
873a9d0067
fix(TopDownShooter): Adjusted slanted climbable wall colliders (#3849)
* fix(TopDownShooter): Adjusted slanted climbable wall colliders

* Removed previous colliders.
2024-06-27 09:40:22 +02:00
MrGadget
dc19e2889d Revert "fix(AdditiveLevels): Text instead of TMP"
This reverts commit 648fb0a489.
2024-06-26 21:29:27 -04:00
MrGadget
648fb0a489 fix(AdditiveLevels): Text instead of TMP 2024-06-26 21:19:34 -04:00
MrGadget
f5089f14bc fix(TopDownShooter): Use FindAnyObjectByType for Unity 2022.2+ 2024-06-26 20:44:29 -04:00
MrGadget
d147e8da0e fix(SimpleWebTransport): Default setup for reverse proxy 2024-06-26 19:33:20 -04:00
MrGadget
9cedb7e089 chore(CI): Use environment vars 2024-06-26 18:13:51 -04:00
MrGadget
7dd1deb6d7 fix(NetworkBehaviour): Check for non-zero netId before sending Cmd 2024-06-26 18:03:35 -04:00
mischa
4ec2f098d3
fix: #3832 NetworkServer.Destroy now doesn't call ResetState for prefabs, fixes isServer flag always being false in OnDestroy (#3848)
* repro

* NetworkServer.Destroy(): refactor to split scene vs. prefab cases more obviously

* fix: #3832 NetworkServer.Destroy now doesn't call ResetState for prefabs, fixes isServer flag always being false in OnDestroy

* fix the runtime test

* Revert "repro"

This reverts commit 3a5a33e8e4.

---------

Co-authored-by: mischa <info@noobtuts.com>
2024-06-26 19:53:55 +02:00
JesusLuvsYooh
ebf3041c96
feat: MOVING Platforms to Couch Coop Example (#3847)
* Added MOVING Platforms to Couch Coop Example

No constant network sync, they just resync at start and end destination.

* Optional Platform features.
2024-06-26 10:32:13 +02:00
Robin Rolf
7f33e1bfe0
feat: NetworkRuntimeProfiler (#3846)
* feat: NetworkRuntimeProfiler

Adds a simple text-based network profiler

* Remove unused avg
2024-06-26 10:30:22 +02:00
JesusLuvsYooh
c1fdf50400
feat: Example, TopDown Shooter. (#3836)
* Shooter topdown checkpoint 1

* Topdown shooter, checkpoint 2

* Topdown checkpoint 3

* Topdown Checkpoint 4

* Topdown shooter checkpoint 5

* Port added to UI Canvas Prefab. (#3835)

* Topdown Shooter, checkpoint 6, Alpha.

Almost finished, as of now, whats left is:
Tidy up
Comment code
Add server defines
Test server-only

* Topdown shooter, server defines and server only tested. Checkpoint 7.

Remaining: Tidy up and Comment code

* TopDown Shooter finished?

* Topdown shooter, fixed PNG size.

* Topdown Shooter tidyup.

Removed unused materials, that remained from 3D version of game.
3D sound ranges and volumes adjusted.

* Topdown Shooter, audio conversion and compression.

* TopDownShooter, note about OnStartServer player list.

Added line space to separate some code for easier reading.
2024-06-20 10:47:55 +02:00
Robin Rolf
6d7c808d6a
fix: new GUID for bouncycastle dll meta file (#3844) 2024-06-19 10:35:40 -04:00
Robin Rolf
736762f20f
fix: Namespace BouncyCastle lib to avoid conflicts (#3843)
This uses our fork https://github.com/MirrorNetworking/bc-csharp with the Mirror. prefix
dll is generated by CI: https://github.com/MirrorNetworking/bc-csharp/actions/runs/9582807523 so updating in the future should be as "easy" as rebasing on bouncycastle release branches, fixing any naming via search&replace and making a release to trigger CI
2024-06-19 09:53:02 -04:00
JesusLuvsYooh
bcda1dcb27
Velocity Iterations made public in NM, Drag on Cube prefabs. (#3842) 2024-06-19 12:03:28 +02:00
MrGadget
71e21089ae
fix(Hosting): Remove Mirror.Hosting AsmDef as not needed (#3841) 2024-06-19 09:48:43 +02:00
MrGadget
83629bcc67
chore(CI): Update Semantic to use UnityPack Script (#3840)
* UnityPack CSX

* fixed path

* try cmd

* try bash

* try script

* try prepareCmd

* Fix errors

* AddFilesRecursive extension

* dotnet 5 and dotnet-scriopt 1.1.0

* dotnet-script 1.5.0

* dotnet 8

* Environment.GetCommandLineArgs

* separate extension script

* typo

* Updated ArchiveExtension

* AddFilesRecursive without extension

* fix args iterator

* Deleted ArchiveExtension

* Removed commented code

* UnityPack: Methods in order

* MIT License

* Suppress Release Notes

* Added Console Logging

* fix: Test1

* Syntax

* Syntax

* log args

* fix: args parsing

* fix: More Logging plus version

* Syntax

* fix: Try fix paths

* fix: Reverse slashes in RootPath to match entry.Name

* fix: GetRelativePath use Path.GetTempPath

* fix: Use tempPath

* fix: Enable release notes

* Remove Hosting folder

* fix: Remove Edgegap

* Cleanup

* fix: Minified dependencies JSON and >=3.2.1 version for NewtonSoft

* fix: NewtonSoft v3.0.0
2024-06-18 16:36:11 -04:00
MrGadget
1e7c6f0a94 style(Welcome): No stacktrace for Mirror welcome message 2024-06-18 15:01:54 -04:00
mischa
f712fabd04
Edgegap Pplugin updated to 1.0.1 (#3834) 2024-06-17 21:48:42 +02:00
MrGadget
60d1a59bd3 chore(CI): Added job to clean up old workflow runs to main workflow
- Deletes runs more than 15 days old
- Retains last 5 runs of each workflow, regardless of age
2024-06-15 15:26:43 -04:00
MrGadget
0e2fbd8ba3 chore(CI): Semantic.yml - Restored debug true 2024-06-15 09:32:35 -04:00
JesusLuvsYooh
80f58e71ef
Port added to UI Canvas Prefab. (#3835) 2024-06-13 11:58:22 +02:00
MrGadget
15f1b6bba8 chore(CI) Updated Semantic and releaserc
- changed node-version to '*' and removed commented lines
- added comments about moving ScriptTemplate files
2024-06-12 19:51:39 -04:00
MrGadget
e588e33f66 chore(CI): RunUnityTests - updated unityVersion 2024-06-12 18:30:34 -04:00
MrGadget
c084c863af chore(CI): fix unity-packer command
- ScriptTemplates moved to Mirror folder so should be included
2024-06-12 16:53:28 -04:00
MrGadget
573e659c82 chore(CI): Move ScriptTemplates to Mirror folder for Unity package 2024-06-12 16:51:43 -04:00
MrGadget
97e6f8084c chore(CI): removed debug options 2024-06-12 16:28:43 -04:00
MrGadget
d14d32bb1b chore(CI): Attempt to fix CI package generation 2024-06-12 16:23:05 -04:00
MrGadget
fe93f4e870 fix(Extensions): GetPositionAndRotation now excluded for 2022.0 or newer
- Some patch versions of 2021.3 don't have it, some do...this is safer.
- Works as expected in 2021.3.39 and 2022.3.32
2024-06-12 14:00:58 -04:00
mischa
440b61429b fix(LatencySimulation): SimulateSend now supports all channels. Fixes a bug where projects with multiple channels could not simulate latency on non-default channels 2024-06-11 16:43:48 +02:00
mischa
ceab39284c syntax 2024-06-11 16:41:01 +02:00
mischa
993983036a LatencySimulation: one Queue for all channels to simplify code and support more channels later 2024-06-11 16:32:29 +02:00
mischa
9d0a72da9c LatencySimulation: QueuedMessage strongly typed constructor 2024-06-11 16:19:42 +02:00