x3d-image 2.0.27 → 2.0.28

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -56,7 +56,7 @@ Modify the current view so that all objects fit in view volume.
56
56
 
57
57
  ### -b *color*
58
58
 
59
- Set background to specified color. Color can be any CSS color including transparent ones. Use PNG as output image format for transparent backgrounds.
59
+ Set background to specified color. Color can be any X3D or CSS RGBA color. Use PNG as output image format for transparent backgrounds.
60
60
 
61
61
  ### -e *[**CANNON**, HELIPAD, FOOTPRINT]*
62
62
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "x3d-image",
3
- "version": "2.0.27",
3
+ "version": "2.0.28",
4
4
  "description": "Render image files from X3D",
5
5
  "main": "src/main.js",
6
6
  "bin": {
package/src/image.js CHANGED
@@ -102,7 +102,7 @@ async function generate (argv)
102
102
  {
103
103
  type: "string",
104
104
  alias: "b",
105
- description: `Set background to specified color. Color can be any CSS color including transparent ones. Use PNG as output image format for transparent backgrounds.`,
105
+ description: `Set background to specified color. Color can be any X3D or CSS RGBA color. Use PNG as output image format for transparent backgrounds.`,
106
106
  array: true,
107
107
  default: [""],
108
108
  })