Update score on screen after watching video ad

artG

Ihave two scenes GameScene and BonusSceneI use NSUserDefaults to save winning count, everything works fine, I add video reward ad, after watching video, you get 5 points, that works too, but score update on screen only happens when after you go to different scene and come back, but when I use NSLog() I see that update happens, but I dont know how to do it in real time on screen. Here what I got:

    losingCount=[scoreprefs integerForKey:@"losingCount"];
    SKLabelNode *winsCoutnt = [SKLabelNode labelNodeWithFontNamed:@"ROTORcap Extended Bold"];
    winsCoutnt.text =[NSString stringWithFormat:@"%ld",(long)losingCount];
    winsCoutnt.position = CGPointMake(CGRectGetMidX(self.frame) + 100,(CGRectGetMidY(self.frame)) + self.frame.size.height/4 );
    winsCoutnt.fontSize = 15.f;
    [self addChild:winsCoutnt];



 if([Chartboost hasRewardedVideo:@"NetworkVideo"] == YES) {

            NSUserDefaults *scoreprefs = [NSUserDefaults standardUserDefaults];

            losingCount =[scoreprefs integerForKey:@"losingCount"];
            losingCount = losingCount +5;
            [scoreprefs setInteger:losingCount forKey:@"losingCount"]; }

So my question is How can I update Score in scene on screen in real time, without going to different scene and coming back?

Hamed Saadat

Just update the text where you're updating the NSUserDefaults

    losingCount=[scoreprefs integerForKey:@"losingCount"];
SKLabelNode *winsCoutnt = [SKLabelNode labelNodeWithFontNamed:@"ROTORcap Extended Bold"];
winsCoutnt.text =[NSString stringWithFormat:@"%ld",(long)losingCount];
winsCoutnt.position = CGPointMake(CGRectGetMidX(self.frame) + 100,(CGRectGetMidY(self.frame)) + self.frame.size.height/4 );
winsCoutnt.fontSize = 15.f;
[self addChild:winsCoutnt];



if([Chartboost hasRewardedVideo:@"NetworkVideo"] == YES) {

        NSUserDefaults *scoreprefs = [NSUserDefaults standardUserDefaults];

        losingCount =[scoreprefs integerForKey:@"losingCount"];
        losingCount = losingCount +5;
        [scoreprefs setInteger:losingCount forKey:@"losingCount"]; 

        winsCoutnt.text =[NSString stringWithFormat:@"%ld",(long)losingCount];
}

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

From Dev

Unlock in game character by watching a video ad

From Dev

How to detect if user is watching a full screen video?

From Dev

Screen turns black for a few secs while watching full screen video

From Dev

How to create a function which will add reward on watching an ad video

From Dev

Watching hashtags with tweepy after API Update

From Dev

UNITY3D - Cannot perform action after watching ad?

From Dev

How to black out screen when watching video/playing game on other screen?

From Dev

remote access gurus : assistance needed accessing system with vnc stuck on a black screen after video driver update

From Dev

Prevent display from turning off due to inactivity when watching full screen video (windows 7)

From Dev

Phonon: how to clear screen after video plays

From Dev

Trying to play video after splash screen in uwp

From Dev

Android WebView disappears after closing interstitial video ad

From Dev

iOS: full page interstitial ad shows black screen after close

From Dev

How to Update the Screen in JavaFX after Each Loop

From Dev

After system update, screen size very small

From Dev

Meteor white screen after 0.8.0 update?

From Dev

Black Screen after ubuntu update16.04

From Dev

After 16.04 system update boots to black screen

From Dev

Black second screen after 18.04 update

From Dev

No login screen after Ubuntu 18.04 update

From Dev

Wrong external screen detection after Bionic update

From Dev

react update screen after changing values in the state

From Dev

Ubuntu blank screen after software update 18.04

From Dev

Lock screen is crashing the UI in 20.04 after an update

From Dev

Blank screen on startup after interrupted software update

From Dev

Black screen (no signal) and no tty screen with nvidia drivers after software update

From Dev

Issue while watching video with windows 10

From Dev

MPV plays no audio when watching a video

From Dev

SDL show score on screen

Related Related

  1. 1

    Unlock in game character by watching a video ad

  2. 2

    How to detect if user is watching a full screen video?

  3. 3

    Screen turns black for a few secs while watching full screen video

  4. 4

    How to create a function which will add reward on watching an ad video

  5. 5

    Watching hashtags with tweepy after API Update

  6. 6

    UNITY3D - Cannot perform action after watching ad?

  7. 7

    How to black out screen when watching video/playing game on other screen?

  8. 8

    remote access gurus : assistance needed accessing system with vnc stuck on a black screen after video driver update

  9. 9

    Prevent display from turning off due to inactivity when watching full screen video (windows 7)

  10. 10

    Phonon: how to clear screen after video plays

  11. 11

    Trying to play video after splash screen in uwp

  12. 12

    Android WebView disappears after closing interstitial video ad

  13. 13

    iOS: full page interstitial ad shows black screen after close

  14. 14

    How to Update the Screen in JavaFX after Each Loop

  15. 15

    After system update, screen size very small

  16. 16

    Meteor white screen after 0.8.0 update?

  17. 17

    Black Screen after ubuntu update16.04

  18. 18

    After 16.04 system update boots to black screen

  19. 19

    Black second screen after 18.04 update

  20. 20

    No login screen after Ubuntu 18.04 update

  21. 21

    Wrong external screen detection after Bionic update

  22. 22

    react update screen after changing values in the state

  23. 23

    Ubuntu blank screen after software update 18.04

  24. 24

    Lock screen is crashing the UI in 20.04 after an update

  25. 25

    Blank screen on startup after interrupted software update

  26. 26

    Black screen (no signal) and no tty screen with nvidia drivers after software update

  27. 27

    Issue while watching video with windows 10

  28. 28

    MPV plays no audio when watching a video

  29. 29

    SDL show score on screen

HotTag

Archive