Browse Source

:wrench: Allow player to jump and move

Set up physics parameters to something that works.
DricomDragon 1 year ago
parent
commit
452e231f69

+ 2 - 2
netnet/component/entity/jumper/jumper.gd

@@ -2,8 +2,8 @@ class_name Jumper
 extends RigidBody2D
 
 const SPEED = 5.0
-const JUMP_IMPULSE = 4.5
-const MOVE_FORCE = 1
+const JUMP_IMPULSE = 942.5
+const MOVE_FORCE = 1142
 
 # Set by the authority, synchronized on spawn.
 @export var player := 1 :

+ 6 - 1
netnet/component/entity/jumper/jumper.tscn

@@ -1,9 +1,12 @@
-[gd_scene load_steps=7 format=3 uid="uid://ckph60svia3xr"]
+[gd_scene load_steps=8 format=3 uid="uid://ckph60svia3xr"]
 
 [ext_resource type="Script" path="res://component/entity/jumper/jumper.gd" id="1_smoki"]
 [ext_resource type="Texture2D" uid="uid://cojbjngjjhoe0" path="res://component/entity/jumper/green_astronaut.png" id="2_xm8at"]
 [ext_resource type="Script" path="res://component/entity/jumper/jumper_input.gd" id="3_trrhr"]
 
+[sub_resource type="PhysicsMaterial" id="PhysicsMaterial_vgl4i"]
+friction = 0.5
+
 [sub_resource type="CapsuleShape2D" id="CapsuleShape2D_raoy1"]
 radius = 18.0
 height = 50.0
@@ -22,7 +25,9 @@ properties/0/spawn = false
 properties/0/sync = true
 
 [node name="Jumper" type="RigidBody2D"]
+physics_material_override = SubResource("PhysicsMaterial_vgl4i")
 lock_rotation = true
+linear_damp = 1.0
 script = ExtResource("1_smoki")
 
 [node name="CollisionShape2D" type="CollisionShape2D" parent="."]

+ 4 - 1
netnet/run/levels/destination/final.tscn

@@ -1,7 +1,9 @@
-[gd_scene load_steps=3 format=3 uid="uid://cf2fnyf7gud6c"]
+[gd_scene load_steps=4 format=3 uid="uid://cf2fnyf7gud6c"]
 
 [ext_resource type="Script" path="res://run/levels/player_manager.gd" id="1_hhmm0"]
 
+[sub_resource type="PhysicsMaterial" id="PhysicsMaterial_kb8qo"]
+
 [sub_resource type="WorldBoundaryShape2D" id="WorldBoundaryShape2D_kbpyq"]
 
 [node name="Final" type="Node2D"]
@@ -9,6 +11,7 @@ script = ExtResource("1_hhmm0")
 
 [node name="Floor" type="StaticBody2D" parent="."]
 position = Vector2(2, 653)
+physics_material_override = SubResource("PhysicsMaterial_kb8qo")
 
 [node name="Limit" type="CollisionShape2D" parent="Floor"]
 shape = SubResource("WorldBoundaryShape2D_kbpyq")