Interface ExtensionLoader

All Known Implementing Classes:
LightsPunctualExtensionLoader, PBRSpecGlossExtensionLoader, TextureTransformExtensionLoader, UnlitExtensionLoader

public interface ExtensionLoader
Interface to handle a glTF extension. Created by Nehon on 20/08/2017.
  • Method Summary

    Modifier and Type
    Method
    Description
    handleExtension(GltfLoader loader, String parentName, com.google.gson.JsonElement parent, com.google.gson.JsonElement extension, Object input)
    Handles a glTF extension.
  • Method Details

    • handleExtension

      Object handleExtension(GltfLoader loader, String parentName, com.google.gson.JsonElement parent, com.google.gson.JsonElement extension, Object input) throws IOException
      Handles a glTF extension.
      Parameters:
      loader - the GltfLoader with all the data structures
      parentName - the name of the element being read
      parent - the element being read
      extension - the content of the extension found in the element being read
      input - an object containing already loaded data from the element, probably a JME object
      Returns:
      An object of the same type as input, containing the data from the input object and the eventual additional data read from the extension
      Throws:
      IOException - for various error conditions