LoadGltfListener.GltfLoadStage

  • LoadGltfListener.GltfLoadStage is a Java enum defining the stages of a glTF model load operation in Sceneform.

  • Each stage value in the enum represents a step in the loading process, superseding the previous one.

  • The enum includes stages such as downloading the model, fetching materials, creating the renderable, and more.

  • It inherits methods from java.lang.Enum, java.lang.Object, and java.lang.Comparable for object comparison and manipulation.

  • Developers can use this enum to track the progress of glTF model loading and implement custom logic based on the current stage.

public static final enum LoadGltfListener.GltfLoadStage

Defines the current stage of the load operation, each value supersedes the previous.

Inherited Methods

Enum Values

public static final LoadGltfListener.GltfLoadStage ADD_MISSING_FILES

public static final LoadGltfListener.GltfLoadStage CREATE_LOADER

public static final LoadGltfListener.GltfLoadStage CREATE_RENDERABLE

public static final LoadGltfListener.GltfLoadStage DOWNLOAD_MODEL

public static final LoadGltfListener.GltfLoadStage FETCH_MATERIALS

public static final LoadGltfListener.GltfLoadStage FINISHED_READING_FILES

public static final LoadGltfListener.GltfLoadStage LOAD_STAGE_NONE