|
@@ -56606,6 +56606,7 @@ declare module "babylonjs/Materials/Node/nodeMaterialBlock" {
|
|
|
private _target;
|
|
|
private _isFinalMerger;
|
|
|
private _isInput;
|
|
|
+ protected _isUnique: boolean;
|
|
|
/** @hidden */
|
|
|
_codeVariableName: string;
|
|
|
/** @hidden */
|
|
@@ -56623,6 +56624,10 @@ declare module "babylonjs/Materials/Node/nodeMaterialBlock" {
|
|
|
*/
|
|
|
uniqueId: number;
|
|
|
/**
|
|
|
+ * Gets a boolean indicating that this block can only be used once per NodeMaterial
|
|
|
+ */
|
|
|
+ readonly isUnique: boolean;
|
|
|
+ /**
|
|
|
* Gets a boolean indicating that this block is an end block (e.g. it is generating a system value)
|
|
|
*/
|
|
|
readonly isFinalMerger: boolean;
|
|
@@ -122079,6 +122084,7 @@ declare module BABYLON {
|
|
|
private _target;
|
|
|
private _isFinalMerger;
|
|
|
private _isInput;
|
|
|
+ protected _isUnique: boolean;
|
|
|
/** @hidden */
|
|
|
_codeVariableName: string;
|
|
|
/** @hidden */
|
|
@@ -122096,6 +122102,10 @@ declare module BABYLON {
|
|
|
*/
|
|
|
uniqueId: number;
|
|
|
/**
|
|
|
+ * Gets a boolean indicating that this block can only be used once per NodeMaterial
|
|
|
+ */
|
|
|
+ readonly isUnique: boolean;
|
|
|
+ /**
|
|
|
* Gets a boolean indicating that this block is an end block (e.g. it is generating a system value)
|
|
|
*/
|
|
|
readonly isFinalMerger: boolean;
|