Package com.jme3.asset.plugins
Class FileLocator
java.lang.Object
com.jme3.asset.plugins.FileLocator
- All Implemented Interfaces:
AssetLocator
FileLocator
allows you to specify a folder where to
look for assets.-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionlocate
(AssetManager manager, AssetKey key) Request to locate an asset.void
setRootPath
(String rootPath)
-
Constructor Details
-
FileLocator
public FileLocator()
-
-
Method Details
-
setRootPath
- Specified by:
setRootPath
in interfaceAssetLocator
- Parameters:
rootPath
- The root path where to look for assets. Typically, this method will only be called once for each instance of an asset locator.
-
locate
Description copied from interface:AssetLocator
Request to locate an asset. The asset key contains a name identifying the asset. If an asset was not found, null should be returned. TheAssetInfo
implementation provided should have a proper return value for itsAssetInfo.openStream()
method.- Specified by:
locate
in interfaceAssetLocator
- Parameters:
manager
- for managing assetskey
- identifies the asset to be located- Returns:
- The
AssetInfo
that was located, or null if not found.
-