LogicalError / realtime-CSG-for-unity

Realtime-CSG, CSG level editor for Unity
https://realtimecsg.com
MIT License
735 stars 77 forks source link

Bottom bar partially or totally hidden on 2021.2 #327

Closed vncastanheira closed 2 years ago

vncastanheira commented 2 years ago

image

Steps to reproduce:

Tried to resize but it's still hidden. If you place the Tools bar on the bottom, it's gonna be completely hidden.

image

mifozski commented 2 years ago

As a quick workaround, you can change hardcoded toolbar offset at Assets/Plugins/RealtimeCSG/Editor/Scripts/View/GUI/SceneViewBottomBarGUI/SceneViewBottomBar.GUI.cs#27 from +18 to +27:

bottomBarRect = new Rect(0, height - (CSG_GUIStyleUtility.BottomToolBarHeight + 27), 
vncastanheira commented 2 years ago

As a quick workaround, you can change hardcoded toolbar offset at Assets/Plugins/RealtimeCSG/Editor/Scripts/View/GUI/SceneViewBottomBarGUI/SceneViewBottomBar.GUI.cs#27 from +18 to +27:

bottomBarRect = new Rect(0, height - (CSG_GUIStyleUtility.BottomToolBarHeight + 27), 

Yeah this works nicely, it must have something to do with the recent changes on the docked toolbar.

nukeandbeans commented 2 years ago

This issue should be fixed with #330, when it is ready to be merged with master.