RunTasksSync Flag.
This commit is contained in:
parent
dc68375ec8
commit
e2cfcef55b
@ -31,6 +31,7 @@ public abstract class GameTutorial
|
|||||||
|
|
||||||
public boolean SetTutorialPositions = true;
|
public boolean SetTutorialPositions = true;
|
||||||
public boolean TeleportOnEnd = true;
|
public boolean TeleportOnEnd = true;
|
||||||
|
public boolean RunTasksSync = true;
|
||||||
|
|
||||||
public long TimeBetweenPhase = 0;
|
public long TimeBetweenPhase = 0;
|
||||||
public long StartAfterTutorial = 5000;
|
public long StartAfterTutorial = 5000;
|
||||||
|
@ -142,14 +142,21 @@ public abstract class TutorialPhase
|
|||||||
|
|
||||||
private void displayMessage(final TutorialText text)
|
private void displayMessage(final TutorialText text)
|
||||||
{
|
{
|
||||||
_tutorial.Manager.runSync(new Runnable()
|
if(_tutorial.RunTasksSync)
|
||||||
{
|
{
|
||||||
@Override
|
_tutorial.Manager.runSync(new Runnable()
|
||||||
public void run()
|
|
||||||
{
|
{
|
||||||
onMessageDisplay(text);
|
@Override
|
||||||
}
|
public void run()
|
||||||
});
|
{
|
||||||
|
onMessageDisplay(text);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
onMessageDisplay(text);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
protected TutorialText getNextMessage()
|
protected TutorialText getNextMessage()
|
||||||
|
Loading…
Reference in New Issue
Block a user