Skip to content

Commit ee6eefa

Browse files

File tree

402 files changed

+14648
-6997
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

402 files changed

+14648
-6997
lines changed

animation_controllers/humanoid.animation_controllers.json

Lines changed: 283 additions & 261 deletions
Large diffs are not rendered by default.
Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
{
2+
"format_version": "1.10.0",
3+
"animation_controllers": {
4+
"controller.animation.nautilus.general" : {
5+
"initial_state" : "swimming",
6+
"states" : {
7+
"swimming" : {
8+
"animations": [
9+
{ "breathe": "math.min(1.0, math.lerp(0.75, 1.5, query.modified_move_speed))" },
10+
{ "swim": "math.min(1.0, math.lerp(0.0, 6.0, query.modified_move_speed))" },
11+
{ "look_at_target": "1.0" }
12+
],
13+
"particle_effects" : [
14+
{
15+
"effect" : "bubbles",
16+
"locator": "bubble_particle_emitter"
17+
}
18+
]
19+
}
20+
}
21+
},
22+
"controller.animation.nautilus.sound": {
23+
"initial_state": "default",
24+
"states": {
25+
"default": {
26+
"transitions": [
27+
{
28+
"dashing": "query.has_dash_cooldown"
29+
}
30+
]
31+
},
32+
"dashing": {
33+
"animations": [ "dashing" ],
34+
"transitions": [
35+
{
36+
"default": "!query.has_dash_cooldown"
37+
}
38+
]
39+
}
40+
}
41+
}
42+
}
43+
}

0 commit comments

Comments
 (0)