Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
54 changes: 45 additions & 9 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,28 +1,41 @@
# This .gitignore file should be placed at the root of your Unity project directory
#
# Get latest from https://github.com/github/gitignore/blob/master/Unity.gitignore
# Get latest from https://github.com/github/gitignore/blob/main/Unity.gitignore
#
.utmp/
/[Ll]ibrary/
/[Tt]emp/
/[Oo]bj/
/[Bb]uild/
/[Bb]uilds/
/[Ll]ogs/
/[Uu]ser[Ss]ettings/
*.log

# By default unity supports Blender asset imports, *.blend1 blender files do not need to be commited to version control.
*.blend1
*.blend1.meta

# MemoryCaptures can get excessive in size.
# They also could contain extremely sensitive data
/[Mm]emoryCaptures/
/[Uu]serSettings/

# Asset meta data should only be ignored when the corresponding asset is also ignored
!/[Aa]ssets/**/*.meta
# Recordings can get excessive in size
/[Rr]ecordings/

# Uncomment this line if you wish to ignore the asset store tools plugin
# /[Aa]ssets/AssetStoreTools*

# Autogenerated Jetbrains Rider plugin
[Aa]ssets/Plugins/Editor/JetBrains*
/[Aa]ssets/Plugins/Editor/JetBrains*
# Jetbrains Rider personal-layer settings
*.DotSettings.user

.DS_Store

# Visual Studio cache directory
.vs/
.vscode/settings.json
.vscode/

# Gradle cache directory
.gradle/
Expand Down Expand Up @@ -53,14 +66,37 @@ ExportedObj/
# Unity3D generated file on crash reports
sysinfo.txt

# Mono auto generated files
mono_crash.*

# Builds
*.apk
*.aab
*.unitypackage
*.unitypackage.meta
*.app

# Crashlytics generated file
crashlytics-build.properties

# Mac OS metadata
.DS_Store
# TestRunner generated files
InitTestScene*.unity*

# Addressables default ignores, before user customizations
/ServerData
/[Aa]ssets/StreamingAssets/aa*
/[Aa]ssets/AddressableAssetsData/link.xml*
/[Aa]ssets/Addressables_Temp*
# By default, Addressables content builds will generate addressables_content_state.bin
# files in platform-specific subfolders, for example:
# /Assets/AddressableAssetsData/OSX/addressables_content_state.bin
/[Aa]ssets/AddressableAssetsData/*/*.bin*

# Visual Scripting auto-generated files
/[Aa]ssets/Unity.VisualScripting.Generated/VisualScripting.Flow/UnitOptions.db
/[Aa]ssets/Unity.VisualScripting.Generated/VisualScripting.Flow/UnitOptions.db.meta
/[Aa]ssets/Unity.VisualScripting.Generated/VisualScripting.Core/Property Providers
/[Aa]ssets/Unity.VisualScripting.Generated/VisualScripting.Core/Property Providers.meta

.vsconfig
# Auto-generated scenes by play mode tests
/[Aa]ssets/[Ii]nit[Tt]est[Ss]cene*.unity*
2 changes: 1 addition & 1 deletion Assets/Scripts/GpsSensor.cs
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ public class GpsSensor : MonoBehaviour

private void Awake()
{
_socket = FindObjectOfType<RoverSocket>();
_socket = FindAnyObjectByType<RoverSocket>();
}

private void OnEnable()
Expand Down
2 changes: 1 addition & 1 deletion Assets/Scripts/ImuSensor.cs
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ public class ImuSensor : MonoBehaviour

private void Awake()
{
_socket = FindObjectOfType<RoverSocket>();
_socket = FindAnyObjectByType<RoverSocket>();
}

private void OnEnable()
Expand Down
2 changes: 1 addition & 1 deletion Assets/Scripts/Motor.cs
Original file line number Diff line number Diff line change
Expand Up @@ -269,7 +269,7 @@ protected void ReportLimitSwitchTriggered(Limit limit)

protected virtual void Awake()
{
_socket = FindObjectOfType<RoverSocket>();
_socket = FindAnyObjectByType<RoverSocket>();
}

protected virtual void OnEnable()
Expand Down
2 changes: 1 addition & 1 deletion Assets/Scripts/RoverCamera.cs
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ public bool IsStreaming
private void Awake()
{
_camera = GetComponent<Camera>();
_socket = FindObjectOfType<RoverSocket>();
_socket = FindAnyObjectByType<RoverSocket>();
}

private void OnEnable()
Expand Down
2 changes: 1 addition & 1 deletion Assets/Scripts/RoverPoseReporter.cs
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ public class RoverPoseReporter : MonoBehaviour

private void Awake()
{
_socket = FindObjectOfType<RoverSocket>();
_socket = FindAnyObjectByType<RoverSocket>();
}

private void OnEnable()
Expand Down
15 changes: 7 additions & 8 deletions Packages/manifest.json
Original file line number Diff line number Diff line change
@@ -1,13 +1,12 @@
{
"dependencies": {
"com.unity.collab-proxy": "1.15.7",
"com.unity.ide.rider": "3.0.9",
"com.unity.ide.visualstudio": "2.0.14",
"com.unity.ide.vscode": "1.2.4",
"com.unity.test-framework": "1.1.29",
"com.unity.textmeshpro": "3.0.6",
"com.unity.timeline": "1.6.3",
"com.unity.ugui": "1.0.0",
"com.unity.collab-proxy": "2.8.2",
"com.unity.ide.rider": "3.0.36",
"com.unity.ide.visualstudio": "2.0.23",
"com.unity.nuget.newtonsoft-json": "3.2.1",
"com.unity.test-framework": "1.5.1",
"com.unity.timeline": "1.8.8",
"com.unity.ugui": "2.0.0",
"com.unity.modules.ai": "1.0.0",
"com.unity.modules.androidjni": "1.0.0",
"com.unity.modules.animation": "1.0.0",
Expand Down
80 changes: 27 additions & 53 deletions Packages/packages-lock.json
Original file line number Diff line number Diff line change
@@ -1,24 +1,20 @@
{
"dependencies": {
"com.unity.collab-proxy": {
"version": "1.15.7",
"version": "2.8.2",
"depth": 0,
"source": "registry",
"dependencies": {
"com.unity.nuget.newtonsoft-json": "2.0.0",
"com.unity.services.core": "1.0.1"
},
"dependencies": {},
"url": "https://packages.unity.com"
},
"com.unity.ext.nunit": {
"version": "1.0.6",
"version": "2.0.5",
"depth": 1,
"source": "registry",
"dependencies": {},
"url": "https://packages.unity.com"
"source": "builtin",
"dependencies": {}
},
"com.unity.ide.rider": {
"version": "3.0.9",
"version": "3.0.36",
"depth": 0,
"source": "registry",
"dependencies": {
Expand All @@ -27,71 +23,53 @@
"url": "https://packages.unity.com"
},
"com.unity.ide.visualstudio": {
"version": "2.0.14",
"version": "2.0.23",
"depth": 0,
"source": "registry",
"dependencies": {
"com.unity.test-framework": "1.1.9"
},
"url": "https://packages.unity.com"
},
"com.unity.ide.vscode": {
"version": "1.2.4",
"depth": 0,
"source": "registry",
"dependencies": {},
"url": "https://packages.unity.com"
},
"com.unity.nuget.newtonsoft-json": {
"version": "2.0.0",
"depth": 1,
"version": "3.2.1",
"depth": 0,
"source": "registry",
"dependencies": {},
"url": "https://packages.unity.com"
},
"com.unity.services.core": {
"version": "1.0.1",
"depth": 1,
"source": "registry",
"dependencies": {
"com.unity.modules.unitywebrequest": "1.0.0"
},
"url": "https://packages.unity.com"
},
"com.unity.test-framework": {
"version": "1.1.29",
"version": "1.5.1",
"depth": 0,
"source": "registry",
"source": "builtin",
"dependencies": {
"com.unity.ext.nunit": "1.0.6",
"com.unity.ext.nunit": "2.0.3",
"com.unity.modules.imgui": "1.0.0",
"com.unity.modules.jsonserialize": "1.0.0"
},
"url": "https://packages.unity.com"
}
},
"com.unity.textmeshpro": {
"version": "3.0.6",
"version": "5.0.0",
"depth": 0,
"source": "registry",
"source": "builtin",
"dependencies": {
"com.unity.ugui": "1.0.0"
},
"url": "https://packages.unity.com"
"com.unity.ugui": "2.0.0"
}
},
"com.unity.timeline": {
"version": "1.6.3",
"version": "1.8.8",
"depth": 0,
"source": "registry",
"dependencies": {
"com.unity.modules.audio": "1.0.0",
"com.unity.modules.director": "1.0.0",
"com.unity.modules.animation": "1.0.0",
"com.unity.modules.audio": "1.0.0",
"com.unity.modules.particlesystem": "1.0.0"
},
"url": "https://packages.unity.com"
},
"com.unity.ugui": {
"version": "1.0.0",
"version": "2.0.0",
"depth": 0,
"source": "builtin",
"dependencies": {
Expand Down Expand Up @@ -146,6 +124,12 @@
"com.unity.modules.animation": "1.0.0"
}
},
"com.unity.modules.hierarchycore": {
"version": "1.0.0",
"depth": 1,
"source": "builtin",
"dependencies": {}
},
"com.unity.modules.imageconversion": {
"version": "1.0.0",
"depth": 0,
Expand Down Expand Up @@ -235,17 +219,7 @@
"com.unity.modules.ui": "1.0.0",
"com.unity.modules.imgui": "1.0.0",
"com.unity.modules.jsonserialize": "1.0.0",
"com.unity.modules.uielementsnative": "1.0.0"
}
},
"com.unity.modules.uielementsnative": {
"version": "1.0.0",
"depth": 1,
"source": "builtin",
"dependencies": {
"com.unity.modules.ui": "1.0.0",
"com.unity.modules.imgui": "1.0.0",
"com.unity.modules.jsonserialize": "1.0.0"
"com.unity.modules.hierarchycore": "1.0.0"
}
},
"com.unity.modules.umbra": {
Expand Down
4 changes: 2 additions & 2 deletions ProjectSettings/ProjectVersion.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
m_EditorVersion: 2020.3.24f1
m_EditorVersionWithRevision: 2020.3.24f1 (79c78de19888)
m_EditorVersion: 6000.1.8f1
m_EditorVersionWithRevision: 6000.1.8f1 (2a5b1522e5ab)
Empty file removed ProjectSettings/boot.config
Empty file.
Loading