|
|
|
|
@ -15,7 +15,7 @@ namespace UltraCombos.Frozen.RoyalGallery |
|
|
|
|
public bool isEnablePaintBG = true; |
|
|
|
|
|
|
|
|
|
[Configuration.Config] |
|
|
|
|
public bool isGetPageBySelf = false; |
|
|
|
|
public bool isGetPageBySelf = true; |
|
|
|
|
|
|
|
|
|
[Configuration.Config] |
|
|
|
|
public bool isEnableSceneTester = false; |
|
|
|
|
@ -30,6 +30,17 @@ namespace UltraCombos.Frozen.RoyalGallery |
|
|
|
|
// Start is called before the first frame update |
|
|
|
|
void Start() |
|
|
|
|
{ |
|
|
|
|
Debug.Log |
|
|
|
|
( |
|
|
|
|
"AppDataxConfiguration::Start()\n" + |
|
|
|
|
$"deviceId = {deviceId}\n" + |
|
|
|
|
$"isEnablePaintBG = {isEnablePaintBG}\n" + |
|
|
|
|
$"isGetPageBySelf = {isGetPageBySelf}\n" + |
|
|
|
|
$"isEnableSceneTester = {isEnableSceneTester}\n" + |
|
|
|
|
$"targetIndex = {targetIndex}\n" + |
|
|
|
|
$"isTaiwanNo1 = {isTaiwanNo1}\n" |
|
|
|
|
); |
|
|
|
|
|
|
|
|
|
AppData.Instance.deviceId = deviceId; |
|
|
|
|
AppData.Instance.isEnablePaintBG = isEnablePaintBG; |
|
|
|
|
AppData.Instance.isGetPageBySelf = isGetPageBySelf; |
|
|
|
|
|