mirror of
https://github.com/nothke/quality-control.git
synced 2024-11-12 22:03:42 +00:00
tweaks
This commit is contained in:
parent
f78ac78893
commit
5d338b14f3
@ -22,6 +22,7 @@ MonoBehaviour:
|
||||
|
||||
Please ensure the quality of our Torus product.
|
||||
|
||||
|
||||
Dispose
|
||||
of defective units using the disposal belt.'
|
||||
SuccessMessage: Great job!
|
||||
|
@ -21,7 +21,11 @@ MonoBehaviour:
|
||||
Quantity: 40
|
||||
MaxDefectivePercentage: 25
|
||||
TimeLimit: 270
|
||||
LevelMessage: We are pleased to announce that we have secured the capital for the
|
||||
expansion of E(tm) production.
|
||||
SuccessMessage: Great job!
|
||||
LevelMessage: 'We are pleased to announce that we have secured the capital to expand
|
||||
the E(tm) production.
|
||||
|
||||
|
||||
Please familiarize yourself with the new crane-powered
|
||||
production line!'
|
||||
SuccessMessage: Congratulations! You have completed all the shifts!
|
||||
FailureMessage: Please try harder in the future!
|
||||
|
@ -21526,7 +21526,7 @@ MonoBehaviour:
|
||||
|
||||
Your job is to <b>remove defective
|
||||
products from the production line.</b> When you spot a defective product, approach
|
||||
it and press and hold <b>[LMB]</b> to take it in your hands
|
||||
it and press and hold <b>[LMB]</b> to take it in your hands.
|
||||
|
||||
Defective products
|
||||
should be disposed of at specialized disposal lines.
|
||||
|
@ -270,12 +270,12 @@ public class UIManager: MonoBehaviour
|
||||
|
||||
public void PushStageComplete(bool success, string message)
|
||||
{
|
||||
if (Scoreboard.Instance.CurrentStage != StagingManager.StageEnum.Level3)
|
||||
if (Scoreboard.Instance.CurrentStage == StagingManager.StageEnum.Level3)
|
||||
{
|
||||
NextStageButton.SetActive(false);
|
||||
RetryButton.SetActive(false);
|
||||
}
|
||||
if (success)
|
||||
else if (success)
|
||||
{
|
||||
NextStageButton.SetActive(true);
|
||||
RetryButton.SetActive(false);
|
||||
|
Loading…
Reference in New Issue
Block a user