• Stars
    star
    146
  • Rank 251,632 (Top 5 %)
  • Language
    C#
  • License
    MIT License
  • Created over 3 years ago
  • Updated over 1 year ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

This utility is for Unity to configure application window style. With this utility, you can make your application window transparent, frameless and more.

App Window Utility

This utility is for Unity to configure application window style. With this utility, you can make your application window transparent, frameless and more.

Copyright

Copyright Β© 2022-2023 Sator Imaging, all rights reserved.

License

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
MIT License

Copyright (c) 2022-2023 Sator Imaging

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.

Features

Features are tested with Unity 2020.3 LTS and HDRP 10.3.2 on Windows 10 64-bit.

Prerequisites

using SatorImaging.AppWindowUtility; is required to make the following examples work.

Sample

Here is a sample code. See the following sections for more options.

using UnityEngine;
using SatorImaging.AppWindowUtility;

public class MyTest : MonoBehaviour
{
    void Start()
    {
        AppWindowUtility.Transparent = true;
    }
}

Transparent Window

bool AppWindowUtility.Transparent { get; set; }

This will make application window transparent. In other words, you can see behind through application window.

Transparency is based on Unity's rendering result. So that you need to set camera background to Solid Color with alpha is set to zero.

NOTE: If you use High-Definition Render Pipeline (HDRP) or something based on Scriptable Render Pipeline (SRP), Color Frame Buffer setting needs to be set to RGB 16bit (or 8bit if available). Unity's default is RGB 10bit that Operating System doesn't support.

Window Opacity

AppWindowUtility.SetWindowOpacity(byte opacity)

This will set overall window opacity. It works with see-thru window.

WindowGrabber Component

With Transparent enabled, window has no title bar so that you need a way to move window.

WindowGrabber adds an ability to move window by dragging any area of application window. To add this feature, create empty GameObject and attach WindowGrabber component.

You can still use uGUI controls if WindowGrabber is used.

Full Screen Mode

bool AppWindowUtility.FullScreen { get; set; }

This will make window full screen or not.

NOTE: Use this instead of Unity's built-in UnityEngine.Screen.SetResolution(width, height, isFullScreen) and UnityEngine.Screen.fullScreen to work better with App Window Utility.

Always on Top

bool AppWindowUtility.AlwaysOnTop { get; set; }

This will make application window stay on top of other windows while another application has focus.

Click-Thru Mode

bool AppWindowUtility.ClickThrough { get; set; }

This make application window non-clickable.

NOTE: You must implement a way to disable this feature not using mouse click. If not implemented, you cannot touch your application anymore.

Window Frame Visibility

bool AppWindowUtility.FrameVisibility { get; set; }

This will set window frame visibile or invisible.

NOTE: When enable transparent window, window frame will be automatically hidden.

Color-Keying Window

AppWindowUtility.SetKeyingColor(byte red, byte green, byte blue)

This will Keying specified color from application window. It's strongly recommended to use AppWindowUtility.Transparent instead of this.

Additive Composition Mode

On Windows, applying AppWindowUtility.SetKeyingColor(0, 0, 0) and then AppWindowUtility.Transparent = true will change window composition mode to "Additive".

NOTE: This behaviour could be a bug of Windows.

Important Notes

Player Settings

Use DXGI Flip Model Swapchain for D3D11 must be turned off to work correctly.

If App Window Utility doesn't work as you expected, see Player Settings below for reference.

Using with High-Definition Render Pipeline (HDRP)

Color Buffer Format must be RGB 16bit (or something supported on Host OS) to work correctly. Other renderer based on Scriptable Render Pipeline (SRP) needs setting like this too.

Transparent and Frame Visibility

If you apply Transparent = true and then FrameVisibility = true, it will remove background filling from application window. Result is below, as you can see, background is filled with window frame color.

More Repositories

1

Unity-AltSourceGenerator

Ease-of-Use Source Generator Alternative for Unity
C#
55
star
2

FastOcean-Unity

Fast Procedural Ocean Shader for Unity. Ported from afl_ext's Shadertoy. πŸ‘‰ https://www.shadertoy.com/view/MdXyzX
HLSL
29
star
3

Half-Ulid

Half-ULID (HUlid) is a 64-bit shrinked version of ULID
C#
5
star
4

docfx-pages

Deploy docfx API Reference to GitHub Pages only 1 Action
C#
5
star
5

Copy-to-Another-Repository

GitHub Actions to copy selected file to another repository and create Pull Request (PR).
4
star
6

Unity-ReleaseNotes

Unity Release Notes archive for search across releases.
4
star
7

Unity-ShaderReference

Unity shader collection for reference. URP/HDRP shaders are from package cache. Builtin shaders are downloaded from https://unity.com/releases/editor/archive
C#
4
star
8

Visual-Studio-Code-MEL-Language

MEL Language Extension for Visual Studio Code
2
star
9

CSharp-TarArchiver

Minimal C# implementation for creating TAR archive (.tar/.tar.gz/.tgz)
C#
2
star
10

Unity2020-ShaderReference

Builtin Shader Reference for Unity 2020.
ShaderLab
1
star
11

CSharp-StaticFieldAnalyzer

Roslyn-based analyzer to diagnose static fields and properties initialization.
C#
1
star
12

VSCode-IntelliSidebar

Intelli-Sidebar provides big missing feature of Visual Studio Code.
TypeScript
1
star
13

Unity5-ShaderReference

Builtin Shader Reference for Unity 5.
HLSL
1
star
14

UnityShader-Changelog

What's changed in Unity major releases.
ShaderLab
1
star
15

UIEverything-Unity

Simplifies UI event handling on Unity.
C#
1
star
16

Unity-Fundamentals

Unity Scripting Fundamentals
C#
1
star