Skip to content

Commit e709b3f

Browse files
committed
Revert "ignoring non essential files"
This reverts commit 227682d.
1 parent 66b7484 commit e709b3f

File tree

4 files changed

+59
-5
lines changed

4 files changed

+59
-5
lines changed

.gitignore

-5
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,3 @@ export_presets.cfg
66

77
# Mono-specific ignores
88
.mono/
9-
10-
# Ignoring Project Files
11-
main.tscn
12-
default_env.tres
13-
project.godot

default_env.tres

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
[gd_resource type="Environment" load_steps=2 format=2]
2+
3+
[sub_resource type="ProceduralSky" id=1]
4+
radiance_size = 4
5+
sky_top_color = Color( 0.0470588, 0.454902, 0.976471, 1 )
6+
sky_horizon_color = Color( 0.556863, 0.823529, 0.909804, 1 )
7+
sky_curve = 0.25
8+
ground_bottom_color = Color( 0.101961, 0.145098, 0.188235, 1 )
9+
ground_horizon_color = Color( 0.482353, 0.788235, 0.952941, 1 )
10+
ground_curve = 0.01
11+
sun_energy = 16.0
12+
13+
[resource]
14+
background_mode = 2
15+
background_sky = SubResource( 1 )
16+
fog_height_min = 0.0
17+
fog_height_max = 100.0
18+
ssao_quality = 0

main.tscn

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
[gd_scene load_steps=5 format=3 uid="uid://03quolqd33yr"]
2+
3+
[ext_resource type="Texture2D" uid="uid://mblnkohmbep2" path="res://line.png" id="1_f0p7k"]
4+
[ext_resource type="Script" path="res://addons/LineRenderer/line_renderer.gd" id="2_c14b5"]
5+
6+
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_r4qrb"]
7+
albedo_texture = ExtResource("1_f0p7k")
8+
9+
[sub_resource type="ArrayMesh" id="ArrayMesh_c4ena"]
10+
11+
[node name="Node3D" type="Node3D"]
12+
13+
[node name="MeshInstance3D" type="MeshInstance3D" parent="."]
14+
material_override = SubResource("StandardMaterial3D_r4qrb")
15+
mesh = SubResource("ArrayMesh_c4ena")
16+
script = ExtResource("2_c14b5")
17+
startThickness = 1.0
18+
endThickness = 1.0
19+
20+
[node name="Camera3D" type="Camera3D" parent="MeshInstance3D"]
21+
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 2.31369)

project.godot

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
; Engine configuration file.
2+
; It's best edited using the editor UI and not directly,
3+
; since the parameters that go here are not all obvious.
4+
;
5+
; Format:
6+
; [section] ; section goes between []
7+
; param=value ; assign values to parameters
8+
9+
config_version=5
10+
11+
[application]
12+
13+
config/name="LineRenderer Demo"
14+
run/main_scene="res://main.tscn"
15+
config/features=PackedStringArray("4.2")
16+
config/icon="res://icon.png"
17+
18+
[rendering]
19+
20+
environment/default_environment="res://default_env.tres"

0 commit comments

Comments
 (0)