fix:1、更换loading界面
2、修复bug,open等级添加 Signed-off-by: barry <barry@gmail.com>
This commit is contained in:
Binary file not shown.
|
Before Width: | Height: | Size: 3.7 MiB After Width: | Height: | Size: 6.4 MiB |
Binary file not shown.
|
Before Width: | Height: | Size: 7.6 MiB After Width: | Height: | Size: 4.1 MiB |
Binary file not shown.
Binary file not shown.
|
Before Width: | Height: | Size: 12 KiB After Width: | Height: | Size: 4.6 KiB |
Binary file not shown.
@@ -1,16 +1,16 @@
|
||||
Privacy Policy – Red-Hot Roast
|
||||
Red-Hot Roast (“we”, “our”, or “the Game”) is committed to protecting your privacy. This Privacy Policy explains how we handle your information when you download and play our game.
|
||||
Privacy Policy – Red-Hot Arrow
|
||||
Red-Hot Arrow (“we”, “our”, or “the Game”) is committed to protecting your privacy. This Privacy Policy explains how we handle your information when you download and play our game.
|
||||
1. No Personal Data Collection
|
||||
We do not collect, store, or share any personally identifiable information. You are not required to create an account, provide an email address, or submit any personal details to play Red-Hot Roast.
|
||||
We do not collect, store, or share any personally identifiable information. You are not required to create an account, provide an email address, or submit any personal details to play Red-Hot Arrow.
|
||||
|
||||
2. No Data Access or Tracking
|
||||
Our game does not access your device’s contacts, photos, location, microphone, or camera. We do not use any tracking technologies such as cookies or fingerprinting.
|
||||
|
||||
3. Children’s Privacy
|
||||
Red-Hot Roast is safe for children. We do not knowingly collect any information from children under 13. Because we collect no data at all, no parental consent is required under COPPA or similar laws.
|
||||
Red-Hot Arrow is safe for children. We do not knowingly collect any information from children under 13. Because we collect no data at all, no parental consent is required under COPPA or similar laws.
|
||||
|
||||
4. Third-Party Services
|
||||
Red-Hot Roast does not integrate any third-party analytics, advertising SDKs, or crash reporting tools. Your gameplay remains completely offline and private.
|
||||
Red-Hot Arrow does not integrate any third-party analytics, advertising SDKs, or crash reporting tools. Your gameplay remains completely offline and private.
|
||||
|
||||
5. Changes to This Privacy Policy
|
||||
We may update this Privacy Policy occasionally. Any changes will be posted on this page with an updated effective date.
|
||||
|
||||
@@ -1,14 +1,14 @@
|
||||
Terms of Service – Red-Hot Roast
|
||||
By downloading, installing, or playing Red-Hot Roast (“the Game”), you agree to be bound by these Terms of Service.
|
||||
Terms of Service – Red-Hot Arrow
|
||||
By downloading, installing, or playing Red-Hot Arrow (“the Game”), you agree to be bound by these Terms of Service.
|
||||
|
||||
1. The Service
|
||||
Red-Hot Roast is a casual puzzle game inspired by tile-matching mechanics. The Game is provided for your personal, non-commercial entertainment.
|
||||
Red-Hot Arrow is a casual puzzle game inspired by tile-matching mechanics. The Game is provided for your personal, non-commercial entertainment.
|
||||
|
||||
2. No Account Required
|
||||
You may play the Game without creating an account or providing any personal information.
|
||||
|
||||
3. No In-App Purchases or Ads
|
||||
Red-Hot Roast contains no in-app purchases, no outbound links, and no third-party advertisements. The Game is a one-time download with no ongoing costs or distractions.
|
||||
Red-Hot Arrow contains no in-app purchases, no outbound links, and no third-party advertisements. The Game is a one-time download with no ongoing costs or distractions.
|
||||
|
||||
4. User Conduct
|
||||
You agree to use the Game only for its intended purpose. You may not:
|
||||
@@ -17,7 +17,7 @@ You agree to use the Game only for its intended purpose. You may not:
|
||||
- Attempt to disrupt or damage the Game’s functionality.
|
||||
|
||||
5. Intellectual Property
|
||||
All content in Red-Hot Roast – including but not limited to the game name, artwork, sound effects, tile designs, and code – is the exclusive property of the developer. You may not copy, redistribute, or commercially exploit any part of the Game without explicit permission.
|
||||
All content in Red-Hot Arrow – including but not limited to the game name, artwork, sound effects, tile designs, and code – is the exclusive property of the developer. You may not copy, redistribute, or commercially exploit any part of the Game without explicit permission.
|
||||
|
||||
6. No Warranties
|
||||
The Game is provided “as is.” We do not guarantee that it will be error-free or uninterrupted. To the fullest extent permitted by law, we disclaim all warranties, express or implied.
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
using System;
|
||||
|
||||
using System.Linq;
|
||||
using DG.Tweening;
|
||||
using Newtonsoft.Json;
|
||||
using Spine.Unity;
|
||||
@@ -51,6 +51,8 @@ namespace RedHotRoast
|
||||
|
||||
if (GameHelper.IsGiftSwitch())
|
||||
{
|
||||
SetLevelText();
|
||||
|
||||
((FGUI.ZM_Common_01.com_open_tips)ui.com_tips).t0.Play(() =>
|
||||
{
|
||||
DOVirtual.DelayedCall(0.2f, () =>
|
||||
@@ -71,6 +73,41 @@ namespace RedHotRoast
|
||||
}
|
||||
}
|
||||
|
||||
private void SetLevelText()
|
||||
{
|
||||
try
|
||||
{
|
||||
// 添加空值检查,防止 NullReferenceException
|
||||
if (DataMgr.MakeupTaskHistory != null)
|
||||
{
|
||||
var makeupTaskHistory = DataMgr.MakeupTaskHistory?.Value;
|
||||
if (makeupTaskHistory != null && makeupTaskHistory.Any())
|
||||
{
|
||||
var makeupTaskData = makeupTaskHistory.Last();
|
||||
var config = MakeupModel.GetData(makeupTaskData.tableId);
|
||||
if (config != null)
|
||||
{
|
||||
var textLevelLimit = ((FGUI.ZM_Common_01.com_open_tips)ui.com_tips).text_level_limit;
|
||||
if (textLevelLimit != null)
|
||||
{
|
||||
var stage = config.levels_need - GameHelper.GetLevel();
|
||||
if (stage <= 0)
|
||||
{
|
||||
stage = 1;
|
||||
}
|
||||
textLevelLimit.SetVar("x", stage.ToString()).FlushVars();
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
catch (Exception e)
|
||||
{
|
||||
Console.WriteLine(e);
|
||||
throw;
|
||||
}
|
||||
}
|
||||
|
||||
protected override void OnOpen(object args)
|
||||
{
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user