You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.txt
+5-5Lines changed: 5 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -17,16 +17,16 @@ Sure, you can, if your game offers it (Kerbal does). It should work. Dunno. I us
17
17
18
18
So, this transmits no data at all?
19
19
20
-
Pretty close to nothing. It merely "pings" the main Unity Telemetry servers at boot (that seems unavoidable and is a core unity functionality), but if you examine the packets in Wireshark all fields should be null or blank strings. It should never contact the server again, and even if it does, it will still all be empty data. Literally the only string in any of my source code that it could possibly transmit is it's version, which is humourously set to "STOPMININGMYDATAUNITY1.0"
20
+
Pretty close to nothing. At the very least, THESE dlls transmit nothing. The Unity engine may still try in certain games, but there is a settings file for most of them (I provide a settings patcher script for KSP) that should patch it to ensure it only contacts the server once with some basic platform config data, and then it should never do so again in the launch. In my DLLs, literally the only string in any of my source code that it could possibly transmit is it's version, which is humourously set to "STOPMININGMYDATAUNITY1.0"
21
21
22
-
Still, any contact at all beyond the initial "pings" is not ideal, and should be able to be overridden/stopped. If you detect any traffic to a unity controlled domain or ip using a tool like wireshark, and it's been more than 30 seconds after launch, you have a legitimate cause to open an issue at github. Please do so.
22
+
Still, any contact at all beyond the initial "pings" is not ideal, and should be able to be overridden/stopped. If you detect any traffic to a unity controlled domain or ip using a tool like wireshark, and it's been more than 10 seconds after launch, you have a legitimate cause to open an issue at github. Please do so.
23
23
24
24
So, I installed this in gamedata and nothing happened!
25
25
26
-
God dang it bobby, read the manual! You're supposed to put it in KSPINstall\KSP_x64_Data\Managed, replacing your existing dlls (other Unity games, wherver your telemetry dlls are put them there and replace the originals. Maybe take a backup, who knows?)
26
+
God dang it bobby, read the manual! You're supposed to put it in KSPINstall\KSP_x64_Data\Managed, replacing your existing dlls (other Unity games, wherver your telemetry dlls are put them there and replace the originals. Maybe take a backup, who knows?). Also, if you are playing Kerbal, please run the config patcher script for your platform. (.cmd for windows, .sh for *nix/OSX)
27
27
28
-
Why is the release for 1.7 so... old? Also, it still transmits some data!
28
+
Why is the release for 1.7 still transmiting some data!?
29
29
30
-
1.7 and Unity 2017 support are an ongoing issue. See here:
30
+
1.7 and Unity 2017 support are an ongoing issue. You will probably need to patch the platform config file for most of these. See here for an example using KSP (which I include a patcher script for):
0 commit comments