File tree Expand file tree Collapse file tree
Unity/AirLibWrapper/AirsimWrapper/Source/SimHUD Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -43,27 +43,6 @@ void SimHUD::EndPlay()
4343 }
4444}
4545
46- SimHUD::ImageType SimHUD::getSubwindowCameraType (int window_index)
47- {
48- // TODO: index check
49- return getSubWindowSettings ().at (window_index).image_type ;
50- }
51-
52- void SimHUD::setSubwindowCameraType (int window_index, ImageType type)
53- {
54- getSubWindowSettings ().at (window_index).image_type = type;
55- }
56-
57- bool SimHUD::getSubwindowVisible (int window_index)
58- {
59- return getSubWindowSettings ().at (window_index).visible ;
60- }
61-
62- void SimHUD::setSubwindowVisible (int window_index, bool is_visible)
63- {
64- getSubWindowSettings ().at (window_index).visible = is_visible;
65- }
66-
6746void SimHUD::initializeSettings ()
6847{
6948 std::string settingsText;
Original file line number Diff line number Diff line change @@ -20,10 +20,6 @@ class SimHUD
2020public:
2121 SimHUD (std::string sime_mode_name, int port_number);
2222 SimModeBase* GetSimMode ();
23- ImageType getSubwindowCameraType (int window_index);
24- void setSubwindowCameraType (int window_index, ImageType type);
25- bool getSubwindowVisible (int window_index);
26- void setSubwindowVisible (int window_index, bool is_visible);
2723 virtual void BeginPlay ();
2824 virtual void EndPlay ();
2925 virtual void Tick (float DeltaSeconds);
You can’t perform that action at this time.
0 commit comments