least worst version
This commit is contained in:
@ -66,6 +66,7 @@ MegaJumpGravityLesseningFactor = 1.2
|
||||
WallJumpStartVelocity = 8.0
|
||||
SimpleDashStrength = 15.0
|
||||
PoweredDashStrength = 50.0
|
||||
AimedDashTime = 0.2
|
||||
WallHugGravityLesseningFactor = 15.0
|
||||
WallHugDownwardMaxSpeed = 8.0
|
||||
WallHugHorizontalDeceleration = 0.5
|
||||
@ -98,6 +99,7 @@ mesh = SubResource("CapsuleMesh_xc2g5")
|
||||
[node name="CapsuleCollider" type="CollisionShape3D" parent="."]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0.85, 0)
|
||||
shape = ExtResource("13_r7i3q")
|
||||
debug_color = Color(0, 0.6, 0.701961, 0.341176)
|
||||
script = ExtResource("8_lmtjd")
|
||||
CapsuleDefaultHeight = 1.7
|
||||
|
||||
@ -418,6 +420,12 @@ to = NodePath("../Dashing/PoweredDash")
|
||||
event = &"powered_dash"
|
||||
delay_in_seconds = "0.0"
|
||||
|
||||
[node name="OnAimedDash" type="Node" parent="StateChart/Root/Movement"]
|
||||
script = ExtResource("28_n7qhm")
|
||||
to = NodePath("../Dashing/AimedDash")
|
||||
event = &"aimed_dash"
|
||||
delay_in_seconds = "0.0"
|
||||
|
||||
[node name="Mantling" type="Node" parent="StateChart/Root/Movement"]
|
||||
script = ExtResource("27_34snm")
|
||||
|
||||
@ -492,6 +500,9 @@ script = ExtResource("27_34snm")
|
||||
[node name="PoweredDash" type="Node" parent="StateChart/Root/Movement/Dashing"]
|
||||
script = ExtResource("27_34snm")
|
||||
|
||||
[node name="AimedDash" type="Node" parent="StateChart/Root/Movement/Dashing"]
|
||||
script = ExtResource("27_34snm")
|
||||
|
||||
[node name="Grounded" type="Node" parent="StateChart/Root/Movement"]
|
||||
script = ExtResource("27_34snm")
|
||||
|
||||
|
Reference in New Issue
Block a user