SDK:
- make SceneApplication error message less error prone git-svn-id: https://jmonkeyengine.googlecode.com/svn/trunk@10198 75d07b2b-3a1a-0410-a2c5-0572b91ccdca
This commit is contained in:
parent
ff0b35b5f0
commit
f084a0b8a0
@ -279,7 +279,7 @@ public class SceneApplication extends Application implements LookupProvider {
|
||||
|
||||
@Override
|
||||
public void update() {
|
||||
if (speed == 0) {
|
||||
if(!started) {
|
||||
return;
|
||||
}
|
||||
try {
|
||||
@ -618,11 +618,7 @@ public class SceneApplication extends Application implements LookupProvider {
|
||||
Exceptions.printStackTrace(t);
|
||||
} else {
|
||||
if (lastError != null && !lastError.equals(msg)) {
|
||||
Message mesg = new NotifyDescriptor.Message(
|
||||
"Error in scene!\n"
|
||||
+ "(" + t + ")",
|
||||
NotifyDescriptor.WARNING_MESSAGE);
|
||||
DialogDisplayer.getDefault().notifyLater(mesg);
|
||||
StatusDisplayer.getDefault().setStatusText("Error in Scene, check application log");
|
||||
Exceptions.printStackTrace(t);
|
||||
lastError = msg;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user