|
@@ -58411,6 +58411,11 @@ declare module "babylonjs/Materials/Node/Blocks/colorMergerBlock" {
|
|
|
* Gets the rgb component (output)
|
|
|
*/
|
|
|
readonly rgbOut: NodeMaterialConnectionPoint;
|
|
|
+ /**
|
|
|
+ * Gets the rgb component (output)
|
|
|
+ * @deprecated Please use rgbOut instead
|
|
|
+ */
|
|
|
+ readonly rgb: NodeMaterialConnectionPoint;
|
|
|
protected _buildBlock(state: NodeMaterialBuildState): this;
|
|
|
}
|
|
|
}
|
|
@@ -58468,6 +58473,16 @@ declare module "babylonjs/Materials/Node/Blocks/vectorMergerBlock" {
|
|
|
* Gets the xy component (output)
|
|
|
*/
|
|
|
readonly xyOut: NodeMaterialConnectionPoint;
|
|
|
+ /**
|
|
|
+ * Gets the xy component (output)
|
|
|
+ * @deprecated Please use xyOut instead
|
|
|
+ */
|
|
|
+ readonly xy: NodeMaterialConnectionPoint;
|
|
|
+ /**
|
|
|
+ * Gets the xyz component (output)
|
|
|
+ * @deprecated Please use xyzOut instead
|
|
|
+ */
|
|
|
+ readonly xyz: NodeMaterialConnectionPoint;
|
|
|
protected _buildBlock(state: NodeMaterialBuildState): this;
|
|
|
}
|
|
|
}
|
|
@@ -124315,6 +124330,11 @@ declare module BABYLON {
|
|
|
* Gets the rgb component (output)
|
|
|
*/
|
|
|
readonly rgbOut: NodeMaterialConnectionPoint;
|
|
|
+ /**
|
|
|
+ * Gets the rgb component (output)
|
|
|
+ * @deprecated Please use rgbOut instead
|
|
|
+ */
|
|
|
+ readonly rgb: NodeMaterialConnectionPoint;
|
|
|
protected _buildBlock(state: NodeMaterialBuildState): this;
|
|
|
}
|
|
|
}
|
|
@@ -124369,6 +124389,16 @@ declare module BABYLON {
|
|
|
* Gets the xy component (output)
|
|
|
*/
|
|
|
readonly xyOut: NodeMaterialConnectionPoint;
|
|
|
+ /**
|
|
|
+ * Gets the xy component (output)
|
|
|
+ * @deprecated Please use xyOut instead
|
|
|
+ */
|
|
|
+ readonly xy: NodeMaterialConnectionPoint;
|
|
|
+ /**
|
|
|
+ * Gets the xyz component (output)
|
|
|
+ * @deprecated Please use xyzOut instead
|
|
|
+ */
|
|
|
+ readonly xyz: NodeMaterialConnectionPoint;
|
|
|
protected _buildBlock(state: NodeMaterialBuildState): this;
|
|
|
}
|
|
|
}
|