Codota Logo
com.jme3.system
Code IndexAdd Codota to your IDE (free)

How to use com.jme3.system

Best Java code snippets using com.jme3.system (Showing top 20 results out of 315)

  • Add the Codota plugin to your IDE and get smart completions
private void myMethod () {
SimpleDateFormat s =
  • Codota IconString pattern;new SimpleDateFormat(pattern)
  • Codota IconString template;Locale locale;new SimpleDateFormat(template, locale)
  • Codota Iconnew SimpleDateFormat()
  • Smart code suggestions by Codota
}
origin: jMonkeyEngine/jmonkeyengine

/**
 * Displays an error message to the user in whichever way the context
 * feels is appropriate. If this is a headless or an offscreen surface
 * context, this method should do nothing.
 *
 * @param message The error message to display. May contain new line
 * characters.
 */
public static void showErrorDialog(String message){
  checkDelegate();
  systemDelegate.showErrorDialog(message);
}
origin: jMonkeyEngine/jmonkeyengine

  @Override
  public void invoke(final long window, final int width, final int height) {
    settings.setResolution(width, height);
    listener.reshape(width, height);
  }
});
origin: jMonkeyEngine/jmonkeyengine

/**
 * Displays or hides the onscreen soft keyboard
 * @param show If true, the keyboard is displayed, if false, the screen is hidden.
 */
public static void showSoftKeyboard(boolean show) {
  checkDelegate();
  systemDelegate.showSoftKeyboard(show);
}
origin: jMonkeyEngine/jmonkeyengine

public void setSettings(AppSettings settings) {
  this.settings.copyFrom(settings);
  this.settings.setRenderer(AppSettings.LWJGL_OPENGL2);
  if (actualContext != null){
    actualContext.setSettings(settings);
  }
}
origin: jMonkeyEngine/jmonkeyengine

  @Override
  public void invoke(final long window, final boolean focus) {
    if (wasActive != focus) {
      if (!wasActive) {
        listener.gainFocus();
        timer.reset();
      } else {
        listener.loseFocus();
      }
      wasActive = !wasActive;
    }
  }
});
origin: jMonkeyEngine/jmonkeyengine

public static AssetManager newAssetManager() {
  checkDelegate();
  return systemDelegate.newAssetManager();
}
origin: jMonkeyEngine/jmonkeyengine

public static boolean isLowPermissions() {
  checkDelegate();
  return systemDelegate.isLowPermissions();
}
origin: jMonkeyEngine/jmonkeyengine

public static boolean showSettingsDialog(AppSettings sourceSettings, final boolean loadFromRegistry) {
  checkDelegate();
  return systemDelegate.showSettingsDialog(sourceSettings, loadFromRegistry);
}
origin: jMonkeyEngine/jmonkeyengine

public static String getFullName() {
  checkDelegate();
  return systemDelegate.getFullName();
}
origin: jMonkeyEngine/jmonkeyengine

public static AudioRenderer newAudioRenderer(AppSettings settings) {
  checkDelegate();
  return systemDelegate.newAudioRenderer(settings);
}
origin: jMonkeyEngine/jmonkeyengine

public static void initialize(AppSettings settings) {
  checkDelegate();
  systemDelegate.initialize(settings);
}
origin: jMonkeyEngine/jmonkeyengine

public static URL getResource(String name) {
  checkDelegate();
  return systemDelegate.getResource(name);
}
origin: jMonkeyEngine/jmonkeyengine

public static InputStream getResourceAsStream(String name) {
  checkDelegate();
  return systemDelegate.getResourceAsStream(name);
}
origin: jMonkeyEngine/jmonkeyengine

public static Platform getPlatform() {
  checkDelegate();
  return systemDelegate.getPlatform();
}
origin: jMonkeyEngine/jmonkeyengine

public static SoftTextDialogInput getSoftTextDialogInput() {
  checkDelegate();
  return systemDelegate.getSoftTextDialogInput();
}
origin: jMonkeyEngine/jmonkeyengine

public static synchronized File getStorageFolder(StorageFolderType type) {
  checkDelegate();
  return systemDelegate.getStorageFolder(type);
}
origin: jMonkeyEngine/jmonkeyengine

public static URL getPlatformAssetConfigURL() {
  checkDelegate();
  return systemDelegate.getPlatformAssetConfigURL();
}
 
origin: jMonkeyEngine/jmonkeyengine

public static boolean trackDirectMemory() {
  checkDelegate();
  return systemDelegate.trackDirectMemory();
}
origin: jMonkeyEngine/jmonkeyengine

  @Override
  public void invoke(final long window, final int width, final int height) {
    settings.setResolution(width, height);
    listener.reshape(width, height);
  }
});
origin: jMonkeyEngine/jmonkeyengine

public static AssetManager newAssetManager(URL configFile) {
  checkDelegate();
  return systemDelegate.newAssetManager(configFile);
}
com.jme3.system

Most used classes

  • AppSettings
    AppSettings provides a store of configuration to be used by the application. By default only the Jme
  • JmeSystem
  • SystemListener
    The ContextListener> provides a means for an application to receive events relating to a context.
  • JmeContext
    Represents a rendering context within the engine.
  • Timer
    Timer is the base class for a high resolution timer. It is created from getTimer("display system")
  • JmeCanvasContext,
  • NullContext,
  • NativeLibraryLoader,
  • AwtPanel,
  • NullRenderer,
  • LwjglContext,
  • LwjglGLDebugOutputHandler,
  • JmeContext$Type,
  • JmeSystemDelegate,
  • AwtPanelsContext,
  • LwjglWindow,
  • Annotations$Internal,
  • ErrorDialog,
  • JmeDesktopSystem
Codota Logo
  • Products

    Search for Java codeSearch for JavaScript codeEnterprise
  • IDE Plugins

    IntelliJ IDEAWebStormAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimAtomGoLandRubyMineEmacsJupyter
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogCodota Academy Plugin user guide Terms of usePrivacy policyJava Code IndexJavascript Code Index
Get Codota for your IDE now