Wayback Machinekoobas.hobune.stream
May JUN Jul
Previous capture 12 Next capture
2021 2022 2023
1 capture
12 Jun 22 - 12 Jun 22
sparklines
Close Help
  • Products
  • Solutions
  • Made with Unity
  • Learning
  • Support & Services
  • Community
  • Asset Store
  • Get Unity

UNITY ACCOUNT

You need a Unity Account to shop in the Online and Asset Stores, participate in the Unity Community and manage your license portfolio. Login Create account
  • Blog
  • Forums
  • Answers
  • Evangelists
  • User Groups
  • Beta Program
  • Advisory Panel

Navigation

  • Home
  • Products
  • Solutions
  • Made with Unity
  • Learning
  • Support & Services
  • Community
    • Blog
    • Forums
    • Answers
    • Evangelists
    • User Groups
    • Beta Program
    • Advisory Panel

Unity account

You need a Unity Account to shop in the Online and Asset Stores, participate in the Unity Community and manage your license portfolio. Login Create account

Language

  • Chinese
  • Spanish
  • Japanese
  • Korean
  • Portuguese
  • Ask a question
  • Spaces
    • Default
    • Help Room
    • META
    • Moderators
    • Topics
    • Questions
    • Users
    • Badges
  • Home /
  • Help Room /
avatar image
0
Question by labana2019 · Aug 11, 2017 at 06:50 AM · script.

plz help me in Trivia Quiz Game Template setup

hello friend i am new in unity world i have Trivia Quiz Game Template but when i import it i got this msg :

Assets/PuppeteerAssets/CS_Assets/CS_Scripts/PupUnityAdsController.cs(102,47): error CS0246: The type or namespace name `ShowResult' could not be found. Are you missing a using directive or an assembly reference? this is the script :

using System.Collections; using UnityEngine; using UnityEngine.Advertisements;

namespace Puppeteer { ///

/// This script links UnityAds to your app. You must set the GameID and how often the ads appear. /// The Game Controller in the scene calls this script on Game Over to try and show an ad. /// public class PupUnityAdsController:MonoBehaviour { // The game ID of the app registered on the UnityAds website ( http://unityads.unity3d.com/) public string gameID = "73177";

     // How often to show the ad. The ad is shown by default when restarting after Game Over
     public int showAdEvery = 3;
     
     // The current count to the next advertisment
     public int adCount = 0;
     
     // This is set for testing purposes. When releasing the actual game, set this to false
     public bool testMode = true;

     // The screen that appears when the player watches an ad to the end and gets a reward
     public Transform rewardScreen;

     // Runs before Start()
     void Awake()
     {
         // Get the current ad count from PlayerPrefs
         adCount = PlayerPrefs.GetInt( "AdCount", adCount);
         
         // Checking and initializing unity ads
         if (Advertisement.isSupported)
         {
             // Initialize the ad service. The number is your app ID on the unity ads website
             if (testMode == true)
             {
                 // Runnig in test mode
                 Advertisement.Initialize(gameID, true);
             }
             else
             {
                 // Running in release mode
                 Advertisement.Initialize(gameID, false);
             }
         }
     }

     /// <summary>
     /// Counts the ad and then shows it
     /// </summary>
     public void CountAd()
     {
         // Count to the next time we need to show an ad
         if ( adCount < showAdEvery )
         {
             adCount++;
         }
         else
         {
             ShowAd(false);
         }
         
         // Record the current ad count in PlayerPrefs
         PlayerPrefs.SetInt( "AdCount", adCount);
     }

     /// <summary>
     /// Shows the ad, with or without a reward
     /// </summary>
     /// <param name="giveReward">If set to <c>true</c> give reward.</param>
     public void ShowAd( bool giveReward )
     {
         // Show the ad and check if the player watches it to the end for a reward
         if ( giveReward == true ) 
         {
             // If the ad is ready, show it and reset the ad counter
             if ( Advertisement.IsReady("rewardedVideoZone") )
             {
                 var options = new ShowOptions { resultCallback = HandleShowResult };

                 Advertisement.Show ("rewardedVideoZone", options);
             } 
         }
         else if ( Advertisement.IsReady("defaultZone") )
         {
             Advertisement.Show("defaultZone");
         }

         adCount = 0;

         // Record the current ad count in PlayerPrefs
         PlayerPrefs.SetInt( "AdCount", adCount);
     }

     /// <summary>
     /// Checks if an ad was viewed by the user to the end, then gives a reward
     /// </summary>
     /// <param name="result">Result.</param>
     private void HandleShowResult(ShowResult result)
     {
         switch (result)
         {
         case ShowResult.Finished:
             Debug.Log("The ad was successfully shown.");

             //Create the reward screen after we saw the ad
             if ( rewardScreen )    Instantiate(rewardScreen);
             
             break;
         case ShowResult.Skipped:
             Debug.Log("The ad was skipped before reaching the end.");
             break;
         case ShowResult.Failed:
             Debug.LogError("The ad failed to be shown.");
             break;
         }
     }

     /// <summary>
     /// At the start of the level counts towards showing the ad. For example after 3 times loading the level, an ad will be shown at the start of the level
     /// </summary>
     public void OnLevelWasLoaded()
     {
         CountAd();
     }
 }

}

Comment
Add comment
10 |3000 characters needed characters left characters exceeded
▼
  • Viewable by all users
  • Viewable by moderators
  • Viewable by moderators and the original poster
  • Advanced visibility
Viewable by all users

0 Replies

· Add your reply
  • Sort: 

Your answer

Hint: You can notify a user about this post by typing @username

Up to 2 attachments (including images) can be used with a maximum of 524.3 kB each and 1.0 MB total.

Follow this Question

Answers Answers and Comments

111 People are following this question.

avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image

Related Questions

what i have to do to make my character move up and down in the x Axis? 0 Answers

it is possible to rotate a texture ? 0 Answers

How to configure my camera ?? 0 Answers

fading in and out sounds 1 Answer

Is it better to split a script into different scripts? 1 Answer


Enterprise
Social Q&A

Social
Subscribe on YouTube social-youtube Follow on LinkedIn social-linkedin Follow on Twitter social-twitter Follow on Facebook social-facebook Follow on Instagram social-instagram

Footer

  • Purchase
    • Products
    • Subscription
    • Asset Store
    • Unity Gear
    • Resellers
  • Education
    • Students
    • Educators
    • Certification
    • Learn
    • Center of Excellence
  • Download
    • Unity
    • Beta Program
  • Unity Labs
    • Labs
    • Publications
  • Resources
    • Learn platform
    • Community
    • Documentation
    • Unity QA
    • FAQ
    • Services Status
    • Connect
  • About Unity
    • About Us
    • Blog
    • Events
    • Careers
    • Contact
    • Press
    • Partners
    • Affiliates
    • Security
Copyright © 2020 Unity Technologies
  • Legal
  • Privacy Policy
  • Cookies
  • Do Not Sell My Personal Information
  • Cookies Settings
"Unity", Unity logos, and other Unity trademarks are trademarks or registered trademarks of Unity Technologies or its affiliates in the U.S. and elsewhere (more info here). Other names or brands are trademarks of their respective owners.
  • Anonymous
  • Sign in
  • Create
  • Ask a question
  • Spaces
  • Default
  • Help Room
  • META
  • Moderators
  • Explore
  • Topics
  • Questions
  • Users
  • Badges