NLDClient-yudde/ProjectNLD/Assets/Code/Scripts/Gameplay/Debug/Deprecated/SROptions.TapTapDB.cs

52 lines
721 B
C#
Raw Normal View History

2023-11-23 15:56:25 +08:00

using System.Collections.Generic;
using System.ComponentModel;
using Gameplay;
using Gameplay.Character;
using Gameplay.Level;
using Gameplay.SubSystems;
using PhxhSDK;
using UnityEngine;
public partial class SROptions
{
2023-10-19 15:00:19 +08:00
2024-09-13 17:37:36 +08:00
/*
2023-10-19 15:00:19 +08:00
[Category("TapTapDB")]
public void SetName()
{
#if SDK_TAPTAP
var helper = SDKManager.Instance.GetSdkHelper(SDKManager.SdkName.TapTap) as TapTapSdkHelper;
helper.SetName("123");
#endif
}
[Category("TapTapDB")]
public void SetTestAttri()
{
#if SDK_TAPTAP
var helper = SDKManager.Instance.GetSdkHelper(SDKManager.SdkName.TapTap) as TapTapSdkHelper;
2024-05-31 14:26:33 +08:00
helper.SetUserProperty("testProperty","testValue");
2023-10-19 15:00:19 +08:00
#endif
}
2024-09-13 17:37:36 +08:00
*/
2023-10-19 15:00:19 +08:00
2023-11-23 15:56:25 +08:00
}