本文整理汇总了C#中Soomla.Levelup.Level.GetTimesStarted方法的典型用法代码示例。如果您正苦于以下问题:C# Level.GetTimesStarted方法的具体用法?C# Level.GetTimesStarted怎么用?C# Level.GetTimesStarted使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Soomla.Levelup.Level
的用法示例。
在下文中一共展示了Level.GetTimesStarted方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: Start
void Start () {
//Time.timeScale = 1;
Map.Initialize ();
timer = 0;
waveTime = 0;
ApplicationModel.currentEnemyNum = 0;
myAudio = GetComponent<AudioSource>();
PlaySound(GAME_MUSIC);
level = ApplicationModel.GetCurrentLevel();
wave = GetComponent<WaveController>();
wave.ReadFile(level.ID);
next = wave.Next ();
initWarning ();
player = playerObject.GetComponent<Player>();
level.Start();
Debug.Log( "This level has been started "+level.GetTimesStarted()+" times.");
Debug.Log( "This level has been played "+level.GetTimesPlayed()+" times.");
fadeEffect = fader.GetComponent<FadeEffect> ();
fadeEffect.FadeIn ();
gameStartPlayed = false;
}
示例2: OnLevelEnded
public void OnLevelEnded(Level level) {
int times = level.GetTimesStarted ();
if (isInsightsRefreshed) {
// User insights are available, adapt ad frequency
// according to user behavior history
if (payLikelihood == 0) {
// User isn't likely to pay, increase ad frequency:
// every 2 tries
if (times % 2 == 0) {
ShowInterstitial();
}
} else if (payLikelihood == 1) {
// Minnows - paid a small amount in other games,
// decrease ad frequency: every 10 tries
if (times % 10 == 0) {
ShowInterstitial();
}
} else {
// Dolphins and Whales - paid significant amounts in other games
// Don't show any ads at all
// (This 'else' block is just for explanatory purposes)
return;
}
} else {
// Fallback: in case we don't have any user insights
// Show the ad every 3 tries
if (times % 3 == 0) {
ShowInterstitial();
}
}
}