[펌] Unity Local Notification (For android)
Unity3D/Plugins / 2019. 7. 1. 13:42
Unity Local Notification (For android)
This repository allows to send local notification from unity project on android devices.
Features
- you can send local notification in android
- you can schedule sending notification for some time in future
- you can send notification having big picture style
Issues
- not all android notification features are supported
Sample code
Publisher publisher = PublisherManager.Instance.CreatePublisher(channelId, channelName, channelDescription); // put your icon png file in Plugins/Android/UnityLocalNotification/res/drawable Notification notification = new Notification() .SmallIconName("test_icon") .Title("My notif title") .Message("This is a test notification message"); publisher.Publish(notification);
Screenshots
Unity asset
Unity local notification asset
Class diagram
[출처] https://unitylist.com/p/g72/Unity-Local-Notification
반응형
'Unity3D > Plugins' 카테고리의 다른 글
[링크] 유니티 Local Notification을 활용해보자 (0) | 2019.07.01 |
---|---|
[링크] [NATIVE, ANDROID] Local Notification(로컬 알림) 유니티 플러그인 (0) | 2019.07.01 |
[링크] FancyScrollView (CoverFlow) (0) | 2019.04.24 |
[링크] Simple Unity browser (0) | 2019.03.28 |
[링크] 유니티랑 nodejs 간단 연동 테스트 해보기 (0) | 2019.03.08 |