-
Notifications
You must be signed in to change notification settings - Fork 77
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
681c5b1
commit 4421340
Showing
874 changed files
with
54,811 additions
and
15,813 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
{ | ||
"format_version": "1.10.0", | ||
"animation_controllers": { | ||
"controller.animation.allay.general": { | ||
"initial_state": "idling", | ||
"states": { | ||
"idling": { | ||
"animations": [ "idle" ], | ||
"transitions": [ | ||
{ "flying": "query.modified_move_speed > 0.2"} | ||
], | ||
"blend_transition": 0.2 | ||
}, | ||
"flying": { | ||
"animations": [ "fly" ], | ||
"transitions": [ | ||
{ "idling": "query.modified_move_speed < 0.2"} | ||
], | ||
"blend_transition": 0.2 | ||
} | ||
} | ||
}, | ||
"controller.animation.allay.holding": { | ||
"initial_state": "holding", | ||
"states": { | ||
"holding": { | ||
"animations": [ | ||
{ "hold_item": "variable.is_holding_left || variable.is_holding_right" } | ||
] | ||
} | ||
} | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,81 @@ | ||
{ | ||
"format_version": "1.10.0", | ||
"animation_controllers": { | ||
"controller.animation.frog.general": { | ||
"initial_state": "on_land", | ||
"states": { | ||
"on_land": { | ||
"animations": [ | ||
{ "walk": "math.min(1.0, query.modified_move_speed * 10)" } | ||
], | ||
"transitions": [ | ||
{ "idling_water": "query.is_in_water && query.modified_move_speed < 0.15" }, | ||
{ "swimming": "query.is_in_water && query.modified_move_speed > 0.15" }, | ||
{ "jumping": "query.is_jump_goal_jumping"} | ||
] | ||
}, | ||
"jumping": { | ||
"animations": [ | ||
{ "jump": "query.is_jump_goal_jumping" } | ||
], | ||
"transitions": [ | ||
{ "on_land": "!query.is_in_water && !query.is_jump_goal_jumping" }, | ||
{ "idling_water": "query.is_in_water && query.modified_move_speed < 0.15" }, | ||
{ "swimming": "query.is_in_water && query.modified_move_speed > 0.15" } | ||
] | ||
|
||
}, | ||
"idling_water": { | ||
"animations": [ | ||
"idle_water" | ||
], | ||
"transitions": [ | ||
{ "on_land": "!query.is_in_water" }, | ||
{ "swimming": "query.is_in_water && query.modified_move_speed > 0.15" } | ||
] | ||
}, | ||
"swimming": { | ||
"animations": [ | ||
{ "swim": "math.min(1.0, query.modified_move_speed * 10)" } | ||
], | ||
"transitions": [ | ||
{ "on_land": "!query.is_in_water" }, | ||
{ "idling_water": "query.is_in_water && query.modified_move_speed < 0.15" } | ||
] | ||
} | ||
} | ||
}, | ||
"controller.animation.frog.eat_mob": { | ||
"initial_state": "default", | ||
"states": { | ||
"default": { | ||
"transitions": [ | ||
{ "eating": "query.is_eating_mob" } | ||
] | ||
}, | ||
"eating": { | ||
"animations": [ "tongue" ], | ||
"transitions": [ | ||
{ "default": "!query.is_eating_mob" } | ||
] | ||
} | ||
} | ||
}, | ||
"controller.animation.frog.croaking": { | ||
"initial_state": "default", | ||
"states": { | ||
"default": { | ||
"transitions": [ | ||
{ "croaking": "query.is_croaking" } | ||
] | ||
}, | ||
"croaking": { | ||
"animations": [ "croak" ], | ||
"transitions": [ | ||
{ "default": "!query.is_croaking || query.is_eating_mob" } | ||
] | ||
} | ||
} | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
{ | ||
"format_version": "1.10.0", | ||
"animation_controllers": { | ||
"controller.animation.tadpole.general": { | ||
"initial_state": "default", | ||
"states": { | ||
"default": { | ||
"animations": [ | ||
{ "swim": "math.min(1.0, query.modified_move_speed * 10)" } | ||
] | ||
} | ||
} | ||
} | ||
} | ||
} |
125 changes: 125 additions & 0 deletions
125
animation_controllers/warden.animation_controllers.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,125 @@ | ||
{ | ||
"format_version" : "1.10.0", | ||
"animation_controllers" : { | ||
"controller.animation.warden.shiver" : { | ||
"initial_state" : "default", | ||
"states" : { | ||
"default" : { | ||
"transitions" : [ | ||
{ | ||
"shiver" : "variable.tendril_animation > 0" | ||
} | ||
] | ||
}, | ||
"shiver" : { | ||
"animations" : [ "shiver" ], | ||
"transitions" : [ | ||
{ | ||
"default" : "variable.tendril_animation <= 0" | ||
} | ||
] | ||
} | ||
} | ||
}, | ||
"controller.animation.warden.hurt" : { | ||
"initial_state" : "default", | ||
"states" : { | ||
"default" : { | ||
"transitions" : [ | ||
{ | ||
"hurting" : "query.hurt_time > 0" | ||
} | ||
] | ||
}, | ||
"hurting" : { | ||
"animations" : [ "hurt" ], | ||
"transitions" : [ | ||
{ | ||
"default" : "query.hurt_time <= 0" | ||
} | ||
] | ||
} | ||
} | ||
}, | ||
"controller.animation.warden.sniff" : { | ||
"initial_state" : "default", | ||
"states" : { | ||
"default" : { | ||
"transitions" : [ | ||
{ | ||
"sniff" : "query.is_sniffing" | ||
} | ||
] | ||
}, | ||
"sniff" : { | ||
"animations" : [ "sniff" ], | ||
"transitions" : [ | ||
{ | ||
"default" : "!query.is_sniffing" | ||
} | ||
] | ||
} | ||
} | ||
}, | ||
"controller.animation.warden.roar" : { | ||
"initial_state" : "default", | ||
"states" : { | ||
"default" : { | ||
"transitions" : [ | ||
{ | ||
"roar" : "query.is_roaring" | ||
} | ||
] | ||
}, | ||
"roar" : { | ||
"animations" : [ "roar" ], | ||
"transitions" : [ | ||
{ | ||
"default" : "!query.is_roaring" | ||
} | ||
] | ||
} | ||
} | ||
}, | ||
"controller.animation.warden.melee_attacking" : { | ||
"initial_state" : "default", | ||
"states" : { | ||
"default" : { | ||
"transitions" : [ | ||
{ | ||
"attack" : "variable.attack_time > 0.0" | ||
} | ||
] | ||
}, | ||
"attack" : { | ||
"animations" : [ "melee_attack" ], | ||
"transitions" : [ | ||
{ | ||
"default" : "variable.attack_time <= 0.0" | ||
} | ||
] | ||
} | ||
} | ||
}, | ||
"controller.animation.warden.sonic_boom" : { | ||
"initial_state" : "default", | ||
"states" : { | ||
"default" : { | ||
"transitions" : [ | ||
{ | ||
"sonic_attack" : "query.is_sonic_boom" | ||
} | ||
] | ||
}, | ||
"sonic_attack" : { | ||
"animations" : [ "sonic_boom" ], | ||
"transitions" : [ | ||
{ | ||
"default" : "!query.is_sonic_boom" | ||
} | ||
] | ||
} | ||
} | ||
} | ||
} | ||
} |
Oops, something went wrong.