Steamworks.SteamUtils.SetOverlayNotificationPosition C# (CSharp) Method

SetOverlayNotificationPosition() public static method

Sets the position where the overlay instance for the currently calling game should show notifications.

This position is per-game and if this function is called from outside of a game context it will do nothing.

public static SetOverlayNotificationPosition ( ENotificationPosition eNotificationPosition ) : void
eNotificationPosition ENotificationPosition
return void
		public static void SetOverlayNotificationPosition(ENotificationPosition eNotificationPosition) {
			InteropHelp.TestIfAvailableClient();
			NativeMethods.ISteamUtils_SetOverlayNotificationPosition(eNotificationPosition);
		}