Paul Pacheco
95a629686d
Simplify attribute name
2019-02-17 20:04:16 -06:00
Paul Pacheco
91760d88e3
Simplify with auto properties
2019-02-17 20:02:10 -06:00
Paul Pacheco
2114765668
Simplify more with auto properties
2019-02-17 19:59:17 -06:00
Paul Pacheco
e54a23a286
Simplify with auto properties
2019-02-17 19:57:34 -06:00
Paul Pacheco
c0cc77d062
Simplify with auto properties
2019-02-17 19:55:51 -06:00
Paul Pacheco
fc203dd89e
Simplify by using property
2019-02-17 19:53:11 -06:00
Paul Pacheco
559c1f155a
Simplify by using auto properties
2019-02-17 19:52:07 -06:00
vis2k
ee1b1c0b2b
Telepath updated to latest version
2019-02-17 09:00:10 +01:00
vis2k
2ec7de32df
Fix LLAPI.ToString
2019-02-17 08:55:28 +01:00
Chris Langsenkamp
ea3b48ab87
Replaced vars with explicit types ( #411 )
2019-02-17 08:45:13 +01:00
vis2k
8c441e8fe9
Transport.ServerGetClientAddress ( #412 )
2019-02-17 08:44:19 +01:00
Paul Pacheco
82cf23d348
Improve some comments
2019-02-15 06:29:54 -06:00
vis2k
bfe6e6aa28
better comments
2019-02-15 13:12:38 +01:00
vis2k
6a33c2d8bf
ClientScene.OnSpawnPrefab and NetworkManager.OnServerAddPlayerInternal: spawn objects with prefab names to avoid unnecessary "(Clone)" suffix from Unity. otherwise we need a name sync component in all games that show the names, e.g. MMOs for all monsters. This way we only need name sync components for objects that actually do change names, e.g. players.
2019-02-15 13:02:18 +01:00
vis2k
871fe9a7f4
syntax
2019-02-15 12:43:49 +01:00
vis2k
bc52ff5e62
TelepathyTransport: remove old comments
2019-02-15 12:41:12 +01:00
vis2k
ab30ac6141
Fix #223 : NetworkServer.DestroyPlayerForConnection tries to destroy both player controller and player owned objects if not null. No need to return early.
2019-02-14 13:38:34 +01:00
vis2k
5899cf81b5
refactor the fix for #389
2019-02-14 13:32:07 +01:00
uwee
0187163f70
fix for inactive scene in editor ( #389 )
...
* fix for inactive scene in editor
* changed to use #if UNITY_EDITOR
2019-02-14 13:26:53 +01:00
vis2k
9b232b0551
Revert "Source based weaver ( #319 )"
...
This reverts commit 8d7613b9b6
.
2019-02-13 15:59:32 +01:00
vis2k
d159e9c78b
Configurable Server Tickrate ( #390 )
...
* Configurable Server Tickrate
* only Update
2019-02-11 10:49:44 +01:00
Paul Pacheco
8d7613b9b6
Source based weaver ( #319 )
...
* Example for weaver issue
* Fix #314 , weave assemblies built before the weaver
* Don't need the example anymore
* Update CompilationFinishedHook.cs
* Dont try to load assemblies while they are being modified
* Revert "Weave dll again. Plan B for #314 (#323 )"
This reverts commit b20cb4280c
.
2019-02-09 18:14:26 +01:00
Paul Pacheco
1249ec25ac
Fix #371 , NetworkAnimator can support more than 6 variables ( #387 )
2019-02-08 09:32:36 +01:00
Chris Langsenkamp
d1626f7842
Add a virtual method that fires on the client right before scene change so devs can implement client-side work / prep / cleanup / visuals / etc. based on what scene is about to be loaded. ( #383 )
...
Documentation updates included.
2019-02-07 13:37:54 +01:00
Chris Langsenkamp
f1bdd8620c
Update TelepathyTransport.cs ( #382 )
...
Added Help URL
2019-02-07 12:26:45 +01:00
Gabe Brown
a5515b099e
BUG: TelepathyTransport delivers messages even when this.enabled == false across scene loads ( #379 )
...
* BUG: Fix issue where setting this.enabled = false doesn't get honored when transitioning from Local Offline Host to Connected Server.
* Update TelepathyTransport.cs
2019-02-07 10:13:23 +01:00
Chris Langsenkamp
5e642af577
Update NetworkManager.cs ( #376 )
...
Make "Multiple NetworkManagers detected" a full time error not hidden by log filter.
2019-02-06 15:30:16 +01:00
vis2k
548876a9b6
Syntax
2019-02-05 10:07:02 +01:00
Paul Pacheco
fba7b3f826
Add multiplex transport ( #358 )
...
* Add multiplex transport
* Simplify Availability method
* Update MultiplexTransport.cs
2019-02-05 10:02:32 +01:00
vis2k
4c749df4fa
Telepathy updated to latest version
2019-02-02 14:37:32 +01:00
vis2k
ca4ef1d8b3
LLAPITransport: expose connectionconfig and globalconfig in inspector
2019-02-02 11:08:52 +01:00
vis2k
de4b08d066
LLAPITransport: fix localhost connections
2019-02-02 11:08:20 +01:00
vis2k
1cc125d6c6
LLAPITransport: fix max connections error
2019-02-02 11:05:16 +01:00
vis2k
a210e8ce65
LLAPITransport: fix hostId out of bounds error
2019-02-02 11:02:45 +01:00
vis2k
dbbdcd02c7
Onserialize improvements ( #302 )
...
* position magic instead of allocating writers
* premature optimizations here we come
* simplify. less magic.
* better logging
* fix ondeserialize bugs caused by readpacketuint32 instead of readint32
2019-02-01 13:23:21 +01:00
vis2k
e690360f41
Updated Telepathy to latest version: Net 4.x, ConcurrentQueue/Dictionary, Fixed growing thread count bug in #347
2019-02-01 13:00:54 +01:00
vis2k
e6f5511d24
TelepathyTransport.ToString: fix NRE in server-only mode while listener wasn't created yet
2019-02-01 12:02:58 +01:00
Chris Langsenkamp
22e88cd8d4
Superfluous Code ( #366 )
...
Immediately after the deleted lines is a call to `OnClientDisconnect(netMsg.conn);` which calls `StopClient();` which has the exact same code on line 344 as what I'm proposing be deleted here.
2019-02-01 09:48:49 +01:00
vis2k
cb6bb75ee1
Use LateUpdate in Transports. Fixes race condition where Mirror would complain about 'Observer not ready for ...' when stress testing uMMORPG after bots machine was shutdown.
2019-01-31 16:19:14 +01:00
Chris Langsenkamp
46befb6682
Add Help URL attributes to components ( #359 )
2019-01-31 12:16:31 +01:00
Paul Pacheco
ee5befdd6d
Body expressions
2019-01-30 19:11:05 -06:00
Paul Pacheco
52887c2292
Body expressions
2019-01-30 19:10:53 -06:00
Paul Pacheco
c98f0c050c
Body expressions
2019-01-30 19:10:21 -06:00
Paul Pacheco
c2fbda6755
Body expressions
2019-01-30 19:10:12 -06:00
Paul Pacheco
869ae95138
Body expressions
2019-01-30 19:09:57 -06:00
Paul Pacheco
027dd3f91e
Use body expressions
2019-01-30 19:03:57 -06:00
Paul Pacheco
00c0d5a800
Use body expressions
2019-01-30 19:03:09 -06:00
Paul Pacheco
b816045c06
Null-conditional
2019-01-30 18:40:21 -06:00
Paul Pacheco
07e3d48dde
null-conditional operator
2019-01-30 18:37:21 -06:00
Paul Pacheco
17eedda836
null-conditional operator
2019-01-30 18:33:01 -06:00