MrGadget1024
0df71c9812
Updated ChangeLog
2020-10-24 08:05:38 -04:00
MrGadget1024
84ff75a8bb
Updated ChangeLog
2020-10-23 21:37:01 -04:00
James Frowen
f08ce4e17e
docs: starting change log for next version ( #2343 )
...
* starting change log for next version
* changes
2020-10-24 02:21:12 +01:00
MrGadget1024
8fb7b4b1f4
Revert "Replaced package with zip file"
...
This reverts commit 150fd1160a
.
2020-10-22 10:16:27 -04:00
James Frowen
0c449da179
docs: allowing .unitypackage to be used
2020-10-22 15:15:58 +01:00
MrGadget1024
150fd1160a
Replaced package with zip file
2020-10-22 09:47:28 -04:00
Chris Langsenkamp
b7fcd0eb55
Added ScriptTemplates package to docs
2020-10-22 08:25:18 -04:00
Chris Langsenkamp
048033faa6
Updated docs for NetworkMessage
2020-10-21 18:04:33 -04:00
MrGadget
52de152245
Update Deprecations.md
2020-10-21 17:33:47 -04:00
James Frowen
59e91c8bec
moving page out of guides header ( #2341 )
...
* moving page out of guides header
* Community guides
* FAQ
* Resources
* updating note at top
2020-10-17 20:29:17 +01:00
James Frowen
b44cf7dbcf
docs: Updating transport docs ( #2337 )
...
* updating transport pages on litenetlib and simpleweb transports
* updating other pages to reference new transports
* updating links for new transports
2020-10-16 19:01:39 +01:00
James Frowen
914411ad24
Update index.md
2020-10-13 03:23:09 +01:00
James Frowen
5db733e566
Update index.md
2020-10-09 02:35:31 +01:00
Paul Pacheco
31b07ae02f
breaking: no need to override Serialize/Deserialize in messages ( #2317 )
...
* breaking: no need to override Serialize/Deserialize in messages
Messages no longer serilize themselves. This has been decoupled. Serializing a message is now done
via readers and writers, which can be either generated or user provided.
This lifts some restrictions,
* you no longer need to have a default constructor in messages
* Messages types can be recursive
* struct Messages don't need to provide an empty Serialize and Deserialize method
Before:
```cs
public struct ReadyMessage : IMessageBase
{
public void Deserialize(NetworkReader reader) { }
public void Serialize(NetworkWriter writer) { }
}
```
After:
```cs
public struct ReadyMessage : IMessageBase
{
}
```
BREAKING CHANGE: Messages must be public
BREAKING CHANGE: Use custom reader and writer instead of Serialize/Deserialize methods
* Remove unused method
* remove unused methods
* remove unused methods
* make all messages struct
* Fix test code generator
* Get rid of MessageBase
* Rename IMessageBase -> NetworkMessage
* add MessageBase as obsolete
* Use a default request
* Empty file to make asset store happy
* Apply suggestions from code review
Co-authored-by: James Frowen <jamesfrowendev@gmail.com>
Co-authored-by: James Frowen <jamesfrowendev@gmail.com>
2020-10-06 09:31:02 +02:00
Paul Pacheco
80e27627f7
jagged arrays are fine
2020-10-05 16:26:19 -05:00
Paul Pacheco
90834d476b
Document how to use new synclists
2020-10-02 13:56:20 -05:00
Morten Nørgaard
49c2f1bc5c
Update Profiler.md ( #2304 )
...
Added missing info on how to download the profiler tool via Discord.
2020-10-02 09:10:05 +02:00
James Frowen
16c919eae9
Update index.md
2020-10-01 17:03:15 +01:00
James Frowen
b82f4a1f34
Update NetworkRigidbody.md
2020-09-27 11:44:46 +01:00
Tikadze
22e2f97bd3
Update NetworkPingDisplay.md ( #2278 )
2020-09-27 11:42:41 +01:00
Tikadze
ed0433d6bc
Update NetworkManager.md ( #2277 )
2020-09-27 11:42:32 +01:00
Tikadze
c3f8e37cdd
Update NetworkManager.md ( #2274 )
2020-09-26 17:10:44 +01:00
Tikadze
3b32556a53
Update NetworkManager.md ( #2273 )
2020-09-26 17:10:31 +01:00
James Frowen
f953038767
Update index.md
2020-09-26 11:39:37 +01:00
James Frowen
e2bcb921ae
Update Authority.md
...
Trying to make page more clear and concise
2020-09-24 14:30:06 +01:00
James Frowen
783c6d2174
Update index.md
...
fixing links at top
2020-09-21 12:27:54 +01:00
Patrik Daňo
8286062d9d
Fix the logo position ( #2265 )
2020-09-19 20:12:09 +02:00
vis2k
c776b88e69
docs: background updated
2020-09-19 11:09:00 +02:00
vis2k
d9cb416501
docs: logo size fixed
2020-09-19 11:02:17 +02:00
vis2k
e569754962
docs: favicon updated
2020-09-19 10:16:15 +02:00
vis2k
112408e0eb
docs: logo updated
2020-09-19 10:08:14 +02:00
James Frowen
13be048f81
Update toc.yml
...
removing ? from toc
2020-09-17 23:59:28 +01:00
James Frowen
fd80ef734b
Update TCPvsUDP.md
2020-09-17 23:38:25 +01:00
James Frowen
a03df2b8d5
Update index.md
...
* adding list
* adding node at bottom on how to submit
2020-09-17 23:18:09 +01:00
James Frowen
1370085f2e
Adding user guide mirror quick start guide ( #2239 )
...
* adding Mirror Quick Start Guide
* proof read
2020-09-17 22:42:43 +01:00
James Frowen
b1429df53a
Update toc.yml
2020-09-17 16:15:51 +01:00
James Frowen
7e7b1405ec
Update toc.yml
2020-09-17 16:13:35 +01:00
James Frowen
71dd5835ad
Update index.md
...
making links include Network
2020-09-17 00:29:55 +01:00
James Frowen
514a61d8d3
Docs tcp vs udp ( #2257 )
...
* renaming page
* changing start and end blocks
* updating blocks on tcp and udp
* moving lines above features
* moving links to header
2020-09-17 00:28:40 +01:00
James Frowen
b86a611674
Restructure docs ( #2249 )
...
* moving all guides to Articles folder
* updating toc for root and articles
* fixing toc
* css on side toc
* fixing links on index
2020-09-16 22:27:05 +01:00
James Frowen
8b9178faa8
Update main.css
...
using inherit so color is only in 1 place
2020-09-15 12:14:08 +01:00
James Frowen
4b5b9d9181
Update toc.yml
2020-09-15 12:05:11 +01:00
James Frowen
1025d6a5ef
Update main.css
...
autoformatting
removing duplicate .sidefilter block
2020-09-15 11:56:22 +01:00
James Frowen
8461428b13
moving favicon to templates ( #2253 )
2020-09-15 11:52:51 +01:00
James Frowen
feca6417de
remoivng sub folder from templates ( #2252 )
2020-09-15 11:52:43 +01:00
James Frowen
f1a028f09c
renaming user guides to Community guides ( #2251 )
2020-09-15 11:47:03 +01:00
James Frowen
34eb9e5c68
updating docfx.json ( #2238 )
2020-09-15 11:44:08 +01:00
James Frowen
5a95ae6fe3
Update FAQ.md
2020-09-13 16:52:33 +01:00
James Frowen
6411013253
Update FAQ.md
2020-09-13 13:57:34 +01:00
James Frowen
6186aeb9d9
Update Resources.md
2020-09-13 12:28:55 +01:00
James Frowen
f302e2e8bf
Update BestPractices.md
2020-09-13 12:28:09 +01:00
James Frowen
d147bbbb38
docs: adding new pages ( #2237 )
2020-09-12 23:19:42 +01:00
Trentish
63c7fd6214
Typo on NetworkBehaviourCallbacks.md ( #2235 )
2020-09-12 16:45:10 +02:00
vis2k
9f53382bdd
doc style update to black
2020-09-09 12:16:03 +02:00
James Frowen
2d73dadd72
docs: fixing v16.9.0 release date
2020-09-05 20:42:54 +01:00
James Frowen
bfa482fde7
Adding Network Lerp Rigidbody docs and change log ( #2226 )
...
* adding NetworkLerpRigidbody to change log
* adding docs for Network Lerp Rigidbody
2020-09-05 13:09:06 +01:00
James Frowen
2db0b4dc0d
Updating change log for july and september ( #2224 )
...
* changes for version 16.9.0
* changes for version 17.3.0
* adding syncevent
2020-09-05 12:38:31 +01:00
James Frowen
eac69ab5f6
docs: sync event obsolete ( #2216 )
...
* adding note to guides about removed SyncEvent
* updating Obsolete
making Obsolete error whe used
updating text to say it has been removed
linking to issue
* adding Obsolete note to other references to SyncEvent
2020-09-04 16:29:46 +01:00
James Frowen
f57b894e35
Update toc.yml
2020-09-03 11:38:33 +01:00
James Frowen
ba2cd8629b
docs: adding docs for google cloud server ( #2211 )
...
* adding docs for google cloud server
* fixing image paths
* removing todo with bold
* fixing sub list
* fixing format
* rewording log file
* fixing quote
* fixing list
* adding newline
2020-09-03 08:48:38 +02:00
James Frowen
0d6e867978
docs: NetworkManager callbacks ( #2207 )
...
* removing mention of start
start happens before server/host/client starts
* updating order for stophost
2020-08-31 00:16:59 +01:00
James Frowen
05b4457e61
docs: network behaviour callbacks ( #2206 )
...
* renaming file
* updating callbacks and call order
2020-08-30 23:57:30 +01:00
James Frowen
2f4bcdf64d
Update sync/index.md
2020-08-30 23:44:57 +01:00
James Frowen
e28734e643
Update SpawnObjectCustom.md
2020-08-30 23:34:13 +01:00
James Frowen
487ae523d2
docs: SpawnObjectCustom ( #2205 )
...
* Update SpawnObjectCustom.md
* updating full example script
* updating example to use RegisterPrefab
* using link instead of code block
* updating text about custom spawning
* updating example
* changing back to code comments
xref doesn't seem to work for methods
2020-08-30 23:04:18 +01:00
James Frowen
5b02c8b984
docs: Adding guide about Serialization ( #2177 )
...
* Adding guide about Serialization
* reword and typos
* adding link
2020-08-20 22:52:58 +01:00
James Frowen
7a9df5ea3d
Update SpawnObject.md
2020-08-17 12:56:02 +01:00
FirstGearGames
799e85a2e6
Update NetworkMatchChecker.md ( #2162 )
...
Fixed possible typo.
2020-08-15 17:40:58 +01:00
vis2k
ec9472947b
Update documentation recommended version
2020-07-30 19:11:07 +02:00
Daniel McGuinness
14017fa644
Update NetworkManager.md ( #2114 )
...
As of commit b36c347200
`OnStartHost` is called after `OnStartServer`
2020-07-30 11:20:52 +02:00
Nic
3756285e2d
Small case fix ( #2109 )
2020-07-28 13:18:19 +02:00
James Frowen
a69880a65b
Update LiteNetLib4Mirror.md
2020-07-04 00:39:14 +01:00
James Frowen
ed366c53a7
Update toc.yml
2020-07-04 00:31:01 +01:00
James Frowen
3c100740ab
Update ChangeLog.md
2020-07-03 23:59:18 +01:00
James Frowen
ebe4d2c5c8
Update NetworkDiscovery.md
2020-07-03 23:56:37 +01:00
James Frowen
99d1b6d860
Update index.md
2020-07-03 23:19:06 +01:00
James Frowen
3e54a970c3
Update index.md
2020-07-03 23:18:24 +01:00
James Frowen
dabea79699
Update index.md
2020-07-03 23:17:04 +01:00
James Frowen
c4f071336a
Update index.md
...
Updating transport list
2020-07-03 23:15:45 +01:00
James Frowen
076203e967
Update NetworkDiscovery.md
2020-07-03 23:09:40 +01:00
James Frowen
de2882cb97
Update ChangeLog.md
...
Discord transport was removed, removing link to old page
2020-07-03 23:08:31 +01:00
James Frowen
7bab3b9d7c
Update Deprecations.md
2020-07-03 23:02:20 +01:00
James Frowen
af230ce988
docs: fixing order and table of contents ( #2052 )
...
* fixing order
* adding to table of contents
2020-06-29 00:52:23 +01:00
James Frowen
ab1b92f74b
fix: addingNetwork rigidbody icon and AddComponentMenu attribute ( #2051 )
...
* adding icon
* adding attributes
* adding docs
* adding disclaimer at top of doc
2020-06-28 23:47:50 +01:00
James Frowen
9468278c73
adding cloud to api docs ( #2038 )
2020-06-26 01:00:08 +01:00
Tri-tip
b9508e756d
Fixed small typo ( #2019 )
...
Changed oath to OAuth2
2020-06-19 06:14:17 -04:00
Marco Hoffmann
c14b82c621
Updated doc for Fizzy Steam transports ( #2016 )
...
Co-authored-by: Marco Hoffmann <marco.hoffmann@qualityminds.de>
2020-06-18 07:49:16 -04:00
Chris Langsenkamp
f2e38929df
doc: Updated Profiler Guide
2020-06-17 22:43:51 -04:00
Chris Langsenkamp
b41996b074
doc: Updated Profiler Guide
2020-06-17 22:42:21 -04:00
Chris Langsenkamp
e84754d3e8
doc: Updated Profiler page
2020-06-17 22:40:17 -04:00
James Frowen
46239783f3
feat: adding log handler that sets console color ( #2001 )
...
* adding log handler that sets console color
* fixing stack trace log
* removing empty cases
* removing string.Format
2020-06-15 14:54:35 +02:00
James Frowen
268d93f471
Update Attributes.md ( #1996 )
2020-06-15 14:52:36 +02:00
Chris Langsenkamp
7e91b82f6e
doc: Updated ChangeLog
2020-06-13 14:19:10 -04:00
Chris Langsenkamp
a24228bf38
doc: Updated ChangeLog
2020-06-13 12:57:37 -04:00
James Frowen
4cf77ca7c7
sync vars now work with overriden OnSerialize ( #1985 )
...
Co-authored-by: MrGadget <chris@clevertech.net>
2020-06-11 12:27:42 -04:00
James Frowen
7056d5eb9e
hooks are called on initialState too ( #1986 )
2020-06-11 12:24:52 -04:00
James Frowen
784b626dca
docs: replacing paragraph on return with is dirty ( #1987 )
...
* replacing paragraph on return with is dirty
the return value is not currently used in mirror
OnSerialize is currently only called when IsDrity is true
* Update doc/Guides/Sync/index.md
Co-authored-by: MrGadget <chris@clevertech.net>
2020-06-11 12:24:05 -04:00
James Frowen
acbb0db6f3
updating example and adding comments ( #1984 )
...
- SyncVars is generated inside SerializeSyncVars now
2020-06-11 12:22:50 -04:00
James Frowen
7e93030849
feat: adding script that displays ping ( #1975 )
...
* adding script that displays ping
* fixing style
* adding mirror icon
* Update Assets/Mirror/Components/NetworkPingDisplay.cs
Co-authored-by: MrGadget <chris@clevertech.net>
* adding DisallowMultipleComponent
* adding docs on NetworkPingDisplay
Co-authored-by: MrGadget <chris@clevertech.net>
2020-06-10 14:31:13 +01:00
Chris Langsenkamp
df76cb6eb4
doc: Updated DataTypes
2020-06-09 11:16:27 -04:00