Version: Unity 6.6 Alpha (6000.6)
LanguageEnglish
  • C#

GameWindowExtensions.SetAlphaMode

Suggest a change

Success!

Thank you for helping us improve the quality of Unity Documentation. Although we cannot accept all submissions, we do read each suggested change from our users and will make updates where applicable.

Close

Submission failed

For some reason your suggested change could not be submitted. Please <a>try again</a> in a few minutes. And thank you for taking the time to help us improve the quality of Unity Documentation.

Close

Cancel

Declaration

public static AsyncOperation SetAlphaMode(GameWindow window, AlphaMode alphaMode);

Parameters

Parameter Description
window The GameWindow instance this extension method is implicitly called on.
alphaMode The AlphaMode to set for the window.

Returns

AsyncOperation An AsyncOperation that you can use to track the completion of the alpha mode update operation.

Description

Sets the alpha blending mode for the specified window on QNX. This is an extension method for GameWindow.

Sets the alpha blending mode used by the QNX Screen windowing system for compositing the window with other surfaces.

Notes:

  • This method is asynchronous and returns an AsyncOperation that you can use to track the completion of the operation.
  • This method is available only on QNX platforms.
using UnityEngine;
using UnityEngine.Windowing;
using UnityEngine.Windowing.QNX;

public class SetAlphaModeExample : MonoBehaviour { void Start() { AsyncOperation op = GameWindow.Main.SetAlphaMode(AlphaMode.PreMultipliedAlpha);

op.completed += _ => { Debug.Log($"Alpha mode set for {GameWindow.Main.GetTitle()}"); }; } }