diff --git a/CamControl.gd b/CamControl.gd new file mode 100644 index 0000000..160a00e --- /dev/null +++ b/CamControl.gd @@ -0,0 +1,22 @@ +extends Camera + +const UP = Vector3(0, 1, 0) +const camera_speed = 0.5 + +func _physics_process(delta): + + var speed = delta * camera_speed + + var xform = get_transform() + var upangle = acos(-xform.basis[2].dot(UP)) + + if Input.is_key_pressed(KEY_LEFT): + translation += xform.basis[0] * speed * sin(upangle) + if Input.is_key_pressed(KEY_RIGHT): + translation -= xform.basis[0] * speed * sin(upangle) + if Input.is_key_pressed(KEY_DOWN): + translation += xform.basis[1] * speed + if Input.is_key_pressed(KEY_UP): + translation -= xform.basis[1] * speed + + look_at(Vector3(), UP) diff --git a/FlareEditor.gd b/FlareEditor.gd new file mode 100644 index 0000000..56d5555 --- /dev/null +++ b/FlareEditor.gd @@ -0,0 +1,25 @@ +extends Panel + +onready var lens_flare = $"../LensFlare" + +func _process(delta): + for i in $Settings.get_children(): + match i.name: + "FlareStrength": + lens_flare.flareStrength = \ + $Settings/FlareStrength/HSlider.value + "FlareBias": + lens_flare.flareBias = \ + $Settings/FlareBias/HSlider.value + "Distortion": + lens_flare.distortion = \ + $Settings/Distortion/HSlider.value + "GhostCount": + lens_flare.ghostCount = \ + $Settings/GhostCount/HSlider.value + "GhostSpacing": + lens_flare.ghostSpacing = \ + $Settings/GhostSpacing/HSlider.value + "HaloWidth": + lens_flare.haloWidth = \ + $Settings/HaloWidth/HSlider.value diff --git a/LensFlare.tscn b/LensFlare.tscn new file mode 100644 index 0000000..82784cf --- /dev/null +++ b/LensFlare.tscn @@ -0,0 +1,559 @@ +[gd_scene load_steps=9 format=2] + +[ext_resource path="res://addons/SIsilicon.vfx.lens flare/lens-flare.gd" type="Script" id=1] +[ext_resource path="res://addons/SIsilicon.vfx.lens flare/lens_flare_icon.png" type="Texture" id=2] +[ext_resource path="res://addons/SIsilicon.vfx.lens flare/lens-dirt-default.jpeg" type="Texture" id=3] +[ext_resource path="res://CamControl.gd" type="Script" id=4] +[ext_resource path="res://FlareEditor.gd" type="Script" id=5] +[ext_resource path="res://Square.ttf" type="DynamicFontData" id=6] + +[sub_resource type="DynamicFont" id=2] + +size = 20 +use_mipmaps = true +use_filter = true +font_data = ExtResource( 6 ) +_sections_unfolded = [ "Resource", "Settings" ] + +[sub_resource type="Animation" id=3] + +resource_name = "instruction" +length = 4.0 +loop = false +step = 0.1 +tracks/0/type = "value" +tracks/0/path = NodePath(".:custom_colors/font_color") +tracks/0/interp = 1 +tracks/0/loop_wrap = true +tracks/0/imported = false +tracks/0/enabled = true +tracks/0/keys = { +"times": PoolRealArray( 0, 0.5, 1, 1.5, 2, 2.5, 3, 3.5, 4 ), +"transitions": PoolRealArray( 1, 1, 1, 1, 1, 1, 1, 1, 1 ), +"update": 0, +"values": [ Color( 1, 1, 1, 1 ), Color( 1, 1, 1, 0 ), Color( 1, 1, 1, 1 ), Color( 1, 1, 1, 0 ), Color( 1, 1, 1, 1 ), Color( 1, 1, 1, 0 ), Color( 1, 1, 1, 1 ), Color( 1, 1, 1, 0 ), Color( 1, 1, 1, 1 ) ] +} +tracks/1/type = "value" +tracks/1/path = NodePath(".:rect_position") +tracks/1/interp = 2 +tracks/1/loop_wrap = true +tracks/1/imported = false +tracks/1/enabled = true +tracks/1/keys = { +"times": PoolRealArray( 0, 3, 4 ), +"transitions": PoolRealArray( 1, 1, 4 ), +"update": 0, +"values": [ Vector2( 0, 578 ), Vector2( 0, 578 ), Vector2( 0, 700 ) ] +} + +[node name="Main" type="Node" index="0"] + +[node name="LensFlare" type="Node" parent="." index="0"] + +script = ExtResource( 1 ) +__meta__ = { +"_editor_icon": ExtResource( 2 ) +} +flareStrength = 10.0 +flareBias = 1.05 +distortion = 2 +ghostCount = 7 +ghostSpacing = 0.3 +haloWidth = 0.25 +lensDirt = ExtResource( 3 ) + +[node name="CameraBase" type="Position3D" parent="." index="1"] + +[node name="Camera" type="Camera" parent="CameraBase" index="0"] + +transform = Transform( 0.990683, 0.0787858, 0.111085, -0.00953811, 0.853812, -0.520493, -0.135853, 0.514584, 0.846609, 0.140886, -0.660126, 1.07524 ) +keep_aspect = 1 +cull_mask = 1048575 +environment = null +h_offset = 0.0 +v_offset = 0.0 +doppler_tracking = 0 +projection = 0 +current = false +fov = 70.0 +size = 1.0 +near = 0.05 +far = 100.0 +script = ExtResource( 4 ) + +[node name="Panel" type="Panel" parent="." index="2"] + +editor/display_folded = true +anchor_left = 0.0 +anchor_top = 0.0 +anchor_right = 0.0 +anchor_bottom = 1.0 +margin_right = 240.0 +margin_bottom = -463.0 +rect_min_size = Vector2( 240, 0 ) +rect_pivot_offset = Vector2( 0, 0 ) +rect_clip_content = false +mouse_filter = 0 +mouse_default_cursor_shape = 0 +size_flags_horizontal = 1 +size_flags_vertical = 1 +script = ExtResource( 5 ) +_sections_unfolded = [ "Rect", "Size Flags" ] + +[node name="Settings" type="VBoxContainer" parent="Panel" index="0"] + +anchor_left = 0.0 +anchor_top = 0.0 +anchor_right = 0.0 +anchor_bottom = 1.0 +margin_left = 20.0 +margin_top = 10.0 +margin_right = 200.0 +margin_bottom = -10.0 +rect_min_size = Vector2( 200, 0 ) +rect_pivot_offset = Vector2( 0, 0 ) +rect_clip_content = false +mouse_filter = 1 +mouse_default_cursor_shape = 0 +size_flags_horizontal = 1 +size_flags_vertical = 1 +alignment = 0 +_sections_unfolded = [ "Margin", "Rect" ] + +[node name="FlareStrength" type="HBoxContainer" parent="Panel/Settings" index="0"] + +editor/display_folded = true +anchor_left = 0.0 +anchor_top = 0.0 +anchor_right = 0.0 +anchor_bottom = 0.0 +margin_right = 200.0 +margin_bottom = 16.0 +rect_pivot_offset = Vector2( 0, 0 ) +rect_clip_content = false +mouse_filter = 1 +mouse_default_cursor_shape = 0 +size_flags_horizontal = 1 +size_flags_vertical = 1 +alignment = 0 + +[node name="Label" type="Label" parent="Panel/Settings/FlareStrength" index="0"] + +anchor_left = 0.0 +anchor_top = 0.0 +anchor_right = 0.0 +anchor_bottom = 0.0 +margin_top = 1.0 +margin_right = 88.0 +margin_bottom = 15.0 +rect_pivot_offset = Vector2( 0, 0 ) +rect_clip_content = false +mouse_filter = 2 +mouse_default_cursor_shape = 0 +size_flags_horizontal = 1 +size_flags_vertical = 4 +text = "Flare Strength" +percent_visible = 1.0 +lines_skipped = 0 +max_lines_visible = -1 + +[node name="HSlider" type="HSlider" parent="Panel/Settings/FlareStrength" index="1"] + +anchor_left = 0.0 +anchor_top = 0.0 +anchor_right = 0.0 +anchor_bottom = 0.0 +margin_left = 92.0 +margin_right = 200.0 +margin_bottom = 16.0 +rect_pivot_offset = Vector2( 0, 0 ) +rect_clip_content = false +focus_mode = 2 +mouse_filter = 0 +mouse_default_cursor_shape = 0 +size_flags_horizontal = 3 +size_flags_vertical = 0 +min_value = 0.0 +max_value = 20.0 +step = 0.1 +page = 0.0 +value = 10.0 +exp_edit = false +rounded = false +editable = true +tick_count = 0 +ticks_on_borders = false +focus_mode = 2 + +[node name="FlareBias" type="HBoxContainer" parent="Panel/Settings" index="1"] + +editor/display_folded = true +anchor_left = 0.0 +anchor_top = 0.0 +anchor_right = 0.0 +anchor_bottom = 0.0 +margin_top = 20.0 +margin_right = 200.0 +margin_bottom = 36.0 +rect_pivot_offset = Vector2( 0, 0 ) +rect_clip_content = false +mouse_filter = 1 +mouse_default_cursor_shape = 0 +size_flags_horizontal = 1 +size_flags_vertical = 1 +alignment = 0 + +[node name="Label" type="Label" parent="Panel/Settings/FlareBias" index="0"] + +anchor_left = 0.0 +anchor_top = 0.0 +anchor_right = 0.0 +anchor_bottom = 0.0 +margin_top = 1.0 +margin_right = 62.0 +margin_bottom = 15.0 +rect_pivot_offset = Vector2( 0, 0 ) +rect_clip_content = false +mouse_filter = 2 +mouse_default_cursor_shape = 0 +size_flags_horizontal = 1 +size_flags_vertical = 4 +text = "Flare Bias" +percent_visible = 1.0 +lines_skipped = 0 +max_lines_visible = -1 + +[node name="HSlider" type="HSlider" parent="Panel/Settings/FlareBias" index="1"] + +anchor_left = 0.0 +anchor_top = 0.0 +anchor_right = 0.0 +anchor_bottom = 0.0 +margin_left = 66.0 +margin_right = 200.0 +margin_bottom = 16.0 +rect_pivot_offset = Vector2( 0, 0 ) +rect_clip_content = false +focus_mode = 2 +mouse_filter = 0 +mouse_default_cursor_shape = 0 +size_flags_horizontal = 3 +size_flags_vertical = 0 +min_value = 0.0 +max_value = 2.0 +step = 0.01 +page = 0.0 +value = 1.0 +exp_edit = false +rounded = false +editable = true +tick_count = 0 +ticks_on_borders = false +focus_mode = 2 +_sections_unfolded = [ "Size Flags" ] + +[node name="Distortion" type="HBoxContainer" parent="Panel/Settings" index="2"] + +editor/display_folded = true +anchor_left = 0.0 +anchor_top = 0.0 +anchor_right = 0.0 +anchor_bottom = 0.0 +margin_top = 40.0 +margin_right = 200.0 +margin_bottom = 56.0 +rect_pivot_offset = Vector2( 0, 0 ) +rect_clip_content = false +mouse_filter = 1 +mouse_default_cursor_shape = 0 +size_flags_horizontal = 1 +size_flags_vertical = 1 +alignment = 0 + +[node name="Label" type="Label" parent="Panel/Settings/Distortion" index="0"] + +anchor_left = 0.0 +anchor_top = 0.0 +anchor_right = 0.0 +anchor_bottom = 0.0 +margin_top = 1.0 +margin_right = 64.0 +margin_bottom = 15.0 +rect_pivot_offset = Vector2( 0, 0 ) +rect_clip_content = false +mouse_filter = 2 +mouse_default_cursor_shape = 0 +size_flags_horizontal = 1 +size_flags_vertical = 4 +text = "Distortion" +percent_visible = 1.0 +lines_skipped = 0 +max_lines_visible = -1 + +[node name="HSlider" type="HSlider" parent="Panel/Settings/Distortion" index="1"] + +anchor_left = 0.0 +anchor_top = 0.0 +anchor_right = 0.0 +anchor_bottom = 0.0 +margin_left = 68.0 +margin_right = 200.0 +margin_bottom = 16.0 +rect_pivot_offset = Vector2( 0, 0 ) +rect_clip_content = false +focus_mode = 2 +mouse_filter = 0 +mouse_default_cursor_shape = 0 +size_flags_horizontal = 3 +size_flags_vertical = 0 +min_value = 0.0 +max_value = 16.0 +step = 0.001 +page = 0.0 +value = 2.0 +exp_edit = false +rounded = false +editable = true +tick_count = 0 +ticks_on_borders = false +focus_mode = 2 +_sections_unfolded = [ "Size Flags" ] + +[node name="GhostCount" type="HBoxContainer" parent="Panel/Settings" index="3"] + +editor/display_folded = true +anchor_left = 0.0 +anchor_top = 0.0 +anchor_right = 0.0 +anchor_bottom = 0.0 +margin_top = 60.0 +margin_right = 200.0 +margin_bottom = 76.0 +rect_pivot_offset = Vector2( 0, 0 ) +rect_clip_content = false +mouse_filter = 1 +mouse_default_cursor_shape = 0 +size_flags_horizontal = 1 +size_flags_vertical = 1 +alignment = 0 + +[node name="Label" type="Label" parent="Panel/Settings/GhostCount" index="0"] + +anchor_left = 0.0 +anchor_top = 0.0 +anchor_right = 0.0 +anchor_bottom = 0.0 +margin_top = 1.0 +margin_right = 79.0 +margin_bottom = 15.0 +rect_pivot_offset = Vector2( 0, 0 ) +rect_clip_content = false +mouse_filter = 2 +mouse_default_cursor_shape = 0 +size_flags_horizontal = 1 +size_flags_vertical = 4 +text = "Ghost Count" +percent_visible = 1.0 +lines_skipped = 0 +max_lines_visible = -1 + +[node name="HSlider" type="HSlider" parent="Panel/Settings/GhostCount" index="1"] + +anchor_left = 0.0 +anchor_top = 0.0 +anchor_right = 0.0 +anchor_bottom = 0.0 +margin_left = 83.0 +margin_right = 200.0 +margin_bottom = 16.0 +rect_pivot_offset = Vector2( 0, 0 ) +rect_clip_content = false +focus_mode = 2 +mouse_filter = 0 +mouse_default_cursor_shape = 0 +size_flags_horizontal = 3 +size_flags_vertical = 0 +min_value = 0.0 +max_value = 20.0 +step = 1.0 +page = 0.0 +value = 7.0 +exp_edit = false +rounded = false +editable = true +tick_count = 0 +ticks_on_borders = false +focus_mode = 2 +_sections_unfolded = [ "Size Flags" ] + +[node name="GhostSpacing" type="HBoxContainer" parent="Panel/Settings" index="4"] + +editor/display_folded = true +anchor_left = 0.0 +anchor_top = 0.0 +anchor_right = 0.0 +anchor_bottom = 0.0 +margin_top = 80.0 +margin_right = 200.0 +margin_bottom = 96.0 +rect_pivot_offset = Vector2( 0, 0 ) +rect_clip_content = false +mouse_filter = 1 +mouse_default_cursor_shape = 0 +size_flags_horizontal = 1 +size_flags_vertical = 1 +alignment = 0 + +[node name="Label" type="Label" parent="Panel/Settings/GhostSpacing" index="0"] + +anchor_left = 0.0 +anchor_top = 0.0 +anchor_right = 0.0 +anchor_bottom = 0.0 +margin_top = 1.0 +margin_right = 90.0 +margin_bottom = 15.0 +rect_pivot_offset = Vector2( 0, 0 ) +rect_clip_content = false +mouse_filter = 2 +mouse_default_cursor_shape = 0 +size_flags_horizontal = 1 +size_flags_vertical = 4 +text = "Ghost Spacing" +percent_visible = 1.0 +lines_skipped = 0 +max_lines_visible = -1 + +[node name="HSlider" type="HSlider" parent="Panel/Settings/GhostSpacing" index="1"] + +anchor_left = 0.0 +anchor_top = 0.0 +anchor_right = 0.0 +anchor_bottom = 0.0 +margin_left = 94.0 +margin_right = 200.0 +margin_bottom = 16.0 +rect_pivot_offset = Vector2( 0, 0 ) +rect_clip_content = false +focus_mode = 2 +mouse_filter = 0 +mouse_default_cursor_shape = 0 +size_flags_horizontal = 3 +size_flags_vertical = 0 +min_value = 0.0 +max_value = 1.0 +step = 0.001 +page = 0.0 +value = 0.3 +exp_edit = false +rounded = false +editable = true +tick_count = 0 +ticks_on_borders = false +focus_mode = 2 +_sections_unfolded = [ "Size Flags" ] + +[node name="HaloWidth" type="HBoxContainer" parent="Panel/Settings" index="5"] + +editor/display_folded = true +anchor_left = 0.0 +anchor_top = 0.0 +anchor_right = 0.0 +anchor_bottom = 0.0 +margin_top = 100.0 +margin_right = 200.0 +margin_bottom = 116.0 +rect_pivot_offset = Vector2( 0, 0 ) +rect_clip_content = false +mouse_filter = 1 +mouse_default_cursor_shape = 0 +size_flags_horizontal = 1 +size_flags_vertical = 1 +alignment = 0 + +[node name="Label" type="Label" parent="Panel/Settings/HaloWidth" index="0"] + +anchor_left = 0.0 +anchor_top = 0.0 +anchor_right = 0.0 +anchor_bottom = 0.0 +margin_top = 1.0 +margin_right = 71.0 +margin_bottom = 15.0 +rect_pivot_offset = Vector2( 0, 0 ) +rect_clip_content = false +mouse_filter = 2 +mouse_default_cursor_shape = 0 +size_flags_horizontal = 1 +size_flags_vertical = 4 +text = "Halo Width" +percent_visible = 1.0 +lines_skipped = 0 +max_lines_visible = -1 + +[node name="HSlider" type="HSlider" parent="Panel/Settings/HaloWidth" index="1"] + +anchor_left = 0.0 +anchor_top = 0.0 +anchor_right = 0.0 +anchor_bottom = 0.0 +margin_left = 75.0 +margin_right = 200.0 +margin_bottom = 16.0 +rect_pivot_offset = Vector2( 0, 0 ) +rect_clip_content = false +focus_mode = 2 +mouse_filter = 0 +mouse_default_cursor_shape = 0 +size_flags_horizontal = 3 +size_flags_vertical = 0 +min_value = 0.0 +max_value = 1.0 +step = 0.001 +page = 0.0 +value = 0.25 +exp_edit = false +rounded = false +editable = true +tick_count = 0 +ticks_on_borders = false +focus_mode = 2 +_sections_unfolded = [ "Size Flags" ] + +[node name="LookAround" type="Label" parent="." index="3"] + +editor/display_folded = true +anchor_left = 0.0 +anchor_top = 1.0 +anchor_right = 1.0 +anchor_bottom = 1.0 +margin_top = 51.0 +margin_bottom = 73.0 +rect_pivot_offset = Vector2( 0, 0 ) +rect_clip_content = false +mouse_filter = 2 +mouse_default_cursor_shape = 0 +size_flags_horizontal = 1 +size_flags_vertical = 4 +custom_fonts/font = SubResource( 2 ) +custom_colors/font_color = Color( 1, 1, 1, 1 ) +custom_colors/font_color_shadow = Color( 0, 0, 0, 1 ) +custom_constants/shadow_as_outline = 1 +text = "You may look around with the arrow keys" +align = 1 +percent_visible = 1.0 +lines_skipped = 0 +max_lines_visible = -1 +_sections_unfolded = [ "Rect", "custom_colors", "custom_constants", "custom_fonts" ] + +[node name="AnimationPlayer" type="AnimationPlayer" parent="LookAround" index="0"] + +root_node = NodePath("..") +autoplay = "instruction" +playback_process_mode = 1 +playback_default_blend_time = 0.0 +playback_speed = 1.0 +anims/instruction = SubResource( 3 ) +blend_times = [ ] + + diff --git a/Square.ttf b/Square.ttf new file mode 100644 index 0000000..9f1867e Binary files /dev/null and b/Square.ttf differ diff --git a/default_env.tres b/default_env.tres new file mode 100644 index 0000000..ad86b72 --- /dev/null +++ b/default_env.tres @@ -0,0 +1,101 @@ +[gd_resource type="Environment" load_steps=2 format=2] + +[sub_resource type="ProceduralSky" id=1] + +radiance_size = 4 +sky_top_color = Color( 0.0470588, 0.454902, 0.976471, 1 ) +sky_horizon_color = Color( 0.556863, 0.823529, 0.909804, 1 ) +sky_curve = 0.25 +sky_energy = 1.0 +ground_bottom_color = Color( 0.101961, 0.145098, 0.188235, 1 ) +ground_horizon_color = Color( 0.482353, 0.788235, 0.952941, 1 ) +ground_curve = 0.01 +ground_energy = 1.0 +sun_color = Color( 1, 1, 1, 1 ) +sun_latitude = 35.0 +sun_longitude = 0.0 +sun_angle_min = 1.0 +sun_angle_max = 100.0 +sun_curve = 0.05 +sun_energy = 16.0 +texture_size = 2 + +[resource] + +background_mode = 2 +background_sky = SubResource( 1 ) +background_sky_custom_fov = 0.0 +background_color = Color( 0, 0, 0, 1 ) +background_energy = 1.0 +background_canvas_max_layer = 0 +ambient_light_color = Color( 0, 0, 0, 1 ) +ambient_light_energy = 1.0 +ambient_light_sky_contribution = 1.0 +fog_enabled = false +fog_color = Color( 0.5, 0.6, 0.7, 1 ) +fog_sun_color = Color( 1, 0.9, 0.7, 1 ) +fog_sun_amount = 0.0 +fog_depth_enabled = true +fog_depth_begin = 10.0 +fog_depth_curve = 1.0 +fog_transmit_enabled = false +fog_transmit_curve = 1.0 +fog_height_enabled = false +fog_height_min = 0.0 +fog_height_max = 100.0 +fog_height_curve = 1.0 +tonemap_mode = 0 +tonemap_exposure = 1.0 +tonemap_white = 1.0 +auto_exposure_enabled = false +auto_exposure_scale = 0.4 +auto_exposure_min_luma = 0.05 +auto_exposure_max_luma = 8.0 +auto_exposure_speed = 0.5 +ss_reflections_enabled = false +ss_reflections_max_steps = 64 +ss_reflections_fade_in = 0.15 +ss_reflections_fade_out = 2.0 +ss_reflections_depth_tolerance = 0.2 +ss_reflections_roughness = true +ssao_enabled = false +ssao_radius = 1.0 +ssao_intensity = 1.0 +ssao_radius2 = 0.0 +ssao_intensity2 = 1.0 +ssao_bias = 0.01 +ssao_light_affect = 0.0 +ssao_color = Color( 0, 0, 0, 1 ) +ssao_quality = 0 +ssao_blur = 3 +ssao_edge_sharpness = 4.0 +dof_blur_far_enabled = false +dof_blur_far_distance = 10.0 +dof_blur_far_transition = 5.0 +dof_blur_far_amount = 0.1 +dof_blur_far_quality = 1 +dof_blur_near_enabled = false +dof_blur_near_distance = 2.0 +dof_blur_near_transition = 1.0 +dof_blur_near_amount = 0.1 +dof_blur_near_quality = 1 +glow_enabled = false +glow_levels/1 = false +glow_levels/2 = false +glow_levels/3 = true +glow_levels/4 = false +glow_levels/5 = true +glow_levels/6 = false +glow_levels/7 = false +glow_intensity = 0.8 +glow_strength = 1.0 +glow_bloom = 0.0 +glow_blend_mode = 2 +glow_hdr_threshold = 1.0 +glow_hdr_scale = 2.0 +glow_bicubic_upscale = false +adjustment_enabled = false +adjustment_brightness = 1.0 +adjustment_contrast = 1.0 +adjustment_saturation = 1.0 + diff --git a/icon.png b/icon.png new file mode 100644 index 0000000..16375fe Binary files /dev/null and b/icon.png differ diff --git a/icon.png.import b/icon.png.import new file mode 100644 index 0000000..16a03f6 --- /dev/null +++ b/icon.png.import @@ -0,0 +1,32 @@ +[remap] + +importer="texture" +type="StreamTexture" +path="res://.import/icon.png-487276ed1e3a0c39cad0279d744ee560.stex" + +[deps] + +source_file="res://icon.png" +source_md5="0cf2e9053a7ce77785854b245c1d7234" + +dest_files=[ "res://.import/icon.png-487276ed1e3a0c39cad0279d744ee560.stex" ] +dest_md5="7feea93afeb6e0700da875252fe97eec" + +[params] + +compress/mode=0 +compress/lossy_quality=0.7 +compress/hdr_mode=0 +compress/normal_map=0 +flags/repeat=0 +flags/filter=true +flags/mipmaps=false +flags/anisotropic=false +flags/srgb=2 +process/fix_alpha_border=true +process/premult_alpha=false +process/HDR_as_SRGB=false +stream=false +size_limit=0 +detect_3d=true +svg/scale=1.0 diff --git a/project.godot b/project.godot new file mode 100644 index 0000000..f4961fc --- /dev/null +++ b/project.godot @@ -0,0 +1,24 @@ +; Engine configuration file. +; It's best edited using the editor UI and not directly, +; since the parameters that go here are not all obvious. +; +; Format: +; [section] ; section goes between [] +; param=value ; assign values to parameters + +config_version=3 + +[application] + +config/name="Lens Flare Demo" +run/main_scene="res://LensFlare.tscn" +config/icon="res://icon.png" + +[editor_plugins] + +enabled=PoolStringArray( "SIsilicon.vfx.lens flare" ) + +[rendering] + +environment/default_environment="res://default_env.tres" +quality/dynamic_fonts/use_oversampling=true