A game created for the Godot Wild Jam #21
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

54 lines
1.5KB

  1. [gd_scene load_steps=7 format=2]
  2. [ext_resource path="res://Data/Scripts/Controller.gd" type="Script" id=1]
  3. [ext_resource path="res://Data/Colors/GooGradient.tres" type="Texture" id=2]
  4. [sub_resource type="CircleShape2D" id=1]
  5. [sub_resource type="Curve" id=4]
  6. _data = [ Vector2( 0, 1 ), 0.0, 0.219234, 0, 0, Vector2( 1, 0.559091 ), -0.228985, 0.0, 0, 0 ]
  7. [sub_resource type="CurveTexture" id=5]
  8. curve = SubResource( 4 )
  9. [sub_resource type="ParticlesMaterial" id=6]
  10. lifetime_randomness = 0.28
  11. emission_shape = 1
  12. emission_sphere_radius = 10.0
  13. flag_disable_z = true
  14. gravity = Vector3( 0, 0, 0 )
  15. initial_velocity = 0.25
  16. initial_velocity_random = 1.0
  17. orbit_velocity = 0.0
  18. orbit_velocity_random = 0.0
  19. radial_accel = -10.0
  20. radial_accel_random = 0.54
  21. damping = 12.0
  22. damping_random = 0.41
  23. scale = 4.0
  24. scale_curve = SubResource( 5 )
  25. color_ramp = ExtResource( 2 )
  26. [node name="Player" type="RigidBody2D"]
  27. collision_mask = 3
  28. contacts_reported = 1
  29. contact_monitor = true
  30. script = ExtResource( 1 )
  31. [node name="CollisionShape2D" type="CollisionShape2D" parent="."]
  32. shape = SubResource( 1 )
  33. [node name="Particles" type="Particles2D" parent="."]
  34. amount = 100
  35. process_material = SubResource( 6 )
  36. [node name="Joint" type="PinJoint2D" parent="."]
  37. bias = 0.9
  38. softness = 0.1
  39. [node name="Camera" type="Camera2D" parent="."]
  40. current = true
  41. smoothing_enabled = true
  42. [connection signal="body_entered" from="." to="." method="_on_Player_body_entered"]
  43. [connection signal="body_exited" from="." to="." method="_on_Player_body_exited"]