Class IntModelLoader<P extends IntModelLoader.IntModelParameters>

    • Constructor Summary

      Constructors 
      Constructor Description
      IntModelLoader​(com.badlogic.gdx.assets.loaders.FileHandleResolver resolver)  
    • Method Summary

      All Methods Instance Methods Abstract Methods Concrete Methods 
      Modifier and Type Method Description
      com.badlogic.gdx.utils.Array<com.badlogic.gdx.assets.AssetDescriptor> getDependencies​(java.lang.String fileName, com.badlogic.gdx.files.FileHandle file, P parameters)  
      void loadAsync​(com.badlogic.gdx.assets.AssetManager manager, java.lang.String fileName, com.badlogic.gdx.files.FileHandle file, P parameters)  
      IntModel loadModel​(com.badlogic.gdx.files.FileHandle fileHandle)
      Directly load the model on the calling thread.
      IntModel loadModel​(com.badlogic.gdx.files.FileHandle fileHandle, com.badlogic.gdx.graphics.g3d.utils.TextureProvider textureProvider)
      Directly load the model on the calling thread.
      IntModel loadModel​(com.badlogic.gdx.files.FileHandle fileHandle, com.badlogic.gdx.graphics.g3d.utils.TextureProvider textureProvider, P parameters)
      Directly load the model on the calling thread.
      IntModel loadModel​(com.badlogic.gdx.files.FileHandle fileHandle, P parameters)
      Directly load the model on the calling thread.
      IntModelData loadModelData​(com.badlogic.gdx.files.FileHandle fileHandle)
      Directly load the raw model data on the calling thread.
      abstract IntModelData loadModelData​(com.badlogic.gdx.files.FileHandle fileHandle, P parameters)
      Directly load the raw model data on the calling thread.
      IntModel loadSync​(com.badlogic.gdx.assets.AssetManager manager, java.lang.String fileName, com.badlogic.gdx.files.FileHandle file, P parameters)  
      • Methods inherited from class com.badlogic.gdx.assets.loaders.AsynchronousAssetLoader

        unloadAsync
      • Methods inherited from class com.badlogic.gdx.assets.loaders.AssetLoader

        resolve
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

      • IntModelLoader

        public IntModelLoader​(com.badlogic.gdx.assets.loaders.FileHandleResolver resolver)
    • Method Detail

      • loadModelData

        public abstract IntModelData loadModelData​(com.badlogic.gdx.files.FileHandle fileHandle,
                                                   P parameters)
        Directly load the raw model data on the calling thread.
      • loadModelData

        public IntModelData loadModelData​(com.badlogic.gdx.files.FileHandle fileHandle)
        Directly load the raw model data on the calling thread.
      • loadModel

        public IntModel loadModel​(com.badlogic.gdx.files.FileHandle fileHandle,
                                  com.badlogic.gdx.graphics.g3d.utils.TextureProvider textureProvider,
                                  P parameters)
        Directly load the model on the calling thread. The model with not be managed by an AssetManager.
      • loadModel

        public IntModel loadModel​(com.badlogic.gdx.files.FileHandle fileHandle,
                                  P parameters)
        Directly load the model on the calling thread. The model with not be managed by an AssetManager.
      • loadModel

        public IntModel loadModel​(com.badlogic.gdx.files.FileHandle fileHandle,
                                  com.badlogic.gdx.graphics.g3d.utils.TextureProvider textureProvider)
        Directly load the model on the calling thread. The model with not be managed by an AssetManager.
      • loadModel

        public IntModel loadModel​(com.badlogic.gdx.files.FileHandle fileHandle)
        Directly load the model on the calling thread. The model with not be managed by an AssetManager.
      • getDependencies

        public com.badlogic.gdx.utils.Array<com.badlogic.gdx.assets.AssetDescriptor> getDependencies​(java.lang.String fileName,
                                                                                                     com.badlogic.gdx.files.FileHandle file,
                                                                                                     P parameters)
        Specified by:
        getDependencies in class com.badlogic.gdx.assets.loaders.AssetLoader<IntModel,​P extends IntModelLoader.IntModelParameters>
      • loadAsync

        public void loadAsync​(com.badlogic.gdx.assets.AssetManager manager,
                              java.lang.String fileName,
                              com.badlogic.gdx.files.FileHandle file,
                              P parameters)
        Specified by:
        loadAsync in class com.badlogic.gdx.assets.loaders.AsynchronousAssetLoader<IntModel,​P extends IntModelLoader.IntModelParameters>
      • loadSync

        public IntModel loadSync​(com.badlogic.gdx.assets.AssetManager manager,
                                 java.lang.String fileName,
                                 com.badlogic.gdx.files.FileHandle file,
                                 P parameters)
        Specified by:
        loadSync in class com.badlogic.gdx.assets.loaders.AsynchronousAssetLoader<IntModel,​P extends IntModelLoader.IntModelParameters>