using PhxhSDK; using System.Collections; using System.Collections.Generic; using UnityEngine; public partial class BIManager : Singlenton, IInitable { /// /// 隐私协议同意标志 /// public const int Agree_Privacy = 1; #region 基础数据 /// /// 授权时上报 /// public const string app_privacy_permission = "app_privacy_permission"; /// /// 开始请求app config时上报 /// public const string app_config_request = "app_config_request"; /// /// app config返回时上报 /// public const string app_config_response = "app_config_response"; /// /// 版本资源检测开始时上报 /// public const string app_version_check = "app_version_check"; /// /// 版本资源检测结束时上报 /// public const string app_version_check_result = "app_version_check_result"; /// /// 版本资源检测是否需要热更强更请求开始时上报 /// public const string app_hotupdate_config_request = "app_hotupdate_config_request"; /// /// 版本资源检测是否需要热更强更结束时上报 /// public const string app_hotupdate_config_response = "app_hotupdate_config_response"; /// /// 热更资源开始下载时上报 /// public const string app_hotupdate_res_start = "app_hotupdate_res_start"; /// /// 热更资源下载结束时上报 /// public const string app_hotupdate_res_end = "app_hotupdate_res_end"; /// /// 启动后loading开始时上报 /// public const string preload_start = "preload_start"; /// /// 启动加载进度更新时上报 /// public const string preload_process = "preload_process"; /// /// 启动后loading结束时上报 /// public const string preload_end = "preload_end"; /// /// 自动登录或手动登录时上报 /// public const string login_check = "login_check"; /// /// 验证码请求时上报 /// public const string veri_code_request = "veri_code_request"; /// /// 验证码发送成功时上报 /// public const string veri_code_request_result = "veri_code_request_result"; /// /// 登录点击时上报 /// public const string login_request = "login_request"; /// /// 登录成功进入服务器时上报 /// public const string login_response = "login_response"; /// /// 进入主场景loading开始时上报 /// public const string enter_main_loading_start = "enter_main_loading_start"; /// /// 进入主场景loading结束时上报 /// public const string enter_main_loading_end = "enter_main_loading_end"; /// /// 首次为账号角色起名成功后 /// public const string role_name_create = "role_name_create"; /// /// 账号升级成功后上报 /// public const string role_level_up = "role_level_up"; /// /// 通行证等级升级成功后上报 /// public const string pass_level_up = "pass_level_up"; #endregion #region 新手引导 /// /// 开始/完成/跳过新手引导每一小阶段时记录 /// public const string guide_complete_event = "guide_complete_event"; #endregion #region 活动与任务 /// /// 每日签到领取奖励后上报 /// public const string daily_sign = "daily_sign"; /// /// 达到任务完成条件时上报 /// public const string task_complete = "task_complete"; /// /// 点击领取时上报 /// public const string task_award_get = "task_award_get"; #endregion #region 关卡 /// /// 关卡进入时上报 /// public const string level_start_event = "level_start_event"; /// /// 关卡结束后上报 /// public const string level_end_event = "level_end_event"; /// /// PVP结束后上报 /// public const string exercise_start = "exercise_start"; /// /// PVP结束后上报 /// public const string exercise_report = "exercise_report"; #endregion #region 养成打点 /// /// 升级、进修、考核、好感度提升等上报 /// public const string hero_up = "hero_up"; /// /// 角色技能养成上报 /// public const string hero_skill_up = "hero_skill_up"; /// /// 载具研发上报 /// public const string vehicle_up = "vehicle_up"; #endregion #region 编队 /// /// 编辑队伍信息保存上报 /// public const string team_create = "team"; #endregion #region 商城与支付 /// /// 创建订单时上报 /// public const string payment_init = "payment_init"; /// /// 支付订单失败时上报 /// public const string payment_fail = "payment_fail"; /// /// 支付订单成功时上报 /// public const string payment_success = "payment_success"; #endregion #region 邮件 /// /// 邮件查看后 /// public const string mail_show = "mail_show"; #endregion #region 商品 /// /// 商品页面曝光 /// public const string product_info_show = "product_info_show"; /// /// 点击前往购买 /// public const string click_to_purchase = "click_to_purchase"; /// /// 支付页面曝光 /// public const string payment_page_show = "payment_page_show"; #endregion /// /// 抽卡 /// public const string draw_card = "draw_card"; }