@babylonjs/node-geometry-editor 6.23.0 → 6.23.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.
@@ -55350,6 +55350,11 @@ __webpack_require__.r(__webpack_exports__);
55350
55350
 
55351
55351
 
55352
55352
 
55353
+
55354
+
55355
+ /**
55356
+ * Static class for BlockTools
55357
+ */
55353
55358
  class BlockTools {
55354
55359
  static GetBlockFromString(data) {
55355
55360
  switch (data) {
@@ -55703,6 +55708,12 @@ class BlockTools {
55703
55708
  block.operation = core_Meshes_Node_Enums_nodeGeometryConnectionPointTypes__WEBPACK_IMPORTED_MODULE_0__.MathBlockOperations.Max;
55704
55709
  return block;
55705
55710
  }
55711
+ case "InstantiateLinearBlock": {
55712
+ return new core_Meshes_Node_Enums_nodeGeometryConnectionPointTypes__WEBPACK_IMPORTED_MODULE_0__.InstantiateLinearBlock("Instantiate Linear");
55713
+ }
55714
+ case "InstantiateRadialBlock": {
55715
+ return new core_Meshes_Node_Enums_nodeGeometryConnectionPointTypes__WEBPACK_IMPORTED_MODULE_0__.InstantiateRadialBlock("Instantiate Radial");
55716
+ }
55706
55717
  }
55707
55718
  return null;
55708
55719
  }
@@ -55984,7 +55995,14 @@ class NodeListComponent extends react__WEBPACK_IMPORTED_MODULE_1__.Component {
55984
55995
  ],
55985
55996
  Math__Vector: ["TransformBlock", "VectorConverterBlock", "NormalizeBlock", "BoundingBlock"],
55986
55997
  Matrices: ["RotationXBlock", "RotationYBlock", "RotationZBlock", "ScalingBlock", "TranslationBlock", "AlignBlock", "MatrixComposeBlock"],
55987
- Instances: ["InstantiateOnVerticesBlock", "InstantiateOnFacesBlock", "InstantiateOnVolumeBlock", "InstantiateBlock"],
55998
+ Instances: [
55999
+ "InstantiateOnVerticesBlock",
56000
+ "InstantiateOnFacesBlock",
56001
+ "InstantiateOnVolumeBlock",
56002
+ "InstantiateBlock",
56003
+ "InstantiateLinearBlock",
56004
+ "InstantiateRadialBlock",
56005
+ ],
55988
56006
  Misc: ["ElbowBlock", "DebugBlock", "TeleportInBlock", "TeleportOutBlock", "GeometryInfoBlock"],
55989
56007
  Updates: [
55990
56008
  "SetColorsBlock",
@@ -56155,6 +56173,8 @@ NodeListComponent._Tooltips = {
56155
56173
  GeometryOutputBlock: "Output block used to gather the final geometry",
56156
56174
  NullBlock: "Generate an empty geometry",
56157
56175
  OptimizeBlock: "Eliminate vertices that share positions with another vertex",
56176
+ InstantiateLinearBlock: "Clone a geometry linearly",
56177
+ InstantiateRadialBlock: "Clone a geometry in a circle",
56158
56178
  GeometryInfoBlock: "Provides information about a geometry",
56159
56179
  MappingBlock: "Generate uv coordinates based on mapping type",
56160
56180
  MatrixComposeBlock: "Multiply two matrices together",