John W Carlson - 2026-01-16
  • Description has changed:

Diff:

--- old
+++ new
@@ -1,11 +1,11 @@
-Please research how this:
+Please research how this .x3d:

 ~~~
     <NavigationInfo
         type='"EXAMINE", "FLY", "WALK", "ANY"'/>
 ~~~

-gets converted into:
+gets converted into JSON:

 ~~~
           { "NavigationInfo":
@@ -15,7 +15,7 @@
           },
 ~~~

-When it should look like this:
+When it should look like this  JSON:

 ~~~
           { "NavigationInfo":
@@ -25,4 +25,9 @@
           },
 ~~~

-Note that it looks like the commas are the issue, so I will remove them!
+Note that it looks like the commas are the issue, so I will remove them!  This produces good JSON:
+
+~~~
+    <NavigationInfo
+        type='"EXAMINE" "FLY" "WALK" "ANY"'/>
+~~~