A game created for the Godot Wild Jam #21
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

168 lines
4.2KB

  1. [gd_scene load_steps=11 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. [ext_resource path="res://icon.png" type="Texture" id=3]
  5. [ext_resource path="res://Data/Graphics/droplet_a.png" type="Texture" id=4]
  6. [sub_resource type="CircleShape2D" id=1]
  7. radius = 16.0
  8. [sub_resource type="Curve" id=4]
  9. _data = [ Vector2( 0, 1 ), 0.0, 0.219234, 0, 0, Vector2( 1, 0.434091 ), -0.228985, 0.0, 0, 0 ]
  10. [sub_resource type="CurveTexture" id=5]
  11. curve = SubResource( 4 )
  12. [sub_resource type="ParticlesMaterial" id=6]
  13. lifetime_randomness = 0.52
  14. emission_shape = 1
  15. emission_sphere_radius = 16.0
  16. flag_disable_z = true
  17. direction = Vector3( 0, 0, 0 )
  18. spread = 0.0
  19. gravity = Vector3( 0, 8, 0 )
  20. orbit_velocity = 0.0
  21. orbit_velocity_random = 0.0
  22. linear_accel = 10.0
  23. damping = 12.0
  24. damping_random = 0.41
  25. angle = 45.0
  26. angle_random = 0.85
  27. scale = 0.75
  28. scale_curve = SubResource( 5 )
  29. color_ramp = ExtResource( 2 )
  30. [sub_resource type="Shader" id=7]
  31. code = "shader_type canvas_item;
  32. uniform float rimWidth : hint_range(1.0, 3.0) = 2.0;
  33. uniform vec4 rim_color : hint_color;
  34. uniform vec4 cell_color : hint_color;
  35. uniform float fisheye_power = 2.0;
  36. vec2 random2(vec2 p){
  37. return fract(sin(vec2(dot(p, vec2(127.1, 311.7)), dot(p, vec2(269.5, 183.3)))) * 43758.5453);
  38. }
  39. float ramp(float v, float f_min, float f_max){
  40. if (v <= f_min){return 0.0;}
  41. if (v >= f_max){return 1.0;}
  42. return (v - f_min) / f_max;
  43. }
  44. float CellularNoise(vec2 vUV, float scale, float time){
  45. // Code modified from...
  46. // https://thebookofshaders.com/12/
  47. vec2 st = vUV * scale;
  48. //st.x = vres.x/vres.y;
  49. vec2 i_st = floor(st);
  50. vec2 f_st = fract(st);
  51. float min_dist = 1.0;
  52. for (int y = -1; y <= 1; y++){
  53. for (int x = -1; x <= 1; x++){
  54. vec2 neighbor = vec2(float(x), float(y));
  55. vec2 point = random2(i_st + neighbor);
  56. point = 0.5 + (0.5 * sin(time + (6.2831 * point)));
  57. float dist = length((neighbor + point) - f_st);
  58. min_dist = min(min_dist, dist);
  59. }
  60. }
  61. return min_dist;
  62. }
  63. vec2 distort(vec2 p) {
  64. // Function borrowed and slightly modified from...
  65. // https://gist.github.com/henriquelalves/989fdd72e10c90091188
  66. p *= 2.0;
  67. p -= vec2(1.0, 1.0);
  68. if (length(p) >= 1.5){return p;}
  69. //return p;
  70. if(p.x > 0.0){
  71. float angle = p.y / p.x;
  72. float theta = atan(angle);
  73. float radius = length(p);
  74. radius = pow(radius, fisheye_power);
  75. p.x = radius * cos(theta);
  76. p.y = radius * sin(theta);
  77. } else {
  78. float angle = p.y / p.x;
  79. float theta = atan(angle);
  80. float radius = length(p);
  81. radius = pow(radius, fisheye_power);
  82. p.y = radius * sin(-theta);
  83. p.x = radius * cos(theta);
  84. p.x = - p.x;
  85. }
  86. return 0.5 * (p + vec2(1.0,1.0));
  87. }
  88. void fragment(){
  89. float n = ramp(CellularNoise(distort(UV.xy), 5.0, TIME), 0.2, 0.9);
  90. float rim = length(vec2(0.5, 0.5) - (UV.xy));
  91. if (rim > 0.5){
  92. rim = 0.0;
  93. }
  94. rim = ramp(pow(rim, rimWidth), 0.0, 0.5);
  95. vec4 color = texture(SCREEN_TEXTURE, SCREEN_UV);
  96. if (rim > 0.0){
  97. color = vec4(cell_color.rgb * n, n);
  98. color = color + vec4(rim_color.rgb * rim, rim);
  99. } else {
  100. color = vec4(color.rgb, 0.0);
  101. }
  102. COLOR = color;
  103. }"
  104. [sub_resource type="ShaderMaterial" id=8]
  105. shader = SubResource( 7 )
  106. shader_param/rimWidth = 1.81
  107. shader_param/rim_color = Color( 0.705882, 0.976471, 0.027451, 1 )
  108. shader_param/cell_color = Color( 0.690196, 0.435294, 0.109804, 1 )
  109. shader_param/fisheye_power = 3.0
  110. [node name="Player" type="RigidBody2D"]
  111. collision_mask = 3
  112. contacts_reported = 1
  113. contact_monitor = true
  114. script = ExtResource( 1 )
  115. [node name="CollisionShape2D" type="CollisionShape2D" parent="."]
  116. visible = false
  117. shape = SubResource( 1 )
  118. [node name="Joint" type="PinJoint2D" parent="."]
  119. bias = 0.9
  120. softness = 0.1
  121. [node name="Camera" type="Camera2D" parent="."]
  122. current = true
  123. smoothing_enabled = true
  124. [node name="Particles" type="Particles2D" parent="."]
  125. visible = false
  126. amount = 50
  127. lifetime = 8.0
  128. local_coords = false
  129. process_material = SubResource( 6 )
  130. texture = ExtResource( 4 )
  131. [node name="Sprite" type="Sprite" parent="."]
  132. material = SubResource( 8 )
  133. scale = Vector2( 0.5, 0.5 )
  134. texture = ExtResource( 3 )
  135. [connection signal="body_entered" from="." to="." method="_on_Player_body_entered"]
  136. [connection signal="body_exited" from="." to="." method="_on_Player_body_exited"]