1- package net .lcc .sollib .api .client .model ;
1+ package net .lcc .sollib .api .client .model . entity ;
22
3- import net .lcc .sollib .api .client .model .inject .IModelPartExtension ;
3+ import net .lcc .sollib .api .client .model .entity . inject .IModelPartExtension ;
44import net .lcc .sollib .api .common .logger .SolLogger ;
55import net .minecraft .client .model .geom .ModelPart ;
66import net .minecraft .client .model .geom .builders .LayerDefinition ;
@@ -16,7 +16,7 @@ public class ModelPartUtils {
1616 /**
1717 * @param texturedData LayerDefinition to extract model parts from
1818 * @return {@code List<ModelPart>}
19- * @since 1.0.0
19+ * @since 1.0
2020 */
2121 public static List <ModelPart > collectAllModelParts (LayerDefinition texturedData ) {
2222 ModelPart root = texturedData .bakeRoot ();
@@ -30,7 +30,7 @@ public static List<ModelPart> collectAllModelParts(LayerDefinition texturedData)
3030 * @param parts List of model parts to look into
3131 * @return {@link ModelPart}
3232 * @throws NullPointerException in cases of absence of looking part, method may return null
33- * @since 1.0.0
33+ * @since 1.0
3434 */
3535 @ Nullable
3636 public static ModelPart getPart (Triple <Float , Float , Float > partSize , List <ModelPart > parts ) {
@@ -46,7 +46,7 @@ public static ModelPart getPart(Triple<Float, Float, Float> partSize, List<Model
4646 * @param parts List of model parts to look into
4747 * @return {@link ModelPart}
4848 * @throws NullPointerException in cases of absence of looking part, method may return null
49- * @since 1.0.0
49+ * @since 1.0
5050 */
5151 @ Nullable
5252 public static ModelPart getPart (String partName , List <ModelPart > parts ) {
@@ -60,7 +60,7 @@ public static ModelPart getPart(String partName, List<ModelPart> parts) {
6060 /**
6161 * @param current ModelPart to extract child parts from
6262 * @param out Result of model parts extraction
63- * @since 1.0.0
63+ * @since 1.0
6464 */
6565 private static void collectRecursive (ModelPart current , List <ModelPart > out ) {
6666 out .add (current );
0 commit comments