Mojira Archive
MCM-1450

animation.squid.rotate - invalid rotation animation

Partner Rank: 4
Partner Team Reporting: Blockception
Verification builds: 1.17.40

Summary:

`"animation.squid.rotate"` defines a rotation animation that is invalid, or undocumented:

rotation shouldn't accept x y z property keys

    "animation.squid.rotate": {
      "anim_time_update": "query.modified_distance_moved",
      "loop": true,
      "bones": {
        "body": {
          "rotation": [
            { "y": "180.0 - this" },
            { "x": "query.body_x_rotation" },
            { "y": "variable.squid.swim_rotation" }
          ]
        }
      }
    }

suggest fix:

    "animation.squid.rotate": {
      "anim_time_update": "query.modified_distance_moved",
      "loop": true,
      "bones": {
        "body": {
          "rotation": [
            "180.0 - this",
            "query.body_x_rotation",
            "variable.squid.swim_rotation"
          ]
        }
      }
    }

Impact:

  • Good examples for the community to use.
  • Correct working vanilla data-driven files.

Repro Steps:

Observed Results:

Expected Results:

Correct, consistent vanilla files that not only follows minecraft readable format but also by written convention/documentation.

Screenshots/Videos attached: No

Regression Builds: N/A

Notes:

Files:

Unresolved

Daan Verstraten

2021-11-01, 12:50 PM

2021-11-01, 11:29 PM

0

0

Future Release

-