congrats Icon
New! Announcing our next generation AI code completions
Read here
Tabnine Logo
SaveGame.loadGame
Code IndexAdd Tabnine to your IDE (free)

How to use
loadGame
method
in
jme3tools.savegame.SaveGame

Best Java code snippets using jme3tools.savegame.SaveGame.loadGame (Showing top 8 results out of 315)

origin: jMonkeyEngine/jmonkeyengine

/**
 * Loads a savable that has been saved on this system with saveGame() before.
 * @param gamePath A unique path for this game, e.g. com/mycompany/mygame
 * @param dataName A unique name for this savegame, e.g. "save_001"
 * @param manager Link to an AssetManager if required for loading the data (e.g. models with textures)
 * @return The savable that was saved or null if none was found
 */
public static Savable loadGame(String gamePath, String dataName, AssetManager manager) {
  return loadGame(gamePath, dataName, manager, JmeSystem.StorageFolderType.External);
}
origin: jMonkeyEngine/jmonkeyengine

/**
 * Loads a savable that has been saved on this system with saveGame() before.
 * @param gamePath A unique path for this game, e.g. com/mycompany/mygame
 * @param dataName A unique name for this savegame, e.g. "save_001"
 * @return The savable that was saved
 */
public static Savable loadGame(String gamePath, String dataName) {
  return loadGame(gamePath, dataName, null, JmeSystem.StorageFolderType.External);
}
origin: jMonkeyEngine/jmonkeyengine

/**
 * Loads a savable that has been saved on this system with saveGame() before.
 * @param gamePath A unique path for this game, e.g. com/mycompany/mygame
 * @param dataName A unique name for this savegame, e.g. "save_001"
 * @param storageType The specific type of folder to use to save the data
 * @return The savable that was saved
 */
public static Savable loadGame(String gamePath, String dataName, JmeSystem.StorageFolderType storageType) {
  return loadGame(gamePath, dataName, null, storageType);
}
origin: jMonkeyEngine/jmonkeyengine

Node player = (Node) SaveGame.loadGame("mycompany/mygame", "savegame_001");
player.attachChild(model);
rootNode.attachChild(player);
origin: org.jmonkeyengine/jme3-core

/**
 * Loads a savable that has been saved on this system with saveGame() before.
 * @param gamePath A unique path for this game, e.g. com/mycompany/mygame
 * @param dataName A unique name for this savegame, e.g. "save_001"
 * @param manager Link to an AssetManager if required for loading the data (e.g. models with textures)
 * @return The savable that was saved or null if none was found
 */
public static Savable loadGame(String gamePath, String dataName, AssetManager manager) {
  return loadGame(gamePath, dataName, manager, JmeSystem.StorageFolderType.External);
}
origin: org.jmonkeyengine/jme3-core

/**
 * Loads a savable that has been saved on this system with saveGame() before.
 * @param gamePath A unique path for this game, e.g. com/mycompany/mygame
 * @param dataName A unique name for this savegame, e.g. "save_001"
 * @return The savable that was saved
 */
public static Savable loadGame(String gamePath, String dataName) {
  return loadGame(gamePath, dataName, null, JmeSystem.StorageFolderType.External);
}
origin: org.jmonkeyengine/jme3-core

/**
 * Loads a savable that has been saved on this system with saveGame() before.
 * @param gamePath A unique path for this game, e.g. com/mycompany/mygame
 * @param dataName A unique name for this savegame, e.g. "save_001"
 * @param storageType The specific type of folder to use to save the data
 * @return The savable that was saved
 */
public static Savable loadGame(String gamePath, String dataName, JmeSystem.StorageFolderType storageType) {
  return loadGame(gamePath, dataName, null, storageType);
}
origin: info.projectkyoto/mms-engine

/**
 * Loads a savable that has been saved on this system with saveGame() before.
 * @param gamePath A unique path for this game, e.g. com/mycompany/mygame
 * @param dataName A unique name for this savegame, e.g. "save_001"
 * @return The savable that was saved
 */
public static Savable loadGame(String gamePath, String dataName) {
  return loadGame(gamePath, dataName, null);
}
jme3tools.savegameSaveGameloadGame

Javadoc

Loads a savable that has been saved on this system with saveGame() before.

Popular methods of SaveGame

  • saveGame
    Saves a savable in a system-dependent way.

Popular in Java

  • Running tasks concurrently on multiple threads
  • orElseThrow (Optional)
    Return the contained value, if present, otherwise throw an exception to be created by the provided s
  • addToBackStack (FragmentTransaction)
  • onCreateOptionsMenu (Activity)
  • Point (java.awt)
    A point representing a location in (x,y) coordinate space, specified in integer precision.
  • MalformedURLException (java.net)
    This exception is thrown when a program attempts to create an URL from an incorrect specification.
  • Iterator (java.util)
    An iterator over a sequence of objects, such as a collection.If a collection has been changed since
  • Map (java.util)
    A Map is a data structure consisting of a set of keys and values in which each key is mapped to a si
  • NoSuchElementException (java.util)
    Thrown when trying to retrieve an element past the end of an Enumeration or Iterator.
  • HttpServletRequest (javax.servlet.http)
    Extends the javax.servlet.ServletRequest interface to provide request information for HTTP servlets.
  • 21 Best Atom Packages for 2021
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimAtomGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogTabnine AcademyStudentsTerms of usePrivacy policyJava Code IndexJavascript Code Index
Get Tabnine for your IDE now