mojira.dev

Creeper233

Assigned

No issues.

Reported

MC-304792 Starting to charge immediately after jabbing with a spear causes it to rotate 270 degrees in third person mode Works As Intended MC-304784 The spear is not animated correctly. Duplicate MC-304783 Arms are not correct when holding a spear in both hands Duplicate MC-304214 Regression: Blockbench Complex Models Fail to Load in 25w45a+ (Worked in 25w44a) Invalid MC-304181 Model System Bug: Nested Select Model Selector Fails to Load in 25w45a&25w46a Invalid

Comments

@Losders I'm sorry. Maybe I didn't express it correctly.

As you can see from the fifth second of the video, you can see that the spear is rotated counterclockwise about 270 degrees.

@[Mod] ManosSef

I apologize for the invalid report.

Thank you for your helpful response.

@Automation for Jira

However, it seems that it can only be edited into 25w46a, but it should have little impact.

[media]
[media]
[media]
[media]
[media]

After further investigation, I discovered the issue is not about nested selectors but rather a regression in model loading between snapshots.

Actual Issue: Complex models created with Blockbench that worked in 25w44a fail to load in 25w45a & 25w46a.

I will create a new bug report for this specific regression issue. Please close this one.

Thank you for your attention.

In addition, I think nested structures are relatively complex to repeat. If attribute combinations can be used, it will be a relatively short method, for example:

{
  "model": {
    "type": "minecraft:select",
    "property": ["custom_model_data", "minecraft:display_context"],
    "cases": [
      {
        "when": {"custom_model_data": "fire_spear", "minecraft:display_context": ["gui", "ground", "fixed", "on_shelf"]},
        "model": "custom_spear:item/fire_spear"
      },
      {
        "when": {"custom_model_data": "fire_spear"},
        "model": "custom_spear:item/fire_spear_in_hand"
      }
    ]
  }
}


If it works, I hope it can be adopted.