jumper.tscn 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. [gd_scene load_steps=8 format=3 uid="uid://ckph60svia3xr"]
  2. [ext_resource type="Script" path="res://component/entity/jumper/jumper.gd" id="1_smoki"]
  3. [ext_resource type="Texture2D" uid="uid://cojbjngjjhoe0" path="res://component/entity/jumper/green_astronaut.png" id="2_xm8at"]
  4. [ext_resource type="Script" path="res://component/entity/jumper/jumper_input.gd" id="3_trrhr"]
  5. [sub_resource type="PhysicsMaterial" id="PhysicsMaterial_vgl4i"]
  6. friction = 0.5
  7. [sub_resource type="CapsuleShape2D" id="CapsuleShape2D_raoy1"]
  8. radius = 18.0
  9. height = 50.0
  10. [sub_resource type="SceneReplicationConfig" id="SceneReplicationConfig_wnop5"]
  11. properties/0/path = NodePath(".:position")
  12. properties/0/spawn = true
  13. properties/0/sync = true
  14. properties/0/watch = false
  15. properties/1/path = NodePath(".:player")
  16. properties/1/spawn = true
  17. properties/1/sync = false
  18. properties/1/watch = false
  19. [sub_resource type="SceneReplicationConfig" id="SceneReplicationConfig_74ldf"]
  20. properties/0/path = NodePath("JumperInput:direction")
  21. properties/0/spawn = false
  22. properties/0/sync = true
  23. properties/0/watch = false
  24. [node name="Jumper" type="RigidBody2D"]
  25. physics_material_override = SubResource("PhysicsMaterial_vgl4i")
  26. lock_rotation = true
  27. linear_damp = 1.0
  28. script = ExtResource("1_smoki")
  29. [node name="CollisionShape2D" type="CollisionShape2D" parent="."]
  30. position = Vector2(0, -2)
  31. shape = SubResource("CapsuleShape2D_raoy1")
  32. [node name="Sprite2D" type="Sprite2D" parent="."]
  33. texture = ExtResource("2_xm8at")
  34. [node name="ServerSynchronizer" type="MultiplayerSynchronizer" parent="."]
  35. replication_config = SubResource("SceneReplicationConfig_wnop5")
  36. [node name="JumperInput" type="MultiplayerSynchronizer" parent="."]
  37. replication_config = SubResource("SceneReplicationConfig_74ldf")
  38. script = ExtResource("3_trrhr")