xrjamfeb2025/scenes/win_particles.tscn
2025-02-16 13:30:23 -07:00

137 lines
4.4 KiB
Text

[gd_scene load_steps=8 format=3 uid="uid://bu0fu4uiwyu65"]
[ext_resource type="Script" path="res://scenes/win_particles.gd" id="1_ittcg"]
[ext_resource type="AudioStream" uid="uid://chh3mqdtd3nw4" path="res://assets/crash.ogg" id="2_sr0qd"]
[ext_resource type="AudioStream" uid="uid://iquu0ttk5ib1" path="res://assets/boombap.ogg" id="3_xnety"]
[sub_resource type="ParticleProcessMaterial" id="ParticleProcessMaterial_bm8qp"]
particle_flag_align_y = true
emission_shape_scale = Vector3(3, 1, 3)
emission_shape = 3
emission_box_extents = Vector3(1, 1, 1)
angle_min = -122.4
angle_max = 151.5
spread = 180.0
initial_velocity_min = 0.1
initial_velocity_max = 0.5
angular_velocity_min = -105.82
angular_velocity_max = 157.69
gravity = Vector3(0, -5, 0)
damping_min = 2.0
damping_max = 3.0
scale_min = 0.5
scale_max = 2.0
color = Color(0.997807, 0.645565, 0.348555, 1)
hue_variation_min = -0.33
hue_variation_max = 0.33
turbulence_enabled = true
turbulence_noise_scale = 5.45
collision_mode = 1
collision_friction = 1.0
collision_bounce = 0.0
[sub_resource type="Shader" id="Shader_xdn50"]
code = "// NOTE: Shader automatically converted from Godot Engine 4.3.stable's StandardMaterial3D.
shader_type spatial;
render_mode blend_mix, depth_draw_opaque, cull_disabled, diffuse_burley, specular_schlick_ggx, vertex_lighting;
uniform vec4 albedo : source_color;
uniform sampler2D texture_albedo : source_color, filter_linear_mipmap, repeat_enable;
uniform float point_size : hint_range(0.1, 128.0, 0.1);
uniform float roughness : hint_range(0.0, 1.0);
uniform sampler2D texture_metallic : hint_default_white, filter_linear_mipmap, repeat_enable;
uniform vec4 metallic_texture_channel;
uniform sampler2D texture_roughness : hint_roughness_r, filter_linear_mipmap, repeat_enable;
uniform float specular : hint_range(0.0, 1.0, 0.01);
uniform float metallic : hint_range(0.0, 1.0, 0.01);
uniform sampler2D texture_emission : source_color, hint_default_black, filter_linear_mipmap, repeat_enable;
uniform vec4 emission : source_color;
uniform float emission_energy : hint_range(0.0, 100.0, 0.01);
uniform vec3 uv1_scale;
uniform vec3 uv1_offset;
uniform vec3 uv2_scale;
uniform vec3 uv2_offset;
void vertex() {
// Vertex Color is sRGB: Enabled
if (!OUTPUT_IS_SRGB) {
COLOR.rgb = mix(
pow((COLOR.rgb + vec3(0.055)) * (1.0 / (1.0 + 0.055)), vec3(2.4)),
COLOR.rgb * (1.0 / 12.92),
lessThan(COLOR.rgb, vec3(0.04045)));
}
// Shading Mode: Per Vertex
ROUGHNESS = roughness;
UV = UV * uv1_scale.xy + uv1_offset.xy;
}
void fragment() {
vec2 base_uv = UV;
vec4 albedo_tex = texture(texture_albedo, base_uv);
// Vertex Color Use as Albedo: Enabled
albedo_tex *= COLOR;
ALBEDO = albedo.rgb * albedo_tex.rgb;
float metallic_tex = dot(texture(texture_metallic, base_uv), metallic_texture_channel);
METALLIC = metallic_tex * metallic;
SPECULAR = specular;
vec4 roughness_texture_channel = vec4(1.0, 0.0, 0.0, 0.0);
float roughness_tex = dot(texture(texture_roughness, base_uv), roughness_texture_channel);
ROUGHNESS = roughness_tex * roughness;
// Emission Operator: Add
EMISSION = ALBEDO * emission_energy;
}
"
[sub_resource type="ShaderMaterial" id="ShaderMaterial_bvlxl"]
render_priority = 0
shader = SubResource("Shader_xdn50")
shader_parameter/albedo = Color(1, 1, 1, 1)
shader_parameter/point_size = 1.0
shader_parameter/roughness = 1.0
shader_parameter/metallic_texture_channel = null
shader_parameter/specular = 1.0
shader_parameter/metallic = 1.0
shader_parameter/emission = Color(0.996454, 0.721284, 0.467443, 1)
shader_parameter/emission_energy = 0.5
shader_parameter/uv1_scale = Vector3(1, 1, 1)
shader_parameter/uv1_offset = Vector3(0, 0, 0)
shader_parameter/uv2_scale = Vector3(1, 1, 1)
shader_parameter/uv2_offset = Vector3(0, 0, 0)
[sub_resource type="QuadMesh" id="QuadMesh_tfxeh"]
material = SubResource("ShaderMaterial_bvlxl")
size = Vector2(0.01, 0.01)
orientation = 1
[node name="WinParticles" type="GPUParticles3D"]
emitting = false
amount = 3000
lifetime = 20.0
one_shot = true
explosiveness = 0.75
randomness = 0.58
visibility_aabb = AABB(-8, -8, -8, 16, 16, 16)
process_material = SubResource("ParticleProcessMaterial_bm8qp")
draw_pass_1 = SubResource("QuadMesh_tfxeh")
script = ExtResource("1_ittcg")
[node name="Crash" type="AudioStreamPlayer3D" parent="."]
stream = ExtResource("2_sr0qd")
volume_db = -10.444
[node name="boombap" type="AudioStreamPlayer3D" parent="."]
stream = ExtResource("3_xnety")
autoplay = true