-
-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[Major Changes] * Upgrade Unity editor version -> 2020.3.7f1 (LTS) * Sensor Device related * parsing output type for laser scan in LaserPlugin * Memory handling for native array in Camera Sensor device * Modify Lidar Sensor Device code - using callback function for AsyncGPUReadackRequest - native array memory handling for LaserCamData and DepthCamBuffer structure * handling Memory leackage for nativearray in Lidar Sensor devcie * SDF related * Change wheel properties in MicomPlugin : wheel/base -> wheel/tread [Minor Changes] * Versions * Update app version info in Project settings : 2.3.0 -> 2.3.1 * Sensor Device * Add protection code in depth camera - null check for compute shader * Change class name - DevicePlugin -> CLOiSimPlugin - DevicesPlugin -> CLOiSimMultiPlugin * Handling CLOiSimPlugin when destory the objects before close the application -> Stop thread * Change to reusable command buffer in Camera Sensor device * Trying to save memory in Motor Module and it does not call SetTargetVelocityAndForce() method when direction is switched * missing call base method from OnDestroy() method in inherited class * Change global spherical coordniates for GPS sensor device in DeviceHelper * General * Disable BakeMesh option in ProjectSeetings * Services * remove websocket when destory the object * GUI * add yield for coroutine in MarkerVisualizer * Moved Drawing contact line on Editor mode into OnDrawGizmos() method for SDF.Helper.Link() class [Bug fix] * Sensor device * Bug Fix: missed calling ProcessDevice() method in DeviceThread()
- Loading branch information
1 parent
09f2285
commit 396872c
Showing
56 changed files
with
312 additions
and
246 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
/* | ||
* Copyright (c) 2020 LG Electronics Inc. | ||
* | ||
* SPDX-License-Identifier: MIT | ||
*/ | ||
|
||
using System.Collections.Generic; | ||
using System.Xml; | ||
using UnityEngine; | ||
|
||
public abstract class CLOiSimMultiPlugin : CLOiSimPlugin | ||
{ | ||
private Dictionary<string, CLOiSimPlugin> CLOiSimPlugins = new Dictionary<string, CLOiSimPlugin>(); | ||
|
||
public void AddCLOiSimPlugin(in string deviceName, in CLOiSimPlugin CLOiSimPlugin) | ||
{ | ||
CLOiSimPlugins.Add(deviceName, CLOiSimPlugin); | ||
} | ||
} |
2 changes: 1 addition & 1 deletion
2
...ripts/DevicePlugins/DevicesPlugin.cs.meta → ...CLOiSimPlugins/CLOiSimMultiPlugin.cs.meta
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
15 changes: 15 additions & 0 deletions
15
Assets/Scripts/CLOiSimPlugins/CLOiSimPlugin.InfoService.cs.meta
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...ePlugins/DevicePlugin.InfoService.cs.meta → ...ipts/CLOiSimPlugins/CLOiSimPlugin.cs.meta
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Oops, something went wrong.