0 Üye ve 1 Ziyaretçi konuyu incelemekte.
local notifications = {}notifications.list = {} -- here u save all notifications-- DESIGN -- notifications.padding = 10notifications.offset = 90 * relativeScalenotifications.offsetWidth = 5-- TEXTnotifications.font = "default-bold"notifications.fontScale = 1 * relativeFontScalenotifications.fontHeight = dxGetFontHeight(notifications.fontScale,notifications.font)notifications.width, notifications.height = math.floor(360 * relativeScale), math.floor(notifications.fontHeight + notifications.padding * 2)-- SETTINGSnotifications.max = 6 -- MAX NOTIFICATIONS TO SHOWnotifications.interpolator = "Linear" -- interpolatornotifications.timeMaxToShow = 2500 -- msecondslocal math_min = math.minfunction addNotification(text,type,animate)