void OnGUI() { beginColumn(); if (GUILayout.Button("Init")) { // replace with your app ID!!! VungleAndroid.init("com.prime31.Vungle"); } if (GUILayout.Button("Is Sound Enabled?")) { Debug.Log("is sound enabled? " + VungleAndroid.isSoundEnabled()); } if (GUILayout.Button("Set Sound Enabled")) { VungleAndroid.setSoundEnabled(true); } if (GUILayout.Button("Is Video Available?")) { Debug.Log("is video available? " + VungleAndroid.isVideoAvailable()); } if (GUILayout.Button("Set Ad Orientation to AutoRotate")) { VungleAndroid.setAdOrientation(VungleAdOrientation.AutoRotate); } endColumn(true); if (GUILayout.Button("Play Ad")) { VungleAndroid.playAd(); } if (GUILayout.Button("Play Insentivised Ad")) { VungleAndroid.playAd(true, "some-user"); } endColumn(); }
void OnGUI() { beginColumn(); if (GUILayout.Button("Init")) { // replace with your app ID!!! VungleAndroid.init("com.prime31.Vungle"); } if (GUILayout.Button("Is Video Available?")) { Debug.Log("is video available? " + VungleAndroid.isVideoAvailable()); } if (GUILayout.Button("Is Sound Enabled?")) { Debug.Log("is sound enabled? " + VungleAndroid.isSoundEnabled()); } endColumn(true); if (GUILayout.Button("Display Advert")) { VungleAndroid.displayAdvert(); } if (GUILayout.Button("Display Incentivized Advert")) { VungleAndroid.displayIncentivizedAdvert(true); } endColumn(); }