File tree Expand file tree Collapse file tree
MinieDump/src/main/java/jme3utilities/minie/cli Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -153,8 +153,7 @@ public static void main(String[] arguments) {
153153 private static void dumpAsset (String assetPath ) {
154154 newAssetManager ();
155155
156- System .out .print (assetPath );
157- System .out .print (" contains a " );
156+ System .out .print (MyString .quote (assetPath ));
158157 System .out .flush ();
159158
160159 Object loadedAsset ;
@@ -170,14 +169,15 @@ private static void dumpAsset(String assetPath) {
170169 loadedAsset = assetManager .loadAsset (modelKey );
171170 }
172171
172+ System .out .print (" contains a " );
173173 if (loadedAsset instanceof CollisionShape ) {
174174 System .out .print ("collision shape:" );
175175 dumper .dump ((CollisionShape ) loadedAsset , " " );
176176 System .out .println ();
177177 System .out .println ();
178178
179179 } else if (loadedAsset instanceof Spatial ) {
180- System .out .println ("model:" );
180+ System .out .println ("model or scene :" );
181181 dumper .dump ((Spatial ) loadedAsset , " " );
182182 System .out .println ();
183183 System .out .println ();
You can’t perform that action at this time.
0 commit comments