32 lines
		
	
	
		
			2.2 KiB
		
	
	
	
		
			C#
		
	
	
	
			
		
		
	
	
			32 lines
		
	
	
		
			2.2 KiB
		
	
	
	
		
			C#
		
	
	
	
| /// <summary>
 | ||
| /// 此文件为SDK内部所用事件
 | ||
| ///
 | ||
| /// 游戏相关事件 请写在 Assets/Scripts/ToukaGames/AnalyticsScripts/ToukaSettings/StaticStringsEvent.cs
 | ||
| /// </summary>
 | ||
| public static partial class StaticStringsEvent {
 | ||
| 
 | ||
|     // tenjin打点
 | ||
|     public const string Event_Tenjin_TKInner_NewUserNextDayLogin = "next_day_login";        // 次日登陆打点
 | ||
|     public const string Event_Tenjin_TKInner_NewUserPassLevelX = "new_user_pass_level";     // 新用户通关第X关解锁,由游戏逻辑调用
 | ||
|     public const string Event_Tenjin_TKInner_NewUserAdsCount = "new_user_ads_count";        // 新用户观看X次广告
 | ||
| 
 | ||
|     // umeng打点
 | ||
|     public const string Event_Sort_TKInner_iv_ad_show = "iv_ad_show";                       // 插屏展示
 | ||
|     public const string Event_Sort_TKInner_iv_ad_show_failed = "iv_ad_show_failed";         // 插屏展示失败
 | ||
|     public const string Event_Sort_TKInner_rv_ad_show = "rv_ad_show";                       // 激励视频展示
 | ||
|     public const string Event_Sort_TKInner_rv_ad_show_fail = "rv_ad_show_fail";             // 激励视频展示失败
 | ||
|     public const string Event_Type_TKInner_ad_position = "ad_position";                     // 广告点位
 | ||
|     public const string Event_Sort_TKInner_ad_button_show = "ad_button_show";               // 广告按钮展示
 | ||
|     public const string Event_Sort_TKInner_ad_button_click = "ad_button_click";             // 广告按钮点击
 | ||
| 
 | ||
|     public const string Event_Sort_TKInner_isready_rv_failure = "isready_rv_failure";       // 激励视频isReady失败
 | ||
|     public const string Event_Sort_TKInner_isready_rv_success = "isready_rv_success";       // 激励视频isReady成功
 | ||
|     public const string Event_Sort_TKInner_isready_iv_failure = "isready_iv_failure";       // 插屏isReady失败
 | ||
|     public const string Event_Sort_TKInner_isready_iv_success = "isready_iv_success";       // 插屏isReady成功
 | ||
| 
 | ||
|     public const string Event_Sort_TKInner_ivrv_ad_show = "ivrv_ad_show";                   // 激励视频/插屏展示都会上报这个事件
 | ||
| 
 | ||
|     public const string Event_Sort_na_ad_show = "na_ad_show";                               // native 展示
 | ||
|     public const string Event_Sort_bn_ad_show = "bn_ad_show";                               // banner 展示
 | ||
| 
 | ||
| } |