Exemplo n.º 1
0
	public abstract bool UpdateBitmap(uint notificationId,NotificationBitmap texture);
Exemplo n.º 2
0
 internal static extern NotificationError_t VR_IVRNotifications_CreateNotification(IntPtr instancePtr, ulong ulOverlayHandle, ulong ulUserValue, string strType, string strText, string strCategory, ref NotificationBitmap photo, ref uint notificationId);
Exemplo n.º 3
0
	public abstract bool NotificationStart(string type,NotificationBitmap texture,ref uint notificationId);
Exemplo n.º 4
0
	internal static extern bool VR_IVRNotifications_UpdateBitmap(IntPtr instancePtr, uint notificationId, NotificationBitmap texture);
Exemplo n.º 5
0
	internal static extern bool VR_IVRNotifications_NotificationStart(IntPtr instancePtr, string type, NotificationBitmap texture, ref uint notificationId);
Exemplo n.º 6
0
	public override bool UpdateBitmap(uint notificationId,NotificationBitmap texture)
	{
		CheckIfUsable();
		bool result = VRNativeEntrypoints.VR_IVRNotifications_UpdateBitmap(m_pVRNotifications,notificationId,texture);
		return result;
	}
Exemplo n.º 7
0
	public override bool NotificationStart(string type,NotificationBitmap texture,ref uint notificationId)
	{
		CheckIfUsable();
		notificationId = 0;
		bool result = VRNativeEntrypoints.VR_IVRNotifications_NotificationStart(m_pVRNotifications,type,texture,ref notificationId);
		return result;
	}