42 lines
1.3 KiB
C#
42 lines
1.3 KiB
C#
using System;
|
|
using UnityEngine;
|
|
|
|
namespace Stary.Evo
|
|
{
|
|
public class AppConfig
|
|
{
|
|
public static OpenDomainType OpenDomainType { get; set; }
|
|
|
|
/// <summary>
|
|
/// package name
|
|
/// </summary>
|
|
public static string PackageDomainName { get; set; }
|
|
|
|
|
|
public static bool IsLogin { get; set; }
|
|
public static string IpConfig { get; set; }
|
|
public static string UserName { get; set; }
|
|
public static string PassWord { get; set; }
|
|
public static string ProductName { get; set; }
|
|
public static string Platform { get; set; }
|
|
|
|
public static string MainDomainVersion { get; set; }
|
|
|
|
|
|
|
|
|
|
public static bool DeveloperMode
|
|
{
|
|
get { return HybridClREntrance.Global.stage == StageType.Developer || PackageDomainName == "Main"; }
|
|
}
|
|
}
|
|
|
|
public class GlobalConfig
|
|
{
|
|
public const string RikidHandLeft = "LeftHandRender/RKHandVisual/Hand_L/left_wrist/left_palm";
|
|
public const string RikidHandRight = "RightHandRender/RKHandVisual/Hand_R/right_wrist/right_palm";
|
|
|
|
public const string RikidHandRightIndexTip =
|
|
"RightHandRender/RKHandVisual/Hand_R/right_wrist/right_index_metacarpal/right_index_proximal/right_index_intermediate/right_index_distal/right_index_tip";
|
|
}
|
|
} |