Tailwindcss plugin that adds a small box in the lower right corner of the screen showing the current breakpoint
Uses a position: fixed after css pseudo element on the body, so no extra markeup, and it get the breakpoint list by itself.
Tailwindcss plugin that adds a small box in the lower right corner of the screen showing the current breakpoint
Uses a position: fixed after css pseudo element on the body, so no extra markeup, and it get the breakpoint list by itself.
| using UnityEditor; | |
| using UnityEditor.EditorTools; | |
| using UnityEngine; | |
| [EditorTool("LookAt Tool")] | |
| public class LookatTool : EditorTool | |
| { | |
| GUIContent cachedIcon; | |
| // NOTE: as were caching this, unity will serialize it between compiles! so if we want to test out new looks, |