File tree Expand file tree Collapse file tree 5 files changed +15
-6
lines changed
PubNubUnity/Assets/PubNub Expand file tree Collapse file tree 5 files changed +15
-6
lines changed Original file line number Diff line number Diff line change 1
1
---
2
- version : v6.0.7
2
+ version : v6.0.8
3
3
changelog :
4
+ - date : 2023-03-24
5
+ version : v6.0.8
6
+ changes :
7
+ - type : bug
8
+ text : " Add DontDestroyOnLoad flag."
4
9
- date : 2022-11-02
5
10
version : v6.0.7
6
11
changes :
@@ -665,7 +670,7 @@ sdks:
665
670
distribution-type : package
666
671
distribution-repository : git release
667
672
package-name : PubNub.unitypackage
668
- location : https://github.com/pubnub/unity/releases/download/v6.0.7 /PubNub.unitypackage
673
+ location : https://github.com/pubnub/unity/releases/download/v6.0.8 /PubNub.unitypackage
669
674
requires :
670
675
-
671
676
name : " UnityEditor"
@@ -832,7 +837,7 @@ sdks:
832
837
distribution-type : package
833
838
distribution-repository : git release
834
839
package-name : PubNub.unitypackage
835
- location : https://github.com/pubnub/unity/releases/download/v6.0.7 /PubNub.unitypackage
840
+ location : https://github.com/pubnub/unity/releases/download/v6.0.8 /PubNub.unitypackage
836
841
requires :
837
842
-
838
843
name : " UnityEditor"
Original file line number Diff line number Diff line change @@ -14,6 +14,10 @@ public class QueueManager: MonoBehaviour
14
14
public PubNubUnity PubNubInstance { get ; set ; }
15
15
private ushort RunningRequests ;
16
16
17
+ void Awake ( ) {
18
+ DontDestroyOnLoad ( gameObject ) ;
19
+ }
20
+
17
21
void Start ( ) {
18
22
this . RunningRequestEnd += delegate ( PNOperationType operationType ) {
19
23
UpdateRunningRequests ( true ) ;
Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ namespace PubNubAPI
7
7
public class PubNubUnityBase
8
8
{
9
9
protected Counter publishMessageCounter ;
10
- private const string build = "6.0.7 " ;
10
+ private const string build = "6.0.8 " ;
11
11
private string pnsdkVersion = string . Format ( "PubNub-CSharp-Unity/{0}" , build ) ;
12
12
13
13
public string Version {
Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ You will need the publish and subscribe keys to authenticate your app. Get your
12
12
13
13
## Configure PubNub
14
14
15
- 1 . Download the PubNub Unity package from [ this repository] ( https://github.com/pubnub/unity/releases/download/v6.0.7 /PubNub.unitypackage ) .
15
+ 1 . Download the PubNub Unity package from [ this repository] ( https://github.com/pubnub/unity/releases/download/v6.0.8 /PubNub.unitypackage ) .
16
16
17
17
2 . Import the package to your Unity project by going to Assets > Import Package > Custom Package.
18
18
Original file line number Diff line number Diff line change 1
- 6.0.7
1
+ 6.0.8
You can’t perform that action at this time.
0 commit comments