Last active
August 13, 2024 00:33
-
-
Save noisecrime/3cb57c2618c7ade9d4398fe7f3835e34 to your computer and use it in GitHub Desktop.
Exposes the native Unity 'ScreenShotting' methods to Unity Menu & Shortcut keys.
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
using UnityEditor; | |
using UnityEngine; | |
/// <summary> | |
/// NoiseCrimeStudio OneShots are single scripts that provide specific funactionality. | |
/// </summary> | |
namespace NoiseCrimeStudios.OneShot.Editor | |
{ | |
/// <summary> | |
/// Exposes the native Unity 'ScreenShotting' methods to Unity Menu & Shortcut keys. | |
/// </summary> | |
/// <remarks> | |
/// Once imported you can find the menu in either Window/Analysis/Screenshot or Window/Internal/Screenshot. | |
/// <see cref="UnityCsReference\Editor\Mono\GUI\ScreenShotting.cs"/> | |
/// Hotkey: % (ctrl on Windows, cmd on macOS), # (shift), & (alt). | |
/// </remarks> | |
public static class InternalScreenShotting | |
{ | |
private static System.Type s_screenShotsType = typeof(EditorApplication).Assembly.GetType("UnityEditor.ScreenShots", false); | |
#if UNITY_2018_2_OR_NEWER | |
private const string MenuItemName = "Window/Analysis/Screenshot/"; | |
#else | |
private const string MenuItemName = "Window/Internal/Screenshot/"; | |
#endif | |
/// <summary>Sets the entire Unity Window to 762x600.</summary> | |
[MenuItem( MenuItemName + "SetMainWindowSize ( 762,600)", false, 115)] | |
public static void SetMainWindowSizeSmall() | |
{ | |
s_screenShotsType.GetMethod( "SetMainWindowSizeSmall" )?.Invoke( null, null ); | |
} | |
/// <summary>Sets the entire Unity Window to 1024x768.</summary> | |
[MenuItem( MenuItemName + "SetMainWindowSize (1024,768)", false, 115)] | |
public static void SetMainWindowSize() | |
{ | |
s_screenShotsType.GetMethod( "SetMainWindowSize" )?.Invoke( null, null ); | |
} | |
/// <summary>Screenshots the Game View Window.</summary> | |
[MenuItem( MenuItemName + "Snap Game View Content %&g", false, 115)] | |
public static void ScreenGameViewContent() | |
{ | |
Debug.Log("Snap Game View Content"); | |
s_screenShotsType.GetMethod( "ScreenGameViewContent" )?.Invoke( null, null ); | |
} | |
/// <summary>Screenshots the active Window.</summary> | |
[MenuItem( MenuItemName + "Snap Active Window %&h", false, 115)] | |
public static void Screenshot() | |
{ | |
Debug.Log("Snap Active Window"); | |
s_screenShotsType.GetMethod( "Screenshot" )?.Invoke( null, null ); | |
} | |
/// <summary>Screenshots the active Window and the rest of the screen to the right. For example Sceneview & Inspector.</summary> | |
[MenuItem( MenuItemName + "Snap Active Window Extended Right %&j", false, 115)] | |
public static void ScreenshotExtendedRight() | |
{ | |
Debug.Log("Snap Active Window Extended Right"); | |
s_screenShotsType.GetMethod( "ScreenshotExtendedRight" )?.Invoke( null, null ); | |
} | |
/// <summary>Screenshots the active window toolbar. Bit unreliable.</summary> | |
[MenuItem( MenuItemName + "Snap Active Toolbar %&k", false, 115)] | |
public static void ScreenshotToolbar() | |
{ | |
Debug.Log("Screenshot Active Toolbar"); | |
s_screenShotsType.GetMethod( "ScreenshotToolbar" )?.Invoke( null, null ); | |
} | |
/// <summary>Screenshots the Component you rollover next. Bit unreliable.</summary> | |
[MenuItem( MenuItemName + "Snap Component on Rollover %&l", false, 115)] | |
public static void ScreenShotComponent() | |
{ | |
Debug.Log("Snap Component - Waiting for rollover on taget component"); | |
s_screenShotsType.GetMethod( "ScreenShotComponent", new System.Type[ 0 ] )?.Invoke( null, new object[ 0 ] ); | |
} | |
} | |
} | |
/* | |
* var assembly = typeof(EditorApplication).Assembly; | |
* var screenShotsType = assembly.GetType("UnityEditor.ScreenShots", true); | |
* | |
* static Type unityEditorScreenShotsClassType; | |
* static Type GetScreenShotsClassType() { return typeof(EditorApplication).Assembly.GetType("UnityEditor.ScreenShots", true); } | |
*/ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment