mergemilitary/Assets/TKGSDK/UnitySDK/Scripts/AnalyticsScripts/ToukaSettings/StaticStringsEvent.cs

16 lines
519 B
C#
Raw Normal View History

2022-05-23 13:39:59 +00:00
/// <summary>
/// 统一定义游戏内打点事件名称
/// </summary>
public static partial class StaticStringsEvent
{
// stage
2022-05-27 16:06:04 +00:00
public const string Event_Sort_stage_start = "Level_Start";
public const string Event_Sort_stage_time = "Level_Time";
public const string Event_Sort_stage_failure = "Level_Fail";
public const string Event_Sort_stage_success = "Level_Success";
2022-05-23 13:39:59 +00:00
2022-05-27 16:06:04 +00:00
public const string Event_Sort_stage_level = "Level";
2022-05-23 13:39:59 +00:00
public const string Event_Sort_time_long = "time_long";
}