jumper.tscn 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  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/1/path = NodePath(".:player")
  15. properties/1/spawn = true
  16. properties/1/sync = false
  17. [sub_resource type="SceneReplicationConfig" id="SceneReplicationConfig_74ldf"]
  18. properties/0/path = NodePath("JumperInput:direction")
  19. properties/0/spawn = false
  20. properties/0/sync = true
  21. [node name="Jumper" type="RigidBody2D"]
  22. physics_material_override = SubResource("PhysicsMaterial_vgl4i")
  23. lock_rotation = true
  24. linear_damp = 1.0
  25. script = ExtResource("1_smoki")
  26. [node name="CollisionShape2D" type="CollisionShape2D" parent="."]
  27. position = Vector2(0, -2)
  28. shape = SubResource("CapsuleShape2D_raoy1")
  29. [node name="Sprite2D" type="Sprite2D" parent="."]
  30. texture = ExtResource("2_xm8at")
  31. [node name="ServerSynchronizer" type="MultiplayerSynchronizer" parent="."]
  32. replication_config = SubResource("SceneReplicationConfig_wnop5")
  33. [node name="JumperInput" type="MultiplayerSynchronizer" parent="."]
  34. replication_config = SubResource("SceneReplicationConfig_74ldf")
  35. script = ExtResource("3_trrhr")