@wonderlandengine/editor-api 1.4.0 → 1.4.1

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/dist/data.d.ts CHANGED
@@ -764,6 +764,12 @@ export declare class PipelineResource extends Resource {
764
764
  name: string;
765
765
  doubleSided: boolean;
766
766
  castShadows: boolean;
767
+ colorWrite: {
768
+ red: boolean;
769
+ green: boolean;
770
+ blue: boolean;
771
+ alpha: boolean;
772
+ };
767
773
  depthTest: boolean;
768
774
  depthWrite: boolean;
769
775
  blending: boolean;
package/dist/data.js CHANGED
@@ -786,6 +786,12 @@ export class PipelineResource extends Resource {
786
786
  name = 'pipeline';
787
787
  doubleSided = false;
788
788
  castShadows = false;
789
+ colorWrite = {
790
+ red: true,
791
+ green: true,
792
+ blue: true,
793
+ alpha: true,
794
+ };
789
795
  depthTest = true;
790
796
  depthWrite = true;
791
797
  blending = false;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wonderlandengine/editor-api",
3
- "version": "1.4.0",
3
+ "version": "1.4.1",
4
4
  "description": "Wonderland Engine's Editor API for plugins - very experimental.",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.js",