Package com.jme3.scene.plugins.fbx.file
Class FbxDump
java.lang.Object
com.jme3.scene.plugins.fbx.file.FbxDump
Quick n' dirty dumper of FBX binary files.
 
 Outputs a format similar to an ASCII FBX file.
- 
Method SummaryModifier and TypeMethodDescriptionprotected static voiddumpElement(FbxElement el, PrintStream ps, int indent, Map<FbxId, FbxElement> uidToObjectMap) static voidDump FBX to standard output.static voiddumpFile(FbxFile file, OutputStream out) Dump FBX to the given output stream.protected static voiddumpProperty(String id, char propertyType, Object property, PrintStream ps, Map<FbxId, FbxElement> uidToObjectMap) 
- 
Method Details- 
dumpFileDump FBX to standard output.- Parameters:
- file- the file to dump.
 
- 
dumpFileDump FBX to the given output stream.- Parameters:
- file- the file to dump.
- out- the output stream where to output.
 
- 
dumpPropertyprotected static void dumpProperty(String id, char propertyType, Object property, PrintStream ps, Map<FbxId, FbxElement> uidToObjectMap) 
- 
dumpElementprotected static void dumpElement(FbxElement el, PrintStream ps, int indent, Map<FbxId, FbxElement> uidToObjectMap) 
 
-