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 Summary
Modifier 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
- 
dumpFile
Dump FBX to standard output.- Parameters:
 file- the file to dump.
 - 
dumpFile
Dump FBX to the given output stream.- Parameters:
 file- the file to dump.out- the output stream where to output.
 - 
dumpProperty
protected static void dumpProperty(String id, char propertyType, Object property, PrintStream ps, Map<FbxId, FbxElement> uidToObjectMap)  - 
dumpElement
protected static void dumpElement(FbxElement el, PrintStream ps, int indent, Map<FbxId, FbxElement> uidToObjectMap)  
 -