| | |
| | | public string clientPackageFlag { get { return m_ClientPackageFlag; } } |
| | | |
| | | [SerializeField] int m_Branch = 0; |
| | | public int branch { get { return m_Branch; } } |
| | | public int branch {
|
| | | get {
|
| | | if (DebugUtility.Instance.debugAccount && DebugUtility.Instance.debugBranch >= 0)
|
| | | {
|
| | | return DebugUtility.Instance.debugBranch;
|
| | | }
|
| | | else
|
| | | {
|
| | | return m_Branch;
|
| | | }
|
| | | }
|
| | | } |
| | | |
| | | [SerializeField] InstalledAsset m_AssetAccess = InstalledAsset.IngoreDownLoad;
|
| | | public InstalledAsset assetAccess { get { return m_AssetAccess; } set { m_AssetAccess = value; } } |