Переглянути джерело

:beetle: Fix keyboard control

Right key was assigned to move_left action. Oupsi.
DricomDragon 1 рік тому
батько
коміт
98b316fa5b

+ 3 - 0
netnet/component/entity/jumper/jumper.tscn

@@ -15,14 +15,17 @@ height = 50.0
 properties/0/path = NodePath(".:position")
 properties/0/spawn = true
 properties/0/sync = true
+properties/0/watch = false
 properties/1/path = NodePath(".:player")
 properties/1/spawn = true
 properties/1/sync = false
+properties/1/watch = false
 
 [sub_resource type="SceneReplicationConfig" id="SceneReplicationConfig_74ldf"]
 properties/0/path = NodePath("JumperInput:direction")
 properties/0/spawn = false
 properties/0/sync = true
+properties/0/watch = false
 
 [node name="Jumper" type="RigidBody2D"]
 physics_material_override = SubResource("PhysicsMaterial_vgl4i")

+ 1 - 0
netnet/component/entity/jumper/jumper_input.gd

@@ -28,6 +28,7 @@ func _process(delta: float) -> void:
 	if Input.is_action_just_pressed("jump"):
 		jump.rpc()
 
+
 func _new_direction() -> Vector2:
 	var new_dir := Vector2(Input.get_joy_axis(0, JOY_AXIS_LEFT_X), 0.0)
 	if absf(new_dir.x) < STICK_DEADZONE:

+ 2 - 2
netnet/project.godot

@@ -11,7 +11,7 @@ config_version=5
 [application]
 
 config/name="Network Example Gd4"
-config/description="Scene replication example in 3D with Godot 4"
+config/description="Scene replication example in 2D with Godot 4"
 config/tags=PackedStringArray("dricom")
 run/main_scene="res://run/multiplayer.tscn"
 config/features=PackedStringArray("4.1")
@@ -25,7 +25,7 @@ move_right={
 }
 move_left={
 "deadzone": 0.5,
-"events": [Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":-1,"window_id":0,"alt_pressed":false,"shift_pressed":false,"ctrl_pressed":false,"meta_pressed":false,"pressed":false,"keycode":0,"physical_keycode":4194321,"key_label":0,"unicode":0,"echo":false,"script":null)
+"events": [Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":-1,"window_id":0,"alt_pressed":false,"shift_pressed":false,"ctrl_pressed":false,"meta_pressed":false,"pressed":false,"keycode":0,"physical_keycode":4194319,"key_label":0,"unicode":0,"echo":false,"script":null)
 ]
 }
 jump={