Skip to content

Commit

Permalink
Merge branch 'master' into PBRisComing
Browse files Browse the repository at this point in the history
Conflicts:
	jme3-core/src/main/java/com/jme3/material/TechniqueDef.java
  • Loading branch information
Nehon committed Apr 11, 2015
2 parents 81c995e + f9be42e commit e1d0e06
Show file tree
Hide file tree
Showing 109 changed files with 2,842 additions and 2,159 deletions.
1,166 changes: 580 additions & 586 deletions jme3-android/src/main/java/com/jme3/app/AndroidHarness.java

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -195,19 +195,6 @@ public class AndroidHarnessFragment extends Fragment implements
*/
protected String exitDialogMessage = "Use your home key to bring this app into the background or exit to terminate it.";

/**
* Set the screen window mode. If screenFullSize is true, then the
* notification bar and title bar are removed and the screen covers the
* entire display. If screenFullSize is false, then the notification bar
* remains visible if screenShowTitle is true while screenFullScreen is
* false, then the title bar is also displayed under the notification bar.
*/
protected boolean screenFullScreen = true;
/**
* if screenShowTitle is true while screenFullScreen is false, then the
* title bar is also displayed under the notification bar
*/
protected boolean screenShowTitle = true;
/**
* Splash Screen picture Resource ID. If a Splash Screen is desired, set
* splashPicID to the value of the Resource ID (i.e. R.drawable.picname). If
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ public class VideoRecorderAppState extends AbstractAppState {

public Thread newThread(Runnable r) {
Thread th = new Thread(r);
th.setName("jME Video Processing Thread");
th.setName("jME3 Video Processor");
th.setDaemon(true);
return th;
}
Expand Down

0 comments on commit e1d0e06

Please sign in to comment.