Click here to Skip to main content
15,887,477 members
Please Sign up or sign in to vote.
1.00/5 (2 votes)
See more:
the following code is still showing errors in bridge v2
{
  "format_version": "1.10.0",
  "animation_controllers": {
    "controller.animation.raccon": {
      "initial_state": "idle",
      "states": {
        "idle": {
          "animations": ["still"],
          "transitions": [
            {
              "has_exit_time": false,
              "conditions": [
                {"variable": "qary.ground_speed", "==": 0}
              ],
              "destination_state": "walking"
            },
            {
              "has_exit_time": false,
              "conditions": [
                {"variable": "variable.has_target"},
                {"variable": "variable.attack_time", ">=": 0.1}
              ],
              "destination_state": "attacking"
            }
          ]
        },
        "walking": {
          "animations": ["walk"],
          "transitions": [
            {
              "has_exit_time": false,
              "conditions": [
                {"variable_not_equal_to_zero_or_null": {"variable": "qary.ground_speed"}}
              ],
              "destination_state": "idle"
            }
          ]
        },
        "attacking": {
          "animations": ["attack"],
          "transitions": [
            {
              "has_exit_time": false,
              "conditions": [
                {"variable": "variable.attacktime_", "<=": 0.0}
              ],
              "destination_state": "idle"
            },
            {
              "has_exit_time": false,
              "conditions": [
                {"variable": "variable.attacktime_", ">": 0.0}
              ],
              "destination_state": "walking"
            }
          ]
        }
      }
    }
  }
}


What I have tried:

ai code assistants have not helped at all I'm new to coding and am very lost
Posted
Comments
Member 14967719 19-Feb-24 22:58pm    
It might help those who know Minecraft Bridge? if you show what errors you're getting?

1 solution

You're probably not going to get any support for bridge here. There just isn't a Minecraft community here.

Your best bet is going to be their Discord as described here[^].
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900