Compare commits
2 Commits
rev_ffabbr
...
8fb89a6e14
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
8fb89a6e14 | ||
|
|
9681fc31f5 |
@@ -6,24 +6,19 @@ uniform vec4 albedo_color : source_color = vec4(0.1, 0.1, 0.1, 1.0);
|
|||||||
|
|
||||||
global uniform float global_wind_strength;
|
global uniform float global_wind_strength;
|
||||||
global uniform float global_wind_speed;
|
global uniform float global_wind_speed;
|
||||||
global uniform float global_wind_fade;
|
|
||||||
|
|
||||||
void vertex() {
|
void vertex() {
|
||||||
//COLOR.r is the drawing. 0 -> lampost (no move); 1.0 is the center of the wire
|
//COLOR.r is the drawing. 0 -> lampost (no move); 1.0 is the center of the wire
|
||||||
float movement = COLOR.r;
|
float movement = COLOR.r;
|
||||||
float wind_amount = global_wind_strength * global_wind_fade;
|
|
||||||
|
|
||||||
//Create a wave (based on position and time to be random)
|
//Create a wave (based on position and time to be random)
|
||||||
float wind_wave = 0.0;
|
float wind_wave = 0.0;
|
||||||
float vertical_wave = 0.0;
|
if (global_wind_speed > 0.0 && global_wind_strength > 0.0) {
|
||||||
if (global_wind_speed > 0.0 && wind_amount > 0.0) {
|
wind_wave = sin(TIME * global_wind_speed + NODE_POSITION_WORLD.x * 0.5) * global_wind_strength;
|
||||||
wind_wave = sin(TIME * global_wind_speed + NODE_POSITION_WORLD.x * 0.5 + NODE_POSITION_WORLD.z * 0.35) * wind_amount;
|
|
||||||
vertical_wave = sin(TIME * global_wind_speed * 0.7 + NODE_POSITION_WORLD.z * 0.35) * wind_amount;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
VERTEX.x += wind_wave * 0.28 * movement;
|
VERTEX.x += wind_wave * 0.1 * movement;
|
||||||
VERTEX.y += vertical_wave * 0.125 * movement;
|
VERTEX.z += wind_wave * 0.05 * movement;
|
||||||
VERTEX.z += wind_wave * 0.24 * movement;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void fragment() {
|
void fragment() {
|
||||||
|
|||||||
@@ -2,7 +2,6 @@ shader_type canvas_item;
|
|||||||
|
|
||||||
uniform sampler2D screen_texture : hint_screen_texture, filter_linear_mipmap;
|
uniform sampler2D screen_texture : hint_screen_texture, filter_linear_mipmap;
|
||||||
global uniform float global_wind_speed;
|
global uniform float global_wind_speed;
|
||||||
global uniform float global_wind_fade;
|
|
||||||
|
|
||||||
uniform vec4 dust_color : source_color = vec4(1.0, 0.456, 0.125, 0.6);
|
uniform vec4 dust_color : source_color = vec4(1.0, 0.456, 0.125, 0.6);
|
||||||
|
|
||||||
@@ -31,7 +30,7 @@ void fragment() {
|
|||||||
float base_time = TIME * dust_speed;
|
float base_time = TIME * dust_speed;
|
||||||
|
|
||||||
vec2 osc = vec2(sin(TIME * 0.5), cos(TIME * 0.3)) * wind_oscillation;
|
vec2 osc = vec2(sin(TIME * 0.5), cos(TIME * 0.3)) * wind_oscillation;
|
||||||
float wind_active = global_wind_fade * step(0.0001, abs(global_wind_speed));
|
float wind_active = step(0.0001, abs(global_wind_speed));
|
||||||
vec2 final_wind = ((wind_speed + osc) * dust_speed) * wind_active;
|
vec2 final_wind = ((wind_speed + osc) * dust_speed) * wind_active;
|
||||||
|
|
||||||
float final_particle_alpha = 0.0;
|
float final_particle_alpha = 0.0;
|
||||||
|
|||||||
@@ -5,7 +5,6 @@ global uniform float global_wind_speed;
|
|||||||
global uniform vec2 global_wind_direction;
|
global uniform vec2 global_wind_direction;
|
||||||
global uniform float global_wind_scale;
|
global uniform float global_wind_scale;
|
||||||
global uniform float global_wind_strength;
|
global uniform float global_wind_strength;
|
||||||
global uniform float global_wind_fade;
|
|
||||||
global uniform float global_snow_start_time;
|
global uniform float global_snow_start_time;
|
||||||
global uniform float global_snow_accumulation_speed;
|
global uniform float global_snow_accumulation_speed;
|
||||||
global uniform float global_snow_melt_time;
|
global uniform float global_snow_melt_time;
|
||||||
@@ -44,12 +43,12 @@ void vertex() {
|
|||||||
vec3 instance_pos = MODEL_MATRIX[3].xyz;
|
vec3 instance_pos = MODEL_MATRIX[3].xyz;
|
||||||
|
|
||||||
float total_angle = radians(rotation_degrees);
|
float total_angle = radians(rotation_degrees);
|
||||||
if (wind_enabled && global_wind_speed > 0.0 && global_wind_strength > 0.0 && global_wind_fade > 0.0) {
|
if (wind_enabled && global_wind_speed > 0.0 && global_wind_strength > 0.0) {
|
||||||
float time = TIME * global_wind_speed;
|
float time = TIME * global_wind_speed;
|
||||||
vec2 noise_uv = (instance_pos.xz * global_wind_scale) + (time * global_wind_direction * 0.5);
|
vec2 noise_uv = (instance_pos.xz * global_wind_scale) + (time * global_wind_direction * 0.5);
|
||||||
float noise_val = textureLod(wind_noise, noise_uv, 2.0).r;
|
float noise_val = textureLod(wind_noise, noise_uv, 2.0).r;
|
||||||
float sway = sin(time + (noise_val * 10.0));
|
float sway = sin(time + (noise_val * 10.0));
|
||||||
total_angle += (sway * global_wind_strength * global_wind_fade);
|
total_angle += (sway * global_wind_strength);
|
||||||
}
|
}
|
||||||
|
|
||||||
float h_factor = clamp((instance_pos.y - height_min) / (height_max - height_min), 0.0, 1.0);
|
float h_factor = clamp((instance_pos.y - height_min) / (height_max - height_min), 0.0, 1.0);
|
||||||
|
|||||||
@@ -42,13 +42,8 @@ var actual_snow_amount: float = 0.0
|
|||||||
|
|
||||||
var is_storm: bool = false
|
var is_storm: bool = false
|
||||||
var cold_tween: Tween
|
var cold_tween: Tween
|
||||||
var wind_tween: Tween
|
|
||||||
var is_windy: bool = false
|
var is_windy: bool = false
|
||||||
var thereare_fireflies: bool = false
|
var thereare_fireflies: bool = false
|
||||||
var current_wind_speed: float = 0.0
|
|
||||||
var current_wind_strength: float = 0.0
|
|
||||||
var current_wind_fade: float = 0.0
|
|
||||||
var max_wind_amount: int = 0
|
|
||||||
|
|
||||||
func _init(wind: GPUParticles3D, snow: GPUParticles3D,
|
func _init(wind: GPUParticles3D, snow: GPUParticles3D,
|
||||||
fireflies: GPUParticles3D, rain: GPUParticles3D, ray: PackedScene,
|
fireflies: GPUParticles3D, rain: GPUParticles3D, ray: PackedScene,
|
||||||
@@ -66,7 +61,6 @@ func _init(wind: GPUParticles3D, snow: GPUParticles3D,
|
|||||||
environment_shadows = envshadows
|
environment_shadows = envshadows
|
||||||
environment = theenvironment
|
environment = theenvironment
|
||||||
environment_config = environmentconfig
|
environment_config = environmentconfig
|
||||||
max_wind_amount = environment_config.wind_amount if environment_config != null else 0
|
|
||||||
camera = thecamera
|
camera = thecamera
|
||||||
camera_pivot = thecamerapivot
|
camera_pivot = thecamerapivot
|
||||||
thunder_sounds = thundersounds
|
thunder_sounds = thundersounds
|
||||||
@@ -97,7 +91,6 @@ func _ready() -> void:
|
|||||||
UIEvents.toggle_rain.connect(toggle_rain)
|
UIEvents.toggle_rain.connect(toggle_rain)
|
||||||
UIEvents.toggle_snow.connect(toggle_snow)
|
UIEvents.toggle_snow.connect(toggle_snow)
|
||||||
UIEvents.toggle_wind.connect(toggle_wind)
|
UIEvents.toggle_wind.connect(toggle_wind)
|
||||||
UIEvents.wind_change.connect(change_wind_strength)
|
|
||||||
UIEvents.toggle_fireflies.connect(toggle_fireflies)
|
UIEvents.toggle_fireflies.connect(toggle_fireflies)
|
||||||
UIEvents.toggle_storm.connect(toggle_storm)
|
UIEvents.toggle_storm.connect(toggle_storm)
|
||||||
UIEvents.toggle_dust.connect(toggle_dust)
|
UIEvents.toggle_dust.connect(toggle_dust)
|
||||||
@@ -310,7 +303,6 @@ func toggle_wind(value: bool):
|
|||||||
|
|
||||||
#disable wind and set default values and materials
|
#disable wind and set default values and materials
|
||||||
func init_wind():
|
func init_wind():
|
||||||
_update_wind_amount_from_strength(environment_config.wind_strength)
|
|
||||||
if particles_wind:
|
if particles_wind:
|
||||||
particles_wind.visible = true
|
particles_wind.visible = true
|
||||||
particles_wind.emitting = false
|
particles_wind.emitting = false
|
||||||
@@ -342,73 +334,16 @@ func _apply_wind_config() -> void:
|
|||||||
proc_mat_wind.direction = wind_axis
|
proc_mat_wind.direction = wind_axis
|
||||||
particles_wind.global_transform = Transform3D(Basis(wind_cross, wind_axis, wind_up), particles_wind.global_position)
|
particles_wind.global_transform = Transform3D(Basis(wind_cross, wind_axis, wind_up), particles_wind.global_position)
|
||||||
|
|
||||||
_apply_wind_state(true)
|
_apply_wind_state()
|
||||||
|
|
||||||
func _apply_wind_state(immediate: bool = false) -> void:
|
func _apply_wind_state() -> void:
|
||||||
if environment_config == null:
|
if environment_config == null:
|
||||||
return
|
return
|
||||||
|
|
||||||
if wind_tween and wind_tween.is_valid():
|
|
||||||
wind_tween.kill()
|
|
||||||
|
|
||||||
var active_wind_speed := environment_config.wind_speed if is_windy else 0.0
|
var active_wind_speed := environment_config.wind_speed if is_windy else 0.0
|
||||||
var active_wind_strength := environment_config.wind_strength if is_windy else 0.0
|
var active_wind_strength := environment_config.wind_strength if is_windy else 0.0
|
||||||
var active_wind_fade := 1.0 if is_windy else 0.0
|
RenderingServer.global_shader_parameter_set("global_wind_speed", active_wind_speed)
|
||||||
if immediate:
|
RenderingServer.global_shader_parameter_set("global_wind_strength", active_wind_strength)
|
||||||
_set_current_wind_speed(active_wind_speed)
|
|
||||||
_set_current_wind_strength(active_wind_strength)
|
|
||||||
_set_current_wind_fade(active_wind_fade)
|
|
||||||
return
|
|
||||||
|
|
||||||
_set_current_wind_speed(environment_config.wind_speed)
|
|
||||||
_set_current_wind_strength(environment_config.wind_strength)
|
|
||||||
wind_tween = create_tween()
|
|
||||||
wind_tween.tween_method(_set_current_wind_fade, current_wind_fade, active_wind_fade, environment_config.wind_fade_in_out_time)
|
|
||||||
wind_tween.tween_callback(_finish_wind_fade_out)
|
|
||||||
|
|
||||||
func _set_current_wind_speed(value: float) -> void:
|
|
||||||
current_wind_speed = value
|
|
||||||
RenderingServer.global_shader_parameter_set("global_wind_speed", value)
|
|
||||||
|
|
||||||
func _set_current_wind_strength(value: float) -> void:
|
|
||||||
current_wind_strength = value
|
|
||||||
RenderingServer.global_shader_parameter_set("global_wind_strength", value)
|
|
||||||
|
|
||||||
func _set_current_wind_fade(value: float) -> void:
|
|
||||||
current_wind_fade = value
|
|
||||||
RenderingServer.global_shader_parameter_set("global_wind_fade", value)
|
|
||||||
|
|
||||||
func _finish_wind_fade_out() -> void:
|
|
||||||
if is_windy:
|
|
||||||
return
|
|
||||||
|
|
||||||
_set_current_wind_speed(0.0)
|
|
||||||
_set_current_wind_strength(0.0)
|
|
||||||
_set_current_wind_fade(0.0)
|
|
||||||
|
|
||||||
func change_wind_strength(value: float) -> void:
|
|
||||||
if environment_config == null:
|
|
||||||
return
|
|
||||||
|
|
||||||
environment_config.wind_strength = value
|
|
||||||
_update_wind_amount_from_strength(value)
|
|
||||||
if is_windy or current_wind_fade > 0.0:
|
|
||||||
_set_current_wind_strength(value)
|
|
||||||
if particles_wind:
|
|
||||||
particles_wind.amount = environment_config.wind_amount
|
|
||||||
|
|
||||||
func _update_wind_amount_from_strength(value: float) -> void:
|
|
||||||
if environment_config == null:
|
|
||||||
return
|
|
||||||
if max_wind_amount <= 0:
|
|
||||||
max_wind_amount = max(environment_config.wind_amount, 1)
|
|
||||||
|
|
||||||
var normalized_strength: float = clamp(value, 0.0, 1.0)
|
|
||||||
var amount_ratio: float = normalized_strength
|
|
||||||
if normalized_strength > 0.0 and normalized_strength < 0.3:
|
|
||||||
amount_ratio = lerp(0.08, 0.25, normalized_strength / 0.3)
|
|
||||||
|
|
||||||
environment_config.wind_amount = roundi(max_wind_amount * amount_ratio)
|
|
||||||
|
|
||||||
func _apply_cloud_config() -> void:
|
func _apply_cloud_config() -> void:
|
||||||
var dir = environment_config.wind_direction
|
var dir = environment_config.wind_direction
|
||||||
|
|||||||
@@ -157,7 +157,6 @@ extends Resource
|
|||||||
@export var cloud_speed: float = 0.05 #Cloud movement speed in sky shader
|
@export var cloud_speed: float = 0.05 #Cloud movement speed in sky shader
|
||||||
@export_range(0.01, 1.0) var cloud_scale_envshadows_rate: float = 0.01 #Cloud scale multiplier for environment shadows
|
@export_range(0.01, 1.0) var cloud_scale_envshadows_rate: float = 0.01 #Cloud scale multiplier for environment shadows
|
||||||
@export_range(0.01, 1.0) var cloud_speed_envshadows_rate: float = 0.5 #Cloud speed multiplier for environment shadows
|
@export_range(0.01, 1.0) var cloud_speed_envshadows_rate: float = 0.5 #Cloud speed multiplier for environment shadows
|
||||||
@export var wind_fade_in_out_time: float = 1.2 #fade out to time when wind is turned off or when is turned on
|
|
||||||
|
|
||||||
#Firefly settings (visible only at night)
|
#Firefly settings (visible only at night)
|
||||||
@export_group("Fireflies")
|
@export_group("Fireflies")
|
||||||
|
|||||||
@@ -8,8 +8,6 @@ signal toggle_snow(value: bool)
|
|||||||
@warning_ignore("unused_signal")
|
@warning_ignore("unused_signal")
|
||||||
signal toggle_wind(value: bool)
|
signal toggle_wind(value: bool)
|
||||||
@warning_ignore("unused_signal")
|
@warning_ignore("unused_signal")
|
||||||
signal wind_change(value: float)
|
|
||||||
@warning_ignore("unused_signal")
|
|
||||||
signal toggle_fireflies(value: bool)
|
signal toggle_fireflies(value: bool)
|
||||||
@warning_ignore("unused_signal")
|
@warning_ignore("unused_signal")
|
||||||
signal toggle_storm(value: bool)
|
signal toggle_storm(value: bool)
|
||||||
|
|||||||
@@ -9,7 +9,7 @@
|
|||||||
[ext_resource type="PackedScene" uid="uid://cv5xmnow451kl" path="res://core/camera.tscn" id="5_8tojn"]
|
[ext_resource type="PackedScene" uid="uid://cv5xmnow451kl" path="res://core/camera.tscn" id="5_8tojn"]
|
||||||
[ext_resource type="PackedScene" uid="uid://botm0dqtr5whb" path="res://docs/museums/daynight/scenes/chunk_c_e_1/chunk_c_e_1.tscn" id="6_21usy"]
|
[ext_resource type="PackedScene" uid="uid://botm0dqtr5whb" path="res://docs/museums/daynight/scenes/chunk_c_e_1/chunk_c_e_1.tscn" id="6_21usy"]
|
||||||
[ext_resource type="Script" uid="uid://dboerd4a6dwj7" path="res://docs/museums/biome_generator/rails.gd" id="6_pypsn"]
|
[ext_resource type="Script" uid="uid://dboerd4a6dwj7" path="res://docs/museums/biome_generator/rails.gd" id="6_pypsn"]
|
||||||
[ext_resource type="PackedScene" uid="uid://dvk3bytqn3m5s" path="res://docs/museums/biome_generator/main_train.tscn" id="6_wjpfq"]
|
[ext_resource type="PackedScene" uid="uid://dvk3bytqn3m5s" path="res://tgcc/train/main_train.tscn" id="6_wjpfq"]
|
||||||
[ext_resource type="PackedScene" uid="uid://givg3dyrxsk5" path="res://docs/museums/daynight/scenes/chunk_c_f_1/chunk_c_f_1.tscn" id="7_qe84w"]
|
[ext_resource type="PackedScene" uid="uid://givg3dyrxsk5" path="res://docs/museums/daynight/scenes/chunk_c_f_1/chunk_c_f_1.tscn" id="7_qe84w"]
|
||||||
[ext_resource type="PackedScene" uid="uid://0kgjaqijaqku" path="res://docs/museums/biome_generator/rails.tscn" id="8_mb5yv"]
|
[ext_resource type="PackedScene" uid="uid://0kgjaqijaqku" path="res://docs/museums/biome_generator/rails.tscn" id="8_mb5yv"]
|
||||||
[ext_resource type="PackedScene" uid="uid://bi12g5nj421jv" path="res://docs/museums/daynight/scenes/chunk_f_e_1/chunk_f_e_1.tscn" id="8_qe84w"]
|
[ext_resource type="PackedScene" uid="uid://bi12g5nj421jv" path="res://docs/museums/daynight/scenes/chunk_f_e_1/chunk_f_e_1.tscn" id="8_qe84w"]
|
||||||
@@ -225,21 +225,12 @@ theme_override_colors/font_hover_pressed_color = Color(1, 1, 1, 1)
|
|||||||
theme_override_colors/font_outline_color = Color(1, 1, 1, 1)
|
theme_override_colors/font_outline_color = Color(1, 1, 1, 1)
|
||||||
text = "Wind"
|
text = "Wind"
|
||||||
|
|
||||||
[node name="WindSlider" type="HSlider" parent="Control" unique_id=28050098]
|
|
||||||
layout_mode = 0
|
|
||||||
offset_left = 26.0
|
|
||||||
offset_top = 124.0
|
|
||||||
offset_right = 205.0
|
|
||||||
offset_bottom = 140.0
|
|
||||||
max_value = 1.0
|
|
||||||
step = 0.01
|
|
||||||
|
|
||||||
[node name="Fireflies" type="CheckButton" parent="Control" unique_id=1046228444]
|
[node name="Fireflies" type="CheckButton" parent="Control" unique_id=1046228444]
|
||||||
layout_mode = 0
|
layout_mode = 0
|
||||||
offset_left = 21.0
|
offset_left = 21.0
|
||||||
offset_top = 169.0
|
offset_top = 115.0
|
||||||
offset_right = 130.0
|
offset_right = 130.0
|
||||||
offset_bottom = 200.0
|
offset_bottom = 146.0
|
||||||
theme_override_colors/font_color = Color(1, 1, 1, 1)
|
theme_override_colors/font_color = Color(1, 1, 1, 1)
|
||||||
theme_override_colors/font_focus_color = Color(1, 1, 1, 1)
|
theme_override_colors/font_focus_color = Color(1, 1, 1, 1)
|
||||||
theme_override_colors/font_pressed_color = Color(1, 1, 1, 1)
|
theme_override_colors/font_pressed_color = Color(1, 1, 1, 1)
|
||||||
@@ -275,18 +266,18 @@ text = "Time 00:00"
|
|||||||
[node name="DayTimeSlider" type="HSlider" parent="Control" unique_id=1865778345]
|
[node name="DayTimeSlider" type="HSlider" parent="Control" unique_id=1865778345]
|
||||||
layout_mode = 0
|
layout_mode = 0
|
||||||
offset_left = 26.0
|
offset_left = 26.0
|
||||||
offset_top = 228.0
|
offset_top = 174.0
|
||||||
offset_right = 205.0
|
offset_right = 205.0
|
||||||
offset_bottom = 244.0
|
offset_bottom = 190.0
|
||||||
max_value = 1.0
|
max_value = 1.0
|
||||||
step = 0.01
|
step = 0.01
|
||||||
|
|
||||||
[node name="Dust" type="CheckButton" parent="Control" unique_id=760281365]
|
[node name="Dust" type="CheckButton" parent="Control" unique_id=760281365]
|
||||||
layout_mode = 0
|
layout_mode = 0
|
||||||
offset_left = 21.0
|
offset_left = 21.0
|
||||||
offset_top = 304.0
|
offset_top = 250.0
|
||||||
offset_right = 150.0
|
offset_right = 150.0
|
||||||
offset_bottom = 335.0
|
offset_bottom = 281.0
|
||||||
theme_override_colors/font_color = Color(1, 1, 1, 1)
|
theme_override_colors/font_color = Color(1, 1, 1, 1)
|
||||||
theme_override_colors/font_focus_color = Color(1, 1, 1, 1)
|
theme_override_colors/font_focus_color = Color(1, 1, 1, 1)
|
||||||
theme_override_colors/font_pressed_color = Color(1, 1, 1, 1)
|
theme_override_colors/font_pressed_color = Color(1, 1, 1, 1)
|
||||||
@@ -299,9 +290,9 @@ text = "Dust"
|
|||||||
[node name="Blur" type="CheckButton" parent="Control" unique_id=1083708100]
|
[node name="Blur" type="CheckButton" parent="Control" unique_id=1083708100]
|
||||||
layout_mode = 0
|
layout_mode = 0
|
||||||
offset_left = 21.0
|
offset_left = 21.0
|
||||||
offset_top = 332.0
|
offset_top = 278.0
|
||||||
offset_right = 150.0
|
offset_right = 150.0
|
||||||
offset_bottom = 363.0
|
offset_bottom = 309.0
|
||||||
theme_override_colors/font_color = Color(1, 1, 1, 1)
|
theme_override_colors/font_color = Color(1, 1, 1, 1)
|
||||||
theme_override_colors/font_focus_color = Color(1, 1, 1, 1)
|
theme_override_colors/font_focus_color = Color(1, 1, 1, 1)
|
||||||
theme_override_colors/font_pressed_color = Color(1, 1, 1, 1)
|
theme_override_colors/font_pressed_color = Color(1, 1, 1, 1)
|
||||||
@@ -314,9 +305,9 @@ text = "Blur"
|
|||||||
[node name="Pause" type="CheckButton" parent="Control" unique_id=1587043871]
|
[node name="Pause" type="CheckButton" parent="Control" unique_id=1587043871]
|
||||||
layout_mode = 0
|
layout_mode = 0
|
||||||
offset_left = 21.0
|
offset_left = 21.0
|
||||||
offset_top = 243.0
|
offset_top = 189.0
|
||||||
offset_right = 158.0
|
offset_right = 158.0
|
||||||
offset_bottom = 274.0
|
offset_bottom = 220.0
|
||||||
theme_override_colors/font_color = Color(1, 1, 1, 1)
|
theme_override_colors/font_color = Color(1, 1, 1, 1)
|
||||||
theme_override_colors/font_focus_color = Color(1, 1, 1, 1)
|
theme_override_colors/font_focus_color = Color(1, 1, 1, 1)
|
||||||
theme_override_colors/font_pressed_color = Color(1, 1, 1, 1)
|
theme_override_colors/font_pressed_color = Color(1, 1, 1, 1)
|
||||||
@@ -328,9 +319,9 @@ text = "Pause Time"
|
|||||||
[node name="Shadows" type="CheckButton" parent="Control" unique_id=283354318]
|
[node name="Shadows" type="CheckButton" parent="Control" unique_id=283354318]
|
||||||
layout_mode = 0
|
layout_mode = 0
|
||||||
offset_left = 21.0
|
offset_left = 21.0
|
||||||
offset_top = 356.0
|
offset_top = 302.0
|
||||||
offset_right = 150.0
|
offset_right = 150.0
|
||||||
offset_bottom = 387.0
|
offset_bottom = 333.0
|
||||||
theme_override_colors/font_color = Color(1, 1, 1, 1)
|
theme_override_colors/font_color = Color(1, 1, 1, 1)
|
||||||
theme_override_colors/font_focus_color = Color(1, 1, 1, 1)
|
theme_override_colors/font_focus_color = Color(1, 1, 1, 1)
|
||||||
theme_override_colors/font_pressed_color = Color(1, 1, 1, 1)
|
theme_override_colors/font_pressed_color = Color(1, 1, 1, 1)
|
||||||
@@ -343,22 +334,19 @@ text = "Shadows"
|
|||||||
[node name="Guide" type="Label" parent="Control" unique_id=2121474959]
|
[node name="Guide" type="Label" parent="Control" unique_id=2121474959]
|
||||||
layout_mode = 0
|
layout_mode = 0
|
||||||
offset_left = 26.0
|
offset_left = 26.0
|
||||||
offset_top = 401.0
|
offset_top = 347.0
|
||||||
offset_right = 339.0
|
offset_right = 236.0
|
||||||
offset_bottom = 606.0
|
offset_bottom = 474.0
|
||||||
text = "R-> Reset isometric camera
|
text = "R-> Reset isometric camera
|
||||||
C-> Toggle cinematic mode
|
C-> Toggle cinematic mode
|
||||||
Z-> soft zoom
|
Z-> soft zoom
|
||||||
Manual controls (1-5)
|
Manual controls (1-5)
|
||||||
T -> go to next stop
|
T -> go to next stop
|
||||||
F -> fireworks
|
F -> fireworks"
|
||||||
BACKSPACE -> stop train
|
|
||||||
ARROW UP/DOWN -> change train speed"
|
|
||||||
|
|
||||||
[connection signal="toggled" from="Control/Snow" to="Control" method="_on_snow_toggled"]
|
[connection signal="toggled" from="Control/Snow" to="Control" method="_on_snow_toggled"]
|
||||||
[connection signal="toggled" from="Control/Rain" to="Control" method="_on_rain_toggled"]
|
[connection signal="toggled" from="Control/Rain" to="Control" method="_on_rain_toggled"]
|
||||||
[connection signal="toggled" from="Control/Wind" to="Control" method="_on_wind_toggled"]
|
[connection signal="toggled" from="Control/Wind" to="Control" method="_on_wind_toggled"]
|
||||||
[connection signal="value_changed" from="Control/WindSlider" to="Control" method="_on_wind_slider_value_changed"]
|
|
||||||
[connection signal="toggled" from="Control/Fireflies" to="Control" method="_on_fireflies_toggled"]
|
[connection signal="toggled" from="Control/Fireflies" to="Control" method="_on_fireflies_toggled"]
|
||||||
[connection signal="toggled" from="Control/Storm" to="Control" method="_on_storm_toggled"]
|
[connection signal="toggled" from="Control/Storm" to="Control" method="_on_storm_toggled"]
|
||||||
[connection signal="value_changed" from="Control/DayTimeSlider" to="Control" method="_on_day_time_slider_value_changed"]
|
[connection signal="value_changed" from="Control/DayTimeSlider" to="Control" method="_on_day_time_slider_value_changed"]
|
||||||
|
|||||||
@@ -168,8 +168,6 @@ func input_controls_management(delta: float) -> void:
|
|||||||
train_speed += manual_acceleration * delta
|
train_speed += manual_acceleration * delta
|
||||||
elif Input.is_action_pressed("ui_down"):
|
elif Input.is_action_pressed("ui_down"):
|
||||||
train_speed -= manual_acceleration * delta
|
train_speed -= manual_acceleration * delta
|
||||||
elif Input.is_action_pressed("ui_text_backspace"):
|
|
||||||
train_speed = 0
|
|
||||||
train_speed = clamp(train_speed, speed_min, speed_max)
|
train_speed = clamp(train_speed, speed_min, speed_max)
|
||||||
|
|
||||||
func train_move(delta: float) -> void:
|
func train_move(delta: float) -> void:
|
||||||
|
|||||||
@@ -3,13 +3,10 @@ extends Control
|
|||||||
@onready var day_night: EnvironmentManagerRoot = get_node_or_null("../DayNight") as EnvironmentManagerRoot
|
@onready var day_night: EnvironmentManagerRoot = get_node_or_null("../DayNight") as EnvironmentManagerRoot
|
||||||
@onready var day_time_label: Label = $DayTimeLabel
|
@onready var day_time_label: Label = $DayTimeLabel
|
||||||
@onready var day_time_slider: HSlider = $DayTimeSlider
|
@onready var day_time_slider: HSlider = $DayTimeSlider
|
||||||
@onready var wind_slider: HSlider = get_node_or_null("WindSlider") as HSlider
|
|
||||||
|
|
||||||
|
|
||||||
func _ready() -> void:
|
func _ready() -> void:
|
||||||
UIEvents.day_time_changed.connect(_on_day_time_changed)
|
UIEvents.day_time_changed.connect(_on_day_time_changed)
|
||||||
if day_night != null and day_night.environment_config != null and wind_slider != null:
|
|
||||||
wind_slider.set_value_no_signal(day_night.environment_config.wind_strength)
|
|
||||||
_sync_day_time_ui()
|
_sync_day_time_ui()
|
||||||
|
|
||||||
func _on_rain_toggled(toggled_on: bool) -> void:
|
func _on_rain_toggled(toggled_on: bool) -> void:
|
||||||
@@ -21,9 +18,6 @@ func _on_snow_toggled(toggled_on: bool) -> void:
|
|||||||
func _on_wind_toggled(toggled_on: bool) -> void:
|
func _on_wind_toggled(toggled_on: bool) -> void:
|
||||||
UIEvents.toggle_wind.emit(toggled_on)
|
UIEvents.toggle_wind.emit(toggled_on)
|
||||||
|
|
||||||
func _on_wind_slider_value_changed(value: float) -> void:
|
|
||||||
UIEvents.wind_change.emit(value)
|
|
||||||
|
|
||||||
func _on_fireflies_toggled(toggled_on: bool) -> void:
|
func _on_fireflies_toggled(toggled_on: bool) -> void:
|
||||||
UIEvents.toggle_fireflies.emit(toggled_on)
|
UIEvents.toggle_fireflies.emit(toggled_on)
|
||||||
|
|
||||||
|
|||||||
@@ -16,7 +16,7 @@
|
|||||||
[ext_resource type="PackedScene" uid="uid://jj15telqu3rp" path="res://docs/museums/daynight/scenes/grass_test/grass_test.tscn" id="7_pd1r3"]
|
[ext_resource type="PackedScene" uid="uid://jj15telqu3rp" path="res://docs/museums/daynight/scenes/grass_test/grass_test.tscn" id="7_pd1r3"]
|
||||||
[ext_resource type="PackedScene" uid="uid://bonjxfjcdnntt" path="res://docs/museums/daynight/scenes/grain_test/grain_test.tscn" id="7_w3se4"]
|
[ext_resource type="PackedScene" uid="uid://bonjxfjcdnntt" path="res://docs/museums/daynight/scenes/grain_test/grain_test.tscn" id="7_w3se4"]
|
||||||
[ext_resource type="PackedScene" uid="uid://cahsl77384kf1" path="res://docs/museums/daynight/scenes/chunk_c_f_1/house_muraglione.tscn" id="9_pd1r3"]
|
[ext_resource type="PackedScene" uid="uid://cahsl77384kf1" path="res://docs/museums/daynight/scenes/chunk_c_f_1/house_muraglione.tscn" id="9_pd1r3"]
|
||||||
[ext_resource type="PackedScene" uid="uid://d12t04rs47jq3" path="res://docs/museums/daynight/scenes/grain_test/tree_v1.tscn" id="13_d5ghv"]
|
[ext_resource type="PackedScene" uid="uid://d12t04rs47jq3" path="res://tgcc/chunk/prop/tree/tree_01.tscn" id="13_d5ghv"]
|
||||||
[ext_resource type="PackedScene" uid="uid://dte4p23pp14pv" path="res://docs/museums/daynight/scenes/chunk_c_f_1/house_xl_4.tscn" id="15_28c1g"]
|
[ext_resource type="PackedScene" uid="uid://dte4p23pp14pv" path="res://docs/museums/daynight/scenes/chunk_c_f_1/house_xl_4.tscn" id="15_28c1g"]
|
||||||
[ext_resource type="PackedScene" uid="uid://dpstb26gs581l" path="res://docs/museums/daynight/scenes/mountain_test/chunck_m_n_o_e_s_2.tscn" id="18_iu8wf"]
|
[ext_resource type="PackedScene" uid="uid://dpstb26gs581l" path="res://docs/museums/daynight/scenes/mountain_test/chunck_m_n_o_e_s_2.tscn" id="18_iu8wf"]
|
||||||
[ext_resource type="PackedScene" uid="uid://botm0dqtr5whb" path="res://docs/museums/daynight/scenes/chunk_c_e_1/chunk_c_e_1.tscn" id="19_ftvlo"]
|
[ext_resource type="PackedScene" uid="uid://botm0dqtr5whb" path="res://docs/museums/daynight/scenes/chunk_c_e_1/chunk_c_e_1.tscn" id="19_ftvlo"]
|
||||||
@@ -220,9 +220,9 @@ text = "Storm"
|
|||||||
[node name="DayTimeLabel" type="Label" parent="Control" unique_id=1673596218]
|
[node name="DayTimeLabel" type="Label" parent="Control" unique_id=1673596218]
|
||||||
layout_mode = 0
|
layout_mode = 0
|
||||||
offset_left = 26.0
|
offset_left = 26.0
|
||||||
offset_top = 172.0
|
offset_top = 150.0
|
||||||
offset_right = 360.0
|
offset_right = 360.0
|
||||||
offset_bottom = 195.0
|
offset_bottom = 173.0
|
||||||
theme_override_colors/font_color = Color(1, 1, 1, 1)
|
theme_override_colors/font_color = Color(1, 1, 1, 1)
|
||||||
theme_override_colors/font_outline_color = Color(1, 1, 1, 1)
|
theme_override_colors/font_outline_color = Color(1, 1, 1, 1)
|
||||||
text = "Time 00:00"
|
text = "Time 00:00"
|
||||||
@@ -230,18 +230,18 @@ text = "Time 00:00"
|
|||||||
[node name="DayTimeSlider" type="HSlider" parent="Control" unique_id=530788076]
|
[node name="DayTimeSlider" type="HSlider" parent="Control" unique_id=530788076]
|
||||||
layout_mode = 0
|
layout_mode = 0
|
||||||
offset_left = 26.0
|
offset_left = 26.0
|
||||||
offset_top = 196.0
|
offset_top = 174.0
|
||||||
offset_right = 205.0
|
offset_right = 205.0
|
||||||
offset_bottom = 212.0
|
offset_bottom = 190.0
|
||||||
max_value = 1.0
|
max_value = 1.0
|
||||||
step = 0.01
|
step = 0.01
|
||||||
|
|
||||||
[node name="Dust" type="CheckButton" parent="Control" unique_id=2023312048]
|
[node name="Dust" type="CheckButton" parent="Control" unique_id=2023312048]
|
||||||
layout_mode = 0
|
layout_mode = 0
|
||||||
offset_left = 21.0
|
offset_left = 21.0
|
||||||
offset_top = 272.0
|
offset_top = 250.0
|
||||||
offset_right = 150.0
|
offset_right = 150.0
|
||||||
offset_bottom = 303.0
|
offset_bottom = 281.0
|
||||||
theme_override_colors/font_color = Color(1, 1, 1, 1)
|
theme_override_colors/font_color = Color(1, 1, 1, 1)
|
||||||
theme_override_colors/font_focus_color = Color(1, 1, 1, 1)
|
theme_override_colors/font_focus_color = Color(1, 1, 1, 1)
|
||||||
theme_override_colors/font_pressed_color = Color(1, 1, 1, 1)
|
theme_override_colors/font_pressed_color = Color(1, 1, 1, 1)
|
||||||
@@ -254,9 +254,9 @@ text = "Dust"
|
|||||||
[node name="Blur" type="CheckButton" parent="Control" unique_id=1758807681]
|
[node name="Blur" type="CheckButton" parent="Control" unique_id=1758807681]
|
||||||
layout_mode = 0
|
layout_mode = 0
|
||||||
offset_left = 21.0
|
offset_left = 21.0
|
||||||
offset_top = 300.0
|
offset_top = 278.0
|
||||||
offset_right = 150.0
|
offset_right = 150.0
|
||||||
offset_bottom = 331.0
|
offset_bottom = 309.0
|
||||||
theme_override_colors/font_color = Color(1, 1, 1, 1)
|
theme_override_colors/font_color = Color(1, 1, 1, 1)
|
||||||
theme_override_colors/font_focus_color = Color(1, 1, 1, 1)
|
theme_override_colors/font_focus_color = Color(1, 1, 1, 1)
|
||||||
theme_override_colors/font_pressed_color = Color(1, 1, 1, 1)
|
theme_override_colors/font_pressed_color = Color(1, 1, 1, 1)
|
||||||
@@ -269,9 +269,9 @@ text = "Blur"
|
|||||||
[node name="Pause" type="CheckButton" parent="Control" unique_id=156986934]
|
[node name="Pause" type="CheckButton" parent="Control" unique_id=156986934]
|
||||||
layout_mode = 0
|
layout_mode = 0
|
||||||
offset_left = 21.0
|
offset_left = 21.0
|
||||||
offset_top = 211.0
|
offset_top = 189.0
|
||||||
offset_right = 158.0
|
offset_right = 158.0
|
||||||
offset_bottom = 242.0
|
offset_bottom = 220.0
|
||||||
theme_override_colors/font_color = Color(1, 1, 1, 1)
|
theme_override_colors/font_color = Color(1, 1, 1, 1)
|
||||||
theme_override_colors/font_focus_color = Color(1, 1, 1, 1)
|
theme_override_colors/font_focus_color = Color(1, 1, 1, 1)
|
||||||
theme_override_colors/font_pressed_color = Color(1, 1, 1, 1)
|
theme_override_colors/font_pressed_color = Color(1, 1, 1, 1)
|
||||||
@@ -283,9 +283,9 @@ text = "Pause Time"
|
|||||||
[node name="Shadows" type="CheckButton" parent="Control" unique_id=1751516495]
|
[node name="Shadows" type="CheckButton" parent="Control" unique_id=1751516495]
|
||||||
layout_mode = 0
|
layout_mode = 0
|
||||||
offset_left = 21.0
|
offset_left = 21.0
|
||||||
offset_top = 324.0
|
offset_top = 302.0
|
||||||
offset_right = 150.0
|
offset_right = 150.0
|
||||||
offset_bottom = 355.0
|
offset_bottom = 333.0
|
||||||
theme_override_colors/font_color = Color(1, 1, 1, 1)
|
theme_override_colors/font_color = Color(1, 1, 1, 1)
|
||||||
theme_override_colors/font_focus_color = Color(1, 1, 1, 1)
|
theme_override_colors/font_focus_color = Color(1, 1, 1, 1)
|
||||||
theme_override_colors/font_pressed_color = Color(1, 1, 1, 1)
|
theme_override_colors/font_pressed_color = Color(1, 1, 1, 1)
|
||||||
@@ -295,27 +295,18 @@ theme_override_colors/font_outline_color = Color(1, 1, 1, 1)
|
|||||||
button_pressed = true
|
button_pressed = true
|
||||||
text = "Shadows"
|
text = "Shadows"
|
||||||
|
|
||||||
[node name="WindSlider" type="HSlider" parent="Control" unique_id=25258103]
|
|
||||||
layout_mode = 0
|
|
||||||
offset_left = 26.0
|
|
||||||
offset_top = 146.0
|
|
||||||
offset_right = 205.0
|
|
||||||
offset_bottom = 162.0
|
|
||||||
max_value = 1.0
|
|
||||||
step = 0.01
|
|
||||||
|
|
||||||
[node name="Scene" type="Node" parent="." unique_id=701973010]
|
[node name="Scene" type="Node" parent="." unique_id=701973010]
|
||||||
|
|
||||||
[node name="Grass2" parent="Scene" unique_id=838519336 instance=ExtResource("7_pd1r3")]
|
[node name="Grass2" parent="Scene" unique_id=838519336 instance=ExtResource("7_pd1r3")]
|
||||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0.22852254, -28)
|
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0.22852254, -28)
|
||||||
|
|
||||||
[node name="TreeTest3" parent="Scene" unique_id=1013890218 instance=ExtResource("13_d5ghv")]
|
[node name="TreeTest3" parent="Scene" unique_id=525095435 instance=ExtResource("13_d5ghv")]
|
||||||
transform = Transform3D(1.7, 0, 0, 0, 1.7, 0, 0, 0, 1.7, 0, 0, -29.149174)
|
transform = Transform3D(1.7, 0, 0, 0, 1.7, 0, 0, 0, 1.7, 0, 0, -29.149174)
|
||||||
|
|
||||||
[node name="Grass" parent="Scene" unique_id=2101001918 instance=ExtResource("7_pd1r3")]
|
[node name="Grass" parent="Scene" unique_id=1567530286 instance=ExtResource("7_pd1r3")]
|
||||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0.22236729, -14)
|
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0.22236729, -14)
|
||||||
|
|
||||||
[node name="Grain" parent="Scene" unique_id=1171350762 instance=ExtResource("7_w3se4")]
|
[node name="Grain" parent="Scene" unique_id=1891403256 instance=ExtResource("7_w3se4")]
|
||||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0.48330832, 0)
|
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0.48330832, 0)
|
||||||
|
|
||||||
[node name="House_Muraglione" parent="Scene" unique_id=1060427946 instance=ExtResource("9_pd1r3")]
|
[node name="House_Muraglione" parent="Scene" unique_id=1060427946 instance=ExtResource("9_pd1r3")]
|
||||||
@@ -340,4 +331,3 @@ transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 23)
|
|||||||
[connection signal="toggled" from="Control/Blur" to="Control" method="_on_blur_toggled"]
|
[connection signal="toggled" from="Control/Blur" to="Control" method="_on_blur_toggled"]
|
||||||
[connection signal="toggled" from="Control/Pause" to="Control" method="_on_pause_toggled"]
|
[connection signal="toggled" from="Control/Pause" to="Control" method="_on_pause_toggled"]
|
||||||
[connection signal="toggled" from="Control/Shadows" to="Control" method="_on_shadows_toggled"]
|
[connection signal="toggled" from="Control/Shadows" to="Control" method="_on_shadows_toggled"]
|
||||||
[connection signal="value_changed" from="Control/WindSlider" to="Control" method="_on_wind_slider_value_changed"]
|
|
||||||
|
|||||||
@@ -2,7 +2,7 @@
|
|||||||
|
|
||||||
[ext_resource type="PackedScene" uid="uid://7ktyjmbw1lw2" path="res://docs/museums/daynight/scenes/chunk_c_e_1/test_bordisentiero.fbx" id="1_gkuoy"]
|
[ext_resource type="PackedScene" uid="uid://7ktyjmbw1lw2" path="res://docs/museums/daynight/scenes/chunk_c_e_1/test_bordisentiero.fbx" id="1_gkuoy"]
|
||||||
[ext_resource type="Shader" uid="uid://cs0xl7pc6e26h" path="res://core/daynight/tree_leaves.gdshader" id="2_1g7yt"]
|
[ext_resource type="Shader" uid="uid://cs0xl7pc6e26h" path="res://core/daynight/tree_leaves.gdshader" id="2_1g7yt"]
|
||||||
[ext_resource type="Texture2D" uid="uid://c3grftlmap4q5" path="res://docs/museums/daynight/scenes/grain_test/leaf_test.png" id="3_d2h5c"]
|
[ext_resource type="Texture2D" uid="uid://c3grftlmap4q5" path="res://tgcc/chunk/prop/tree/leaf1_alpha.png" id="3_d2h5c"]
|
||||||
|
|
||||||
[sub_resource type="ShaderMaterial" id="ShaderMaterial_ta3rv"]
|
[sub_resource type="ShaderMaterial" id="ShaderMaterial_ta3rv"]
|
||||||
render_priority = 0
|
render_priority = 0
|
||||||
|
|||||||
@@ -2,8 +2,8 @@
|
|||||||
|
|
||||||
[ext_resource type="PackedScene" uid="uid://7ktyjmbw1lw2" path="res://docs/museums/daynight/scenes/chunk_c_e_1/test_bordisentiero.fbx" id="1_dvg25"]
|
[ext_resource type="PackedScene" uid="uid://7ktyjmbw1lw2" path="res://docs/museums/daynight/scenes/chunk_c_e_1/test_bordisentiero.fbx" id="1_dvg25"]
|
||||||
[ext_resource type="Shader" uid="uid://cs0xl7pc6e26h" path="res://core/daynight/tree_leaves.gdshader" id="2_try56"]
|
[ext_resource type="Shader" uid="uid://cs0xl7pc6e26h" path="res://core/daynight/tree_leaves.gdshader" id="2_try56"]
|
||||||
[ext_resource type="Texture2D" uid="uid://c3grftlmap4q5" path="res://docs/museums/daynight/scenes/grain_test/leaf_test.png" id="3_2lnj1"]
|
[ext_resource type="Texture2D" uid="uid://c3grftlmap4q5" path="res://tgcc/chunk/prop/tree/leaf1_alpha.png" id="3_2lnj1"]
|
||||||
[ext_resource type="Texture2D" uid="uid://cse6q7vqf14xo" path="res://docs/museums/daynight/scenes/grass_test/leaf_test2.png" id="4_65mlm"]
|
[ext_resource type="Texture2D" uid="uid://cse6q7vqf14xo" path="res://tgcc/chunk/prop/grass/rice_alpha.png" id="4_65mlm"]
|
||||||
|
|
||||||
[sub_resource type="ShaderMaterial" id="ShaderMaterial_ta3rv"]
|
[sub_resource type="ShaderMaterial" id="ShaderMaterial_ta3rv"]
|
||||||
render_priority = 0
|
render_priority = 0
|
||||||
|
|||||||
@@ -1,15 +1,15 @@
|
|||||||
[gd_scene format=4 uid="uid://qrvty6mbmr2m"]
|
[gd_scene format=4 uid="uid://qrvty6mbmr2m"]
|
||||||
|
|
||||||
[ext_resource type="PackedScene" uid="uid://bu13utuvlgwpm" path="res://docs/museums/daynight/scenes/chunk_c_e_1/test_orto_big.fbx" id="1_c6jbn"]
|
[ext_resource type="PackedScene" uid="uid://bu13utuvlgwpm" path="res://docs/museums/daynight/scenes/chunk_c_e_1/test_orto_big.fbx" id="1_c6jbn"]
|
||||||
[ext_resource type="Material" path="res://docs/museums/daynight/scenes/mountain_test/trainchunk.tres" id="2_cjbh2"]
|
[ext_resource type="Material" uid="uid://d1xcve6aswe3d" path="res://docs/museums/daynight/scenes/mountain_test/trainchunk.tres" id="2_cjbh2"]
|
||||||
[ext_resource type="Shader" uid="uid://dh3j2jp6defuk" path="res://core/daynight/weather_overlay.gdshader" id="3_ltw7m"]
|
[ext_resource type="Shader" uid="uid://dh3j2jp6defuk" path="res://core/daynight/weather_overlay.gdshader" id="3_ltw7m"]
|
||||||
[ext_resource type="PackedScene" uid="uid://cssg8wjbp4p38" path="res://docs/museums/daynight/scenes/chunk_c_e_1/bordi_sentiero_angoloesterno.tscn" id="3_y3s3s"]
|
[ext_resource type="PackedScene" uid="uid://cssg8wjbp4p38" path="res://docs/museums/daynight/scenes/chunk_c_e_1/bordi_sentiero_angoloesterno.tscn" id="3_y3s3s"]
|
||||||
[ext_resource type="PackedScene" uid="uid://bfvtlpkcnbgke" path="res://docs/museums/daynight/scenes/chunk_c_e_1/bordi_sentiero_rettilineo.tscn" id="4_4svd4"]
|
[ext_resource type="PackedScene" uid="uid://bfvtlpkcnbgke" path="res://docs/museums/daynight/scenes/chunk_c_e_1/bordi_sentiero_rettilineo.tscn" id="4_4svd4"]
|
||||||
[ext_resource type="Material" uid="uid://2p8yqqg44ci3" path="res://docs/museums/daynight/scenes/grain_test/grain.tres" id="5_080fg"]
|
[ext_resource type="Material" uid="uid://2p8yqqg44ci3" path="res://docs/museums/daynight/scenes/grain_test/grain.tres" id="5_080fg"]
|
||||||
[ext_resource type="Texture2D" uid="uid://c0lstspvtbxxw" path="res://docs/museums/daynight/scenes/chunk_c_e_1/grass_round.png" id="7_jnepa"]
|
[ext_resource type="Texture2D" uid="uid://c0lstspvtbxxw" path="res://docs/museums/daynight/scenes/chunk_c_e_1/grass_round.png" id="7_jnepa"]
|
||||||
[ext_resource type="Shader" uid="uid://cs0xl7pc6e26h" path="res://core/daynight/tree_leaves.gdshader" id="7_le2fi"]
|
[ext_resource type="Shader" uid="uid://cs0xl7pc6e26h" path="res://core/daynight/tree_leaves.gdshader" id="7_le2fi"]
|
||||||
[ext_resource type="PackedScene" uid="uid://igbtt2ypx0ks" path="res://docs/museums/daynight/scenes/fences.tscn" id="8_jnepa"]
|
[ext_resource type="PackedScene" uid="uid://igbtt2ypx0ks" path="res://tgcc/chunk/prop/fence/fences.tscn" id="8_jnepa"]
|
||||||
[ext_resource type="Material" uid="uid://wkegx4a21x7u" path="res://docs/museums/daynight/scenes/fences.tres" id="9_f73au"]
|
[ext_resource type="Material" uid="uid://wkegx4a21x7u" path="res://tgcc/chunk/prop/fence/fences.tres" id="9_f73au"]
|
||||||
|
|
||||||
[sub_resource type="ShaderMaterial" id="ShaderMaterial_qtaoh"]
|
[sub_resource type="ShaderMaterial" id="ShaderMaterial_qtaoh"]
|
||||||
|
|
||||||
|
|||||||
@@ -7,10 +7,10 @@
|
|||||||
[ext_resource type="PackedScene" uid="uid://cl8c5n0nw30u" path="res://docs/museums/daynight/scenes/chunk_c_f_1/house_xl_4.fbx" id="5_tf2ul"]
|
[ext_resource type="PackedScene" uid="uid://cl8c5n0nw30u" path="res://docs/museums/daynight/scenes/chunk_c_f_1/house_xl_4.fbx" id="5_tf2ul"]
|
||||||
[ext_resource type="PackedScene" uid="uid://dsh55bqjfrqfp" path="res://docs/museums/daynight/scenes/chunk_c_f_1/chunk_c_f_1.fbx" id="6_4h5ax"]
|
[ext_resource type="PackedScene" uid="uid://dsh55bqjfrqfp" path="res://docs/museums/daynight/scenes/chunk_c_f_1/chunk_c_f_1.fbx" id="6_4h5ax"]
|
||||||
[ext_resource type="Shader" uid="uid://btf3qpe7kwqig" path="res://core/snow.gdshader" id="7_wr3vc"]
|
[ext_resource type="Shader" uid="uid://btf3qpe7kwqig" path="res://core/snow.gdshader" id="7_wr3vc"]
|
||||||
[ext_resource type="Material" path="res://docs/museums/daynight/scenes/chunk_c_f_1/sentiero.tres" id="7_y2p7p"]
|
[ext_resource type="Material" uid="uid://couj6glsrm6h3" path="res://docs/museums/daynight/scenes/chunk_f_l_2/path.tres" id="7_y2p7p"]
|
||||||
[ext_resource type="PackedScene" uid="uid://dyolu5m0lgqm2" path="res://docs/museums/daynight/scenes/chunk_c_f_1/tori_gate.tscn" id="9_ji5rd"]
|
[ext_resource type="PackedScene" uid="uid://dyolu5m0lgqm2" path="res://docs/museums/daynight/scenes/chunk_c_f_1/tori_gate.tscn" id="9_ji5rd"]
|
||||||
[ext_resource type="PackedScene" uid="uid://jj15telqu3rp" path="res://docs/museums/daynight/scenes/grass_test/grass_test.tscn" id="9_s470o"]
|
[ext_resource type="PackedScene" uid="uid://jj15telqu3rp" path="res://docs/museums/daynight/scenes/grass_test/grass_test.tscn" id="9_s470o"]
|
||||||
[ext_resource type="PackedScene" uid="uid://d12t04rs47jq3" path="res://docs/museums/daynight/scenes/grain_test/tree_v1.tscn" id="10_ji5rd"]
|
[ext_resource type="PackedScene" uid="uid://d12t04rs47jq3" path="res://tgcc/chunk/prop/tree/tree_01.tscn" id="10_ji5rd"]
|
||||||
[ext_resource type="PackedScene" uid="uid://b6f7gaoatj420" path="res://docs/museums/daynight/scenes/chunk_f_l_2/column_blockout.tscn" id="11_4n1py"]
|
[ext_resource type="PackedScene" uid="uid://b6f7gaoatj420" path="res://docs/museums/daynight/scenes/chunk_f_l_2/column_blockout.tscn" id="11_4n1py"]
|
||||||
[ext_resource type="PackedScene" uid="uid://bfvtlpkcnbgke" path="res://docs/museums/daynight/scenes/chunk_c_e_1/bordi_sentiero_rettilineo.tscn" id="12_rrcoc"]
|
[ext_resource type="PackedScene" uid="uid://bfvtlpkcnbgke" path="res://docs/museums/daynight/scenes/chunk_c_e_1/bordi_sentiero_rettilineo.tscn" id="12_rrcoc"]
|
||||||
|
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
[gd_scene format=3 uid="uid://cahsl77384kf1"]
|
[gd_scene format=3 uid="uid://cahsl77384kf1"]
|
||||||
|
|
||||||
[ext_resource type="PackedScene" uid="uid://dllpmxm6ttwg" path="res://docs/museums/daynight/scenes/chunk_c_f_1/house_Muraglione.fbx" id="1_m4ocs"]
|
[ext_resource type="PackedScene" uid="uid://dllpmxm6ttwg" path="res://docs/museums/daynight/scenes/chunk_c_f_1/house_Muraglione.fbx" id="1_m4ocs"]
|
||||||
[ext_resource type="Material" uid="uid://biaudrjlfoflm" path="res://docs/museums/daynight/scenes/chunk_c_f_1/house.tres" id="2_7l0dg"]
|
[ext_resource type="Material" uid="uid://biaudrjlfoflm" path="res://tgcc/chunk/prop/house/house.tres" id="2_7l0dg"]
|
||||||
|
|
||||||
[sub_resource type="ShaderMaterial" id="ShaderMaterial_bdf8l"]
|
[sub_resource type="ShaderMaterial" id="ShaderMaterial_bdf8l"]
|
||||||
|
|
||||||
|
|||||||
@@ -1,9 +1,9 @@
|
|||||||
[gd_scene format=3 uid="uid://dte4p23pp14pv"]
|
[gd_scene format=3 uid="uid://dte4p23pp14pv"]
|
||||||
|
|
||||||
[ext_resource type="PackedScene" uid="uid://cl8c5n0nw30u" path="res://docs/museums/daynight/scenes/chunk_c_f_1/house_xl_4.fbx" id="1_r3art"]
|
[ext_resource type="PackedScene" uid="uid://cl8c5n0nw30u" path="res://docs/museums/daynight/scenes/chunk_c_f_1/house_xl_4.fbx" id="1_r3art"]
|
||||||
[ext_resource type="Material" uid="uid://biaudrjlfoflm" path="res://docs/museums/daynight/scenes/chunk_c_f_1/house.tres" id="2_mswf7"]
|
[ext_resource type="Material" uid="uid://biaudrjlfoflm" path="res://tgcc/chunk/prop/house/house.tres" id="2_mswf7"]
|
||||||
[ext_resource type="Shader" uid="uid://dh3j2jp6defuk" path="res://core/daynight/weather_overlay.gdshader" id="2_wanxj"]
|
[ext_resource type="Shader" uid="uid://dh3j2jp6defuk" path="res://core/daynight/weather_overlay.gdshader" id="2_wanxj"]
|
||||||
[ext_resource type="Material" uid="uid://dbmyfi5t0yfy" path="res://docs/museums/daynight/scenes/chunk_c_f_1/house_emissiv.tres" id="3_n3fsy"]
|
[ext_resource type="Material" uid="uid://dbmyfi5t0yfy" path="res://tgcc/chunk/prop/house/house_emissiv.tres" id="3_n3fsy"]
|
||||||
|
|
||||||
[sub_resource type="Gradient" id="Gradient_n4qy2"]
|
[sub_resource type="Gradient" id="Gradient_n4qy2"]
|
||||||
offsets = PackedFloat32Array(0.9980237, 1)
|
offsets = PackedFloat32Array(0.9980237, 1)
|
||||||
|
|||||||
|
Before Width: | Height: | Size: 133 KiB |
@@ -2,24 +2,24 @@
|
|||||||
|
|
||||||
[ext_resource type="PackedScene" uid="uid://urkdndr42opv" path="res://docs/museums/daynight/scenes/chunk_c_l_2/chunk_c_l_2.fbx" id="1_lnvvn"]
|
[ext_resource type="PackedScene" uid="uid://urkdndr42opv" path="res://docs/museums/daynight/scenes/chunk_c_l_2/chunk_c_l_2.fbx" id="1_lnvvn"]
|
||||||
[ext_resource type="Script" uid="uid://dg2h4kbqe8j3m" path="res://core/biome_generator/chunk_info.gd" id="2_flg24"]
|
[ext_resource type="Script" uid="uid://dg2h4kbqe8j3m" path="res://core/biome_generator/chunk_info.gd" id="2_flg24"]
|
||||||
[ext_resource type="Material" path="res://docs/museums/daynight/scenes/chunk_c_l_2/argini.tres" id="3_mo772"]
|
[ext_resource type="Material" uid="uid://cs7owfgg600jg" path="res://docs/museums/daynight/scenes/chunk_c_l_2/argini.tres" id="3_mo772"]
|
||||||
[ext_resource type="Material" path="res://docs/museums/daynight/scenes/chunk_c_l_2/grass_chunk.tres" id="4_1xy4j"]
|
[ext_resource type="Material" uid="uid://cit5uciejjoou" path="res://docs/museums/daynight/scenes/chunk_c_l_2/grass_chunk.tres" id="4_1xy4j"]
|
||||||
[ext_resource type="Material" path="res://docs/museums/daynight/scenes/chunk_c_l_2/sentiero_rotaie.tres" id="4_raxwl"]
|
[ext_resource type="Material" uid="uid://768v64kvq6ho" path="res://docs/museums/daynight/scenes/chunk_c_l_2/sentiero_rotaie.tres" id="4_raxwl"]
|
||||||
[ext_resource type="Material" uid="uid://ce0bdk3mx2xao" path="res://docs/museums/daynight/scenes/chunk_c_l_2/water_toon.tres" id="6_flg24"]
|
[ext_resource type="Material" uid="uid://ce0bdk3mx2xao" path="res://tgcc/chunk/material/water_chunk.tres" id="6_flg24"]
|
||||||
[ext_resource type="Shader" uid="uid://8l8glwvvs7fb" path="res://core/daynight/grass_leaves.gdshader" id="6_m8njj"]
|
[ext_resource type="Shader" uid="uid://8l8glwvvs7fb" path="res://core/daynight/grass_leaves.gdshader" id="6_m8njj"]
|
||||||
[ext_resource type="Material" uid="uid://bjrb33qwp1p43" path="res://docs/museums/daynight/scenes/grass_test/grass3.tres" id="6_mo772"]
|
[ext_resource type="Material" uid="uid://bjrb33qwp1p43" path="res://tgcc/chunk/prop/grass/grass_chunk_weeds.tres" id="6_mo772"]
|
||||||
[ext_resource type="Material" uid="uid://jygb1hcokks5" path="res://docs/museums/daynight/scenes/chunk_c_l_2/grass_argini.tres" id="8_flg24"]
|
[ext_resource type="Material" uid="uid://jygb1hcokks5" path="res://tgcc/chunk/prop/grass/grass_bank.tres" id="8_flg24"]
|
||||||
[ext_resource type="Material" uid="uid://c4f4kkaosra1q" path="res://docs/museums/daynight/scenes/chunk_c_l_2/grass2.tres" id="8_oo6g6"]
|
[ext_resource type="Material" uid="uid://c4f4kkaosra1q" path="res://docs/museums/daynight/scenes/chunk_c_l_2/grass2.tres" id="8_oo6g6"]
|
||||||
[ext_resource type="Texture2D" uid="uid://b1rkjv3g17cbe" path="res://docs/museums/daynight/scenes/chunk_c_l_2/level_7.png" id="8_yo0h1"]
|
[ext_resource type="Texture2D" uid="uid://b1rkjv3g17cbe" path="res://docs/museums/daynight/scenes/chunk_c_l_2/level_7.png" id="8_yo0h1"]
|
||||||
[ext_resource type="PackedScene" path="res://docs/museums/daynight/scenes/chunk_c_l_2/rock.tscn" id="9_11318"]
|
[ext_resource type="PackedScene" uid="uid://cnk16oeotexu1" path="res://docs/museums/daynight/scenes/chunk_c_l_2/rock.tscn" id="9_11318"]
|
||||||
[ext_resource type="PackedScene" uid="uid://d18n7qknm8wpy" path="res://docs/museums/daynight/scenes/chunk_c_l_2/house_c_2.tscn" id="9_oo6g6"]
|
[ext_resource type="PackedScene" uid="uid://d18n7qknm8wpy" path="res://docs/museums/daynight/scenes/chunk_c_l_2/house_c_2.tscn" id="9_oo6g6"]
|
||||||
[ext_resource type="Shader" uid="uid://cs0xl7pc6e26h" path="res://core/daynight/tree_leaves.gdshader" id="10_qykev"]
|
[ext_resource type="Shader" uid="uid://cs0xl7pc6e26h" path="res://core/daynight/tree_leaves.gdshader" id="10_qykev"]
|
||||||
[ext_resource type="Texture2D" uid="uid://cjd56jcb8n670" path="res://docs/museums/daynight/scenes/chunk_c_l_2/leaf_test.png" id="11_2v7dh"]
|
[ext_resource type="Texture2D" uid="uid://cjd56jcb8n670" path="res://docs/museums/daynight/scenes/chunk_c_l_2/leaf_test.png" id="11_2v7dh"]
|
||||||
[ext_resource type="PackedScene" uid="uid://igbtt2ypx0ks" path="res://docs/museums/daynight/scenes/fences.tscn" id="15_oimno"]
|
[ext_resource type="PackedScene" uid="uid://igbtt2ypx0ks" path="res://tgcc/chunk/prop/fence/fences.tscn" id="15_oimno"]
|
||||||
[ext_resource type="Material" uid="uid://wkegx4a21x7u" path="res://docs/museums/daynight/scenes/fences.tres" id="16_26pld"]
|
[ext_resource type="Material" uid="uid://wkegx4a21x7u" path="res://tgcc/chunk/prop/fence/fences.tres" id="16_26pld"]
|
||||||
[ext_resource type="Shader" uid="uid://btf3qpe7kwqig" path="res://core/snow.gdshader" id="17_11318"]
|
[ext_resource type="Shader" uid="uid://btf3qpe7kwqig" path="res://core/snow.gdshader" id="17_11318"]
|
||||||
[ext_resource type="PackedScene" uid="uid://bavwumq7gdfe7" path="res://docs/museums/daynight/scenes/chunk_c_l_2/sk_mannequin.fbx" id="18_26pld"]
|
[ext_resource type="PackedScene" uid="uid://bavwumq7gdfe7" path="res://docs/museums/daynight/scenes/chunk_c_l_2/sk_mannequin.fbx" id="18_26pld"]
|
||||||
[ext_resource type="PackedScene" uid="uid://c87qfar8b0ak0" path="res://docs/museums/daynight/scenes/chunk_c_l_2/palo_luce.fbx" id="20_raxwl"]
|
[ext_resource type="PackedScene" uid="uid://c87qfar8b0ak0" path="res://tgcc/chunk/prop/pylon/pylon.fbx" id="20_raxwl"]
|
||||||
|
|
||||||
[sub_resource type="ShaderMaterial" id="ShaderMaterial_raxwl"]
|
[sub_resource type="ShaderMaterial" id="ShaderMaterial_raxwl"]
|
||||||
render_priority = 0
|
render_priority = 0
|
||||||
|
|||||||
@@ -1,7 +0,0 @@
|
|||||||
[gd_resource type="ShaderMaterial" format=3 uid="uid://jygb1hcokks5"]
|
|
||||||
|
|
||||||
[ext_resource type="Shader" uid="uid://8l8glwvvs7fb" path="res://core/daynight/grass_leaves.gdshader" id="1_ou76s"]
|
|
||||||
|
|
||||||
[resource]
|
|
||||||
render_priority = 0
|
|
||||||
shader = ExtResource("1_ou76s")
|
|
||||||
@@ -2,8 +2,8 @@
|
|||||||
|
|
||||||
[ext_resource type="PackedScene" uid="uid://dqpvvakfo1x4q" path="res://docs/museums/daynight/scenes/chunk_c_l_2/house_c_2.fbx" id="1_sex0v"]
|
[ext_resource type="PackedScene" uid="uid://dqpvvakfo1x4q" path="res://docs/museums/daynight/scenes/chunk_c_l_2/house_c_2.fbx" id="1_sex0v"]
|
||||||
[ext_resource type="Shader" uid="uid://btf3qpe7kwqig" path="res://core/snow.gdshader" id="2_hrpm1"]
|
[ext_resource type="Shader" uid="uid://btf3qpe7kwqig" path="res://core/snow.gdshader" id="2_hrpm1"]
|
||||||
[ext_resource type="Material" uid="uid://biaudrjlfoflm" path="res://docs/museums/daynight/scenes/chunk_c_f_1/house.tres" id="3_njk5y"]
|
[ext_resource type="Material" uid="uid://biaudrjlfoflm" path="res://tgcc/chunk/prop/house/house.tres" id="3_njk5y"]
|
||||||
[ext_resource type="Material" uid="uid://dbmyfi5t0yfy" path="res://docs/museums/daynight/scenes/chunk_c_f_1/house_emissiv.tres" id="4_wxydh"]
|
[ext_resource type="Material" uid="uid://dbmyfi5t0yfy" path="res://tgcc/chunk/prop/house/house_emissiv.tres" id="4_wxydh"]
|
||||||
|
|
||||||
[sub_resource type="ShaderMaterial" id="ShaderMaterial_14x62"]
|
[sub_resource type="ShaderMaterial" id="ShaderMaterial_14x62"]
|
||||||
render_priority = 0
|
render_priority = 0
|
||||||
|
|||||||
@@ -3,7 +3,7 @@
|
|||||||
[ext_resource type="PackedScene" uid="uid://h5r7ua0kkfqb" path="res://docs/museums/daynight/scenes/chunk_f_e_1/chunk_c_e_1.fbx" id="1_anwxh"]
|
[ext_resource type="PackedScene" uid="uid://h5r7ua0kkfqb" path="res://docs/museums/daynight/scenes/chunk_f_e_1/chunk_c_e_1.fbx" id="1_anwxh"]
|
||||||
[ext_resource type="Script" uid="uid://dg2h4kbqe8j3m" path="res://core/biome_generator/chunk_info.gd" id="2_scq5d"]
|
[ext_resource type="Script" uid="uid://dg2h4kbqe8j3m" path="res://core/biome_generator/chunk_info.gd" id="2_scq5d"]
|
||||||
[ext_resource type="PackedScene" uid="uid://jj15telqu3rp" path="res://docs/museums/daynight/scenes/grass_test/grass_test.tscn" id="4_pynx0"]
|
[ext_resource type="PackedScene" uid="uid://jj15telqu3rp" path="res://docs/museums/daynight/scenes/grass_test/grass_test.tscn" id="4_pynx0"]
|
||||||
[ext_resource type="PackedScene" uid="uid://d12t04rs47jq3" path="res://docs/museums/daynight/scenes/grain_test/tree_v1.tscn" id="5_vyg4h"]
|
[ext_resource type="PackedScene" uid="uid://d12t04rs47jq3" path="res://tgcc/chunk/prop/tree/tree_01.tscn" id="5_vyg4h"]
|
||||||
|
|
||||||
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_pynx0"]
|
[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_pynx0"]
|
||||||
albedo_color = Color(0.3882353, 0.52156866, 0.20784314, 1)
|
albedo_color = Color(0.3882353, 0.52156866, 0.20784314, 1)
|
||||||
|
|||||||
@@ -3,7 +3,7 @@
|
|||||||
[ext_resource type="PackedScene" uid="uid://7ktyjmbw1lw2" path="res://docs/museums/daynight/scenes/chunk_c_e_1/test_bordisentiero.fbx" id="1_dvg25"]
|
[ext_resource type="PackedScene" uid="uid://7ktyjmbw1lw2" path="res://docs/museums/daynight/scenes/chunk_c_e_1/test_bordisentiero.fbx" id="1_dvg25"]
|
||||||
[ext_resource type="Shader" uid="uid://cs0xl7pc6e26h" path="res://core/daynight/tree_leaves.gdshader" id="2_try56"]
|
[ext_resource type="Shader" uid="uid://cs0xl7pc6e26h" path="res://core/daynight/tree_leaves.gdshader" id="2_try56"]
|
||||||
[ext_resource type="Texture2D" uid="uid://bygihc62pho6a" path="res://docs/museums/daynight/scenes/chunk_f_l_2/leaf_test.png" id="3_2lnj1"]
|
[ext_resource type="Texture2D" uid="uid://bygihc62pho6a" path="res://docs/museums/daynight/scenes/chunk_f_l_2/leaf_test.png" id="3_2lnj1"]
|
||||||
[ext_resource type="Texture2D" uid="uid://cse6q7vqf14xo" path="res://docs/museums/daynight/scenes/grass_test/leaf_test2.png" id="4_65mlm"]
|
[ext_resource type="Texture2D" uid="uid://cse6q7vqf14xo" path="res://tgcc/chunk/prop/grass/rice_alpha.png" id="4_65mlm"]
|
||||||
|
|
||||||
[sub_resource type="ShaderMaterial" id="ShaderMaterial_ta3rv"]
|
[sub_resource type="ShaderMaterial" id="ShaderMaterial_ta3rv"]
|
||||||
render_priority = 0
|
render_priority = 0
|
||||||
|
|||||||
@@ -2,21 +2,21 @@
|
|||||||
|
|
||||||
[ext_resource type="PackedScene" uid="uid://rxo4x8lqnpds" path="res://docs/museums/daynight/scenes/chunk_f_l_2/chunk_c_l_2.fbx" id="1_sr7sh"]
|
[ext_resource type="PackedScene" uid="uid://rxo4x8lqnpds" path="res://docs/museums/daynight/scenes/chunk_f_l_2/chunk_c_l_2.fbx" id="1_sr7sh"]
|
||||||
[ext_resource type="Script" uid="uid://dg2h4kbqe8j3m" path="res://core/biome_generator/chunk_info.gd" id="2_5cl6b"]
|
[ext_resource type="Script" uid="uid://dg2h4kbqe8j3m" path="res://core/biome_generator/chunk_info.gd" id="2_5cl6b"]
|
||||||
[ext_resource type="Material" path="res://docs/museums/daynight/scenes/chunk_f_l_2/path.tres" id="3_hj70d"]
|
[ext_resource type="Material" uid="uid://couj6glsrm6h3" path="res://docs/museums/daynight/scenes/chunk_f_l_2/path.tres" id="3_hj70d"]
|
||||||
[ext_resource type="Texture2D" uid="uid://m5it4ge0pgtm" path="res://docs/museums/daynight/scenes/chunk_f_l_2/texture_sentiero.png" id="4_g8efw"]
|
[ext_resource type="Texture2D" uid="uid://m5it4ge0pgtm" path="res://docs/museums/daynight/scenes/chunk_f_l_2/texture_sentiero.png" id="4_g8efw"]
|
||||||
[ext_resource type="Shader" uid="uid://bneoex8xpmcm8" path="res://core/daynight/sky.gdshader" id="4_r7got"]
|
[ext_resource type="Shader" uid="uid://bneoex8xpmcm8" path="res://core/daynight/sky.gdshader" id="4_r7got"]
|
||||||
[ext_resource type="Material" uid="uid://cufolpn48xxmv" path="res://docs/museums/biome_generator/train2.tres" id="5_wgav2"]
|
[ext_resource type="Material" uid="uid://cufolpn48xxmv" path="res://tgcc/train/train2.tres" id="5_wgav2"]
|
||||||
[ext_resource type="PackedScene" uid="uid://jj15telqu3rp" path="res://docs/museums/daynight/scenes/grass_test/grass_test.tscn" id="6_lt21y"]
|
[ext_resource type="PackedScene" uid="uid://jj15telqu3rp" path="res://docs/museums/daynight/scenes/grass_test/grass_test.tscn" id="6_lt21y"]
|
||||||
[ext_resource type="Shader" uid="uid://d0ch5ofrgf7y6" path="res://core/daynight/trunk_shader.gdshader" id="6_xt73x"]
|
[ext_resource type="Shader" uid="uid://d0ch5ofrgf7y6" path="res://core/daynight/trunk_shader.gdshader" id="6_xt73x"]
|
||||||
[ext_resource type="Shader" uid="uid://cs0xl7pc6e26h" path="res://core/daynight/tree_leaves.gdshader" id="8_r7got"]
|
[ext_resource type="Shader" uid="uid://cs0xl7pc6e26h" path="res://core/daynight/tree_leaves.gdshader" id="8_r7got"]
|
||||||
[ext_resource type="Texture2D" uid="uid://c0lstspvtbxxw" path="res://docs/museums/daynight/scenes/chunk_c_e_1/grass_round.png" id="8_td1ds"]
|
[ext_resource type="Texture2D" uid="uid://c0lstspvtbxxw" path="res://docs/museums/daynight/scenes/chunk_c_e_1/grass_round.png" id="8_td1ds"]
|
||||||
[ext_resource type="PackedScene" path="res://docs/museums/daynight/scenes/chunk_f_l_2/border_path_internalangle.tscn" id="9_jn6md"]
|
[ext_resource type="PackedScene" uid="uid://623itnb41wew" path="res://docs/museums/daynight/scenes/chunk_f_l_2/border_path_internalangle.tscn" id="9_jn6md"]
|
||||||
[ext_resource type="PackedScene" path="res://docs/museums/daynight/scenes/chunk_f_l_2/border_path_externalangle.tscn" id="10_flfvy"]
|
[ext_resource type="PackedScene" uid="uid://sybnjir2d05" path="res://docs/museums/daynight/scenes/chunk_f_l_2/border_path_externalangle.tscn" id="10_flfvy"]
|
||||||
[ext_resource type="PackedScene" uid="uid://bfvtlpkcnbgke" path="res://docs/museums/daynight/scenes/chunk_c_e_1/bordi_sentiero_rettilineo.tscn" id="11_v17qr"]
|
[ext_resource type="PackedScene" uid="uid://bfvtlpkcnbgke" path="res://docs/museums/daynight/scenes/chunk_c_e_1/bordi_sentiero_rettilineo.tscn" id="11_v17qr"]
|
||||||
[ext_resource type="PackedScene" uid="uid://dtg6opak36yf8" path="res://docs/museums/daynight/scenes/chunk_f_l_2/sk_mannequin.fbx" id="12_emned"]
|
[ext_resource type="PackedScene" uid="uid://dtg6opak36yf8" path="res://docs/museums/daynight/scenes/chunk_f_l_2/sk_mannequin.fbx" id="12_emned"]
|
||||||
[ext_resource type="PackedScene" uid="uid://igbtt2ypx0ks" path="res://docs/museums/daynight/scenes/fences.tscn" id="14_sg641"]
|
[ext_resource type="PackedScene" uid="uid://igbtt2ypx0ks" path="res://tgcc/chunk/prop/fence/fences.tscn" id="14_sg641"]
|
||||||
[ext_resource type="Material" uid="uid://wkegx4a21x7u" path="res://docs/museums/daynight/scenes/fences.tres" id="15_u5vqi"]
|
[ext_resource type="Material" uid="uid://wkegx4a21x7u" path="res://tgcc/chunk/prop/fence/fences.tres" id="15_u5vqi"]
|
||||||
[ext_resource type="PackedScene" uid="uid://d12t04rs47jq3" path="res://docs/museums/daynight/scenes/grain_test/tree_v1.tscn" id="16_w82ua"]
|
[ext_resource type="PackedScene" uid="uid://d12t04rs47jq3" path="res://tgcc/chunk/prop/tree/tree_01.tscn" id="16_w82ua"]
|
||||||
[ext_resource type="PackedScene" uid="uid://mj15bepbgy02" path="res://docs/museums/daynight/scenes/chunk_f_l_2/house_test_4.tscn" id="17_r7got"]
|
[ext_resource type="PackedScene" uid="uid://mj15bepbgy02" path="res://docs/museums/daynight/scenes/chunk_f_l_2/house_test_4.tscn" id="17_r7got"]
|
||||||
[ext_resource type="PackedScene" uid="uid://b6f7gaoatj420" path="res://docs/museums/daynight/scenes/chunk_f_l_2/column_blockout.tscn" id="19_jqp0n"]
|
[ext_resource type="PackedScene" uid="uid://b6f7gaoatj420" path="res://docs/museums/daynight/scenes/chunk_f_l_2/column_blockout.tscn" id="19_jqp0n"]
|
||||||
|
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
[gd_scene format=3 uid="uid://mj15bepbgy02"]
|
[gd_scene format=3 uid="uid://mj15bepbgy02"]
|
||||||
|
|
||||||
[ext_resource type="PackedScene" uid="uid://d25nuo0iyscu0" path="res://docs/museums/daynight/scenes/chunk_f_l_2/housetest_4.fbx" id="1_03u1s"]
|
[ext_resource type="PackedScene" uid="uid://d25nuo0iyscu0" path="res://docs/museums/daynight/scenes/chunk_f_l_2/housetest_4.fbx" id="1_03u1s"]
|
||||||
[ext_resource type="Material" uid="uid://biaudrjlfoflm" path="res://docs/museums/daynight/scenes/chunk_c_f_1/house.tres" id="2_n4qy2"]
|
[ext_resource type="Material" uid="uid://biaudrjlfoflm" path="res://tgcc/chunk/prop/house/house.tres" id="2_n4qy2"]
|
||||||
[ext_resource type="Shader" uid="uid://btf3qpe7kwqig" path="res://core/snow.gdshader" id="3_n4qy2"]
|
[ext_resource type="Shader" uid="uid://btf3qpe7kwqig" path="res://core/snow.gdshader" id="3_n4qy2"]
|
||||||
|
|
||||||
[sub_resource type="ShaderMaterial" id="ShaderMaterial_0x3ja"]
|
[sub_resource type="ShaderMaterial" id="ShaderMaterial_0x3ja"]
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
[gd_scene format=3 uid="uid://bonjxfjcdnntt"]
|
[gd_scene format=3 uid="uid://bonjxfjcdnntt"]
|
||||||
|
|
||||||
[ext_resource type="PackedScene" uid="uid://e1an0215p6k2" path="res://docs/museums/daynight/scenes/grain_test/tree_v1.fbx" id="1_xx8fk"]
|
[ext_resource type="PackedScene" uid="uid://e1an0215p6k2" path="res://tgcc/chunk/prop/tree/tree_01.fbx" id="1_xx8fk"]
|
||||||
[ext_resource type="Material" uid="uid://2p8yqqg44ci3" path="res://docs/museums/daynight/scenes/grain_test/grain.tres" id="2_nct83"]
|
[ext_resource type="Material" uid="uid://2p8yqqg44ci3" path="res://docs/museums/daynight/scenes/grain_test/grain.tres" id="2_nct83"]
|
||||||
|
|
||||||
[sub_resource type="QuadMesh" id="QuadMesh_rpt6v"]
|
[sub_resource type="QuadMesh" id="QuadMesh_rpt6v"]
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
[gd_resource type="ShaderMaterial" format=3 uid="uid://cudoptcrtgl7u"]
|
[gd_resource type="ShaderMaterial" format=3 uid="uid://cudoptcrtgl7u"]
|
||||||
|
|
||||||
[ext_resource type="Shader" uid="uid://cs0xl7pc6e26h" path="res://core/daynight/tree_leaves.gdshader" id="1_528a5"]
|
[ext_resource type="Shader" uid="uid://cs0xl7pc6e26h" path="res://core/daynight/tree_leaves.gdshader" id="1_528a5"]
|
||||||
[ext_resource type="Texture2D" uid="uid://ckm50mv8ejlki" path="res://docs/museums/daynight/scenes/grass_test/grass_round.png" id="2_4d6mx"]
|
[ext_resource type="Texture2D" uid="uid://ckm50mv8ejlki" path="res://tgcc/chunk/prop/grass/grass_alpha1.png" id="2_4d6mx"]
|
||||||
|
|
||||||
[resource]
|
[resource]
|
||||||
render_priority = 0
|
render_priority = 0
|
||||||
|
|||||||
@@ -1,9 +1,9 @@
|
|||||||
[gd_scene format=3 uid="uid://jj15telqu3rp"]
|
[gd_scene format=3 uid="uid://jj15telqu3rp"]
|
||||||
|
|
||||||
[ext_resource type="PackedScene" uid="uid://e1an0215p6k2" path="res://docs/museums/daynight/scenes/grain_test/tree_v1.fbx" id="1_1rhib"]
|
[ext_resource type="PackedScene" uid="uid://e1an0215p6k2" path="res://tgcc/chunk/prop/tree/tree_01.fbx" id="1_1rhib"]
|
||||||
[ext_resource type="Material" uid="uid://cudoptcrtgl7u" path="res://docs/museums/daynight/scenes/grass_test/grass.tres" id="2_4v7oi"]
|
[ext_resource type="Material" uid="uid://cudoptcrtgl7u" path="res://docs/museums/daynight/scenes/grass_test/grass.tres" id="2_4v7oi"]
|
||||||
[ext_resource type="Material" uid="uid://bjrb33qwp1p43" path="res://docs/museums/daynight/scenes/grass_test/grass3.tres" id="3_aek5d"]
|
[ext_resource type="Material" uid="uid://bjrb33qwp1p43" path="res://tgcc/chunk/prop/grass/grass_chunk_weeds.tres" id="3_aek5d"]
|
||||||
[ext_resource type="Material" uid="uid://0x17mj2v807r" path="res://docs/museums/daynight/scenes/grass_test/grass4.tres" id="4_bawi4"]
|
[ext_resource type="Material" uid="uid://0x17mj2v807r" path="res://tgcc/chunk/prop/grass/grass_chunk_weeds2.tres" id="4_bawi4"]
|
||||||
|
|
||||||
[sub_resource type="QuadMesh" id="QuadMesh_rpt6v"]
|
[sub_resource type="QuadMesh" id="QuadMesh_rpt6v"]
|
||||||
|
|
||||||
|
|||||||
@@ -109,7 +109,3 @@ global_rain_puddle_amount={
|
|||||||
"type": "float",
|
"type": "float",
|
||||||
"value": 0.0
|
"value": 0.0
|
||||||
}
|
}
|
||||||
global_wind_fade={
|
|
||||||
"type": "float",
|
|
||||||
"value": 1.2
|
|
||||||
}
|
|
||||||
|
|||||||
BIN
tgcc/chunk/countryside/mesh/chunk_country_corner_01.fbx
Normal file
@@ -0,0 +1,44 @@
|
|||||||
|
[remap]
|
||||||
|
|
||||||
|
importer="scene"
|
||||||
|
importer_version=1
|
||||||
|
type="PackedScene"
|
||||||
|
uid="uid://cdx81ro0lbv30"
|
||||||
|
path="res://.godot/imported/chunk_country_corner_01.fbx-1e3be947b8fce32fb6be4f061435de52.scn"
|
||||||
|
|
||||||
|
[deps]
|
||||||
|
|
||||||
|
source_file="res://tgcc/chunk/countryside/mesh/chunk_country_corner_01.fbx"
|
||||||
|
dest_files=["res://.godot/imported/chunk_country_corner_01.fbx-1e3be947b8fce32fb6be4f061435de52.scn"]
|
||||||
|
|
||||||
|
[params]
|
||||||
|
|
||||||
|
nodes/root_type=""
|
||||||
|
nodes/root_name=""
|
||||||
|
nodes/root_script=null
|
||||||
|
nodes/apply_root_scale=true
|
||||||
|
nodes/root_scale=1.0
|
||||||
|
nodes/import_as_skeleton_bones=false
|
||||||
|
nodes/use_name_suffixes=true
|
||||||
|
nodes/use_node_type_suffixes=true
|
||||||
|
meshes/ensure_tangents=true
|
||||||
|
meshes/generate_lods=true
|
||||||
|
meshes/create_shadow_meshes=true
|
||||||
|
meshes/light_baking=1
|
||||||
|
meshes/lightmap_texel_size=0.2
|
||||||
|
meshes/force_disable_compression=false
|
||||||
|
skins/use_named_skins=true
|
||||||
|
animation/import=true
|
||||||
|
animation/fps=30
|
||||||
|
animation/trimming=true
|
||||||
|
animation/remove_immutable_tracks=true
|
||||||
|
animation/import_rest_as_RESET=false
|
||||||
|
import_script/path=""
|
||||||
|
materials/extract=0
|
||||||
|
materials/extract_format=0
|
||||||
|
materials/extract_path=""
|
||||||
|
_subresources={}
|
||||||
|
fbx/importer=0
|
||||||
|
fbx/allow_geometry_helper_nodes=false
|
||||||
|
fbx/embedded_image_handling=1
|
||||||
|
fbx/naming_version=2
|
||||||
BIN
tgcc/chunk/countryside/mesh/chunk_country_corner_02.fbx
Normal file
@@ -0,0 +1,44 @@
|
|||||||
|
[remap]
|
||||||
|
|
||||||
|
importer="scene"
|
||||||
|
importer_version=1
|
||||||
|
type="PackedScene"
|
||||||
|
uid="uid://b5olmygr601ae"
|
||||||
|
path="res://.godot/imported/chunk_country_corner_02.fbx-7efd402525316858718e1b90e10d2a39.scn"
|
||||||
|
|
||||||
|
[deps]
|
||||||
|
|
||||||
|
source_file="res://tgcc/chunk/countryside/mesh/chunk_country_corner_02.fbx"
|
||||||
|
dest_files=["res://.godot/imported/chunk_country_corner_02.fbx-7efd402525316858718e1b90e10d2a39.scn"]
|
||||||
|
|
||||||
|
[params]
|
||||||
|
|
||||||
|
nodes/root_type=""
|
||||||
|
nodes/root_name=""
|
||||||
|
nodes/root_script=null
|
||||||
|
nodes/apply_root_scale=true
|
||||||
|
nodes/root_scale=1.0
|
||||||
|
nodes/import_as_skeleton_bones=false
|
||||||
|
nodes/use_name_suffixes=true
|
||||||
|
nodes/use_node_type_suffixes=true
|
||||||
|
meshes/ensure_tangents=true
|
||||||
|
meshes/generate_lods=true
|
||||||
|
meshes/create_shadow_meshes=true
|
||||||
|
meshes/light_baking=1
|
||||||
|
meshes/lightmap_texel_size=0.2
|
||||||
|
meshes/force_disable_compression=false
|
||||||
|
skins/use_named_skins=true
|
||||||
|
animation/import=true
|
||||||
|
animation/fps=30
|
||||||
|
animation/trimming=true
|
||||||
|
animation/remove_immutable_tracks=true
|
||||||
|
animation/import_rest_as_RESET=false
|
||||||
|
import_script/path=""
|
||||||
|
materials/extract=0
|
||||||
|
materials/extract_format=0
|
||||||
|
materials/extract_path=""
|
||||||
|
_subresources={}
|
||||||
|
fbx/importer=0
|
||||||
|
fbx/allow_geometry_helper_nodes=false
|
||||||
|
fbx/embedded_image_handling=1
|
||||||
|
fbx/naming_version=2
|
||||||
BIN
tgcc/chunk/countryside/mesh/chunk_country_corner_03.fbx
Normal file
@@ -0,0 +1,44 @@
|
|||||||
|
[remap]
|
||||||
|
|
||||||
|
importer="scene"
|
||||||
|
importer_version=1
|
||||||
|
type="PackedScene"
|
||||||
|
uid="uid://wo2bff4clsw8"
|
||||||
|
path="res://.godot/imported/chunk_country_corner_03.fbx-b647785d4a42c127bc44c2f63437b372.scn"
|
||||||
|
|
||||||
|
[deps]
|
||||||
|
|
||||||
|
source_file="res://tgcc/chunk/countryside/mesh/chunk_country_corner_03.fbx"
|
||||||
|
dest_files=["res://.godot/imported/chunk_country_corner_03.fbx-b647785d4a42c127bc44c2f63437b372.scn"]
|
||||||
|
|
||||||
|
[params]
|
||||||
|
|
||||||
|
nodes/root_type=""
|
||||||
|
nodes/root_name=""
|
||||||
|
nodes/root_script=null
|
||||||
|
nodes/apply_root_scale=true
|
||||||
|
nodes/root_scale=1.0
|
||||||
|
nodes/import_as_skeleton_bones=false
|
||||||
|
nodes/use_name_suffixes=true
|
||||||
|
nodes/use_node_type_suffixes=true
|
||||||
|
meshes/ensure_tangents=true
|
||||||
|
meshes/generate_lods=true
|
||||||
|
meshes/create_shadow_meshes=true
|
||||||
|
meshes/light_baking=1
|
||||||
|
meshes/lightmap_texel_size=0.2
|
||||||
|
meshes/force_disable_compression=false
|
||||||
|
skins/use_named_skins=true
|
||||||
|
animation/import=true
|
||||||
|
animation/fps=30
|
||||||
|
animation/trimming=true
|
||||||
|
animation/remove_immutable_tracks=true
|
||||||
|
animation/import_rest_as_RESET=false
|
||||||
|
import_script/path=""
|
||||||
|
materials/extract=0
|
||||||
|
materials/extract_format=0
|
||||||
|
materials/extract_path=""
|
||||||
|
_subresources={}
|
||||||
|
fbx/importer=0
|
||||||
|
fbx/allow_geometry_helper_nodes=false
|
||||||
|
fbx/embedded_image_handling=1
|
||||||
|
fbx/naming_version=2
|
||||||
BIN
tgcc/chunk/countryside/mesh/chunk_country_cross3_01.fbx
Normal file
@@ -0,0 +1,44 @@
|
|||||||
|
[remap]
|
||||||
|
|
||||||
|
importer="scene"
|
||||||
|
importer_version=1
|
||||||
|
type="PackedScene"
|
||||||
|
uid="uid://dgwsqxsejcei2"
|
||||||
|
path="res://.godot/imported/chunk_country_cross3_01.fbx-b3aa190ffa0d6ecb96ee465e476908d6.scn"
|
||||||
|
|
||||||
|
[deps]
|
||||||
|
|
||||||
|
source_file="res://tgcc/chunk/countryside/mesh/chunk_country_cross3_01.fbx"
|
||||||
|
dest_files=["res://.godot/imported/chunk_country_cross3_01.fbx-b3aa190ffa0d6ecb96ee465e476908d6.scn"]
|
||||||
|
|
||||||
|
[params]
|
||||||
|
|
||||||
|
nodes/root_type=""
|
||||||
|
nodes/root_name=""
|
||||||
|
nodes/root_script=null
|
||||||
|
nodes/apply_root_scale=true
|
||||||
|
nodes/root_scale=1.0
|
||||||
|
nodes/import_as_skeleton_bones=false
|
||||||
|
nodes/use_name_suffixes=true
|
||||||
|
nodes/use_node_type_suffixes=true
|
||||||
|
meshes/ensure_tangents=true
|
||||||
|
meshes/generate_lods=true
|
||||||
|
meshes/create_shadow_meshes=true
|
||||||
|
meshes/light_baking=1
|
||||||
|
meshes/lightmap_texel_size=0.2
|
||||||
|
meshes/force_disable_compression=false
|
||||||
|
skins/use_named_skins=true
|
||||||
|
animation/import=true
|
||||||
|
animation/fps=30
|
||||||
|
animation/trimming=true
|
||||||
|
animation/remove_immutable_tracks=true
|
||||||
|
animation/import_rest_as_RESET=false
|
||||||
|
import_script/path=""
|
||||||
|
materials/extract=0
|
||||||
|
materials/extract_format=0
|
||||||
|
materials/extract_path=""
|
||||||
|
_subresources={}
|
||||||
|
fbx/importer=0
|
||||||
|
fbx/allow_geometry_helper_nodes=false
|
||||||
|
fbx/embedded_image_handling=1
|
||||||
|
fbx/naming_version=2
|
||||||
BIN
tgcc/chunk/countryside/mesh/chunk_country_cross3_02.fbx
Normal file
@@ -0,0 +1,44 @@
|
|||||||
|
[remap]
|
||||||
|
|
||||||
|
importer="scene"
|
||||||
|
importer_version=1
|
||||||
|
type="PackedScene"
|
||||||
|
uid="uid://bvh7trr5mvu1c"
|
||||||
|
path="res://.godot/imported/chunk_country_cross3_02.fbx-f50a017062124d993f492ce59e24559a.scn"
|
||||||
|
|
||||||
|
[deps]
|
||||||
|
|
||||||
|
source_file="res://tgcc/chunk/countryside/mesh/chunk_country_cross3_02.fbx"
|
||||||
|
dest_files=["res://.godot/imported/chunk_country_cross3_02.fbx-f50a017062124d993f492ce59e24559a.scn"]
|
||||||
|
|
||||||
|
[params]
|
||||||
|
|
||||||
|
nodes/root_type=""
|
||||||
|
nodes/root_name=""
|
||||||
|
nodes/root_script=null
|
||||||
|
nodes/apply_root_scale=true
|
||||||
|
nodes/root_scale=1.0
|
||||||
|
nodes/import_as_skeleton_bones=false
|
||||||
|
nodes/use_name_suffixes=true
|
||||||
|
nodes/use_node_type_suffixes=true
|
||||||
|
meshes/ensure_tangents=true
|
||||||
|
meshes/generate_lods=true
|
||||||
|
meshes/create_shadow_meshes=true
|
||||||
|
meshes/light_baking=1
|
||||||
|
meshes/lightmap_texel_size=0.2
|
||||||
|
meshes/force_disable_compression=false
|
||||||
|
skins/use_named_skins=true
|
||||||
|
animation/import=true
|
||||||
|
animation/fps=30
|
||||||
|
animation/trimming=true
|
||||||
|
animation/remove_immutable_tracks=true
|
||||||
|
animation/import_rest_as_RESET=false
|
||||||
|
import_script/path=""
|
||||||
|
materials/extract=0
|
||||||
|
materials/extract_format=0
|
||||||
|
materials/extract_path=""
|
||||||
|
_subresources={}
|
||||||
|
fbx/importer=0
|
||||||
|
fbx/allow_geometry_helper_nodes=false
|
||||||
|
fbx/embedded_image_handling=1
|
||||||
|
fbx/naming_version=2
|
||||||
BIN
tgcc/chunk/countryside/mesh/chunk_country_cross3_03.fbx
Normal file
@@ -0,0 +1,44 @@
|
|||||||
|
[remap]
|
||||||
|
|
||||||
|
importer="scene"
|
||||||
|
importer_version=1
|
||||||
|
type="PackedScene"
|
||||||
|
uid="uid://b1v1ty866tmaa"
|
||||||
|
path="res://.godot/imported/chunk_country_cross3_03.fbx-8f7394d1a09ab3affc4ee275b896aca6.scn"
|
||||||
|
|
||||||
|
[deps]
|
||||||
|
|
||||||
|
source_file="res://tgcc/chunk/countryside/mesh/chunk_country_cross3_03.fbx"
|
||||||
|
dest_files=["res://.godot/imported/chunk_country_cross3_03.fbx-8f7394d1a09ab3affc4ee275b896aca6.scn"]
|
||||||
|
|
||||||
|
[params]
|
||||||
|
|
||||||
|
nodes/root_type=""
|
||||||
|
nodes/root_name=""
|
||||||
|
nodes/root_script=null
|
||||||
|
nodes/apply_root_scale=true
|
||||||
|
nodes/root_scale=1.0
|
||||||
|
nodes/import_as_skeleton_bones=false
|
||||||
|
nodes/use_name_suffixes=true
|
||||||
|
nodes/use_node_type_suffixes=true
|
||||||
|
meshes/ensure_tangents=true
|
||||||
|
meshes/generate_lods=true
|
||||||
|
meshes/create_shadow_meshes=true
|
||||||
|
meshes/light_baking=1
|
||||||
|
meshes/lightmap_texel_size=0.2
|
||||||
|
meshes/force_disable_compression=false
|
||||||
|
skins/use_named_skins=true
|
||||||
|
animation/import=true
|
||||||
|
animation/fps=30
|
||||||
|
animation/trimming=true
|
||||||
|
animation/remove_immutable_tracks=true
|
||||||
|
animation/import_rest_as_RESET=false
|
||||||
|
import_script/path=""
|
||||||
|
materials/extract=0
|
||||||
|
materials/extract_format=0
|
||||||
|
materials/extract_path=""
|
||||||
|
_subresources={}
|
||||||
|
fbx/importer=0
|
||||||
|
fbx/allow_geometry_helper_nodes=false
|
||||||
|
fbx/embedded_image_handling=1
|
||||||
|
fbx/naming_version=2
|
||||||
BIN
tgcc/chunk/countryside/mesh/chunk_country_cross4_01.fbx
Normal file
@@ -0,0 +1,44 @@
|
|||||||
|
[remap]
|
||||||
|
|
||||||
|
importer="scene"
|
||||||
|
importer_version=1
|
||||||
|
type="PackedScene"
|
||||||
|
uid="uid://ddy4n66q3n06p"
|
||||||
|
path="res://.godot/imported/chunk_country_cross4_01.fbx-e90083c2f212e0c76c5fde01f72414f9.scn"
|
||||||
|
|
||||||
|
[deps]
|
||||||
|
|
||||||
|
source_file="res://tgcc/chunk/countryside/mesh/chunk_country_cross4_01.fbx"
|
||||||
|
dest_files=["res://.godot/imported/chunk_country_cross4_01.fbx-e90083c2f212e0c76c5fde01f72414f9.scn"]
|
||||||
|
|
||||||
|
[params]
|
||||||
|
|
||||||
|
nodes/root_type=""
|
||||||
|
nodes/root_name=""
|
||||||
|
nodes/root_script=null
|
||||||
|
nodes/apply_root_scale=true
|
||||||
|
nodes/root_scale=1.0
|
||||||
|
nodes/import_as_skeleton_bones=false
|
||||||
|
nodes/use_name_suffixes=true
|
||||||
|
nodes/use_node_type_suffixes=true
|
||||||
|
meshes/ensure_tangents=true
|
||||||
|
meshes/generate_lods=true
|
||||||
|
meshes/create_shadow_meshes=true
|
||||||
|
meshes/light_baking=1
|
||||||
|
meshes/lightmap_texel_size=0.2
|
||||||
|
meshes/force_disable_compression=false
|
||||||
|
skins/use_named_skins=true
|
||||||
|
animation/import=true
|
||||||
|
animation/fps=30
|
||||||
|
animation/trimming=true
|
||||||
|
animation/remove_immutable_tracks=true
|
||||||
|
animation/import_rest_as_RESET=false
|
||||||
|
import_script/path=""
|
||||||
|
materials/extract=0
|
||||||
|
materials/extract_format=0
|
||||||
|
materials/extract_path=""
|
||||||
|
_subresources={}
|
||||||
|
fbx/importer=0
|
||||||
|
fbx/allow_geometry_helper_nodes=false
|
||||||
|
fbx/embedded_image_handling=1
|
||||||
|
fbx/naming_version=2
|
||||||
BIN
tgcc/chunk/countryside/mesh/chunk_country_empty_01.fbx
Normal file
@@ -0,0 +1,44 @@
|
|||||||
|
[remap]
|
||||||
|
|
||||||
|
importer="scene"
|
||||||
|
importer_version=1
|
||||||
|
type="PackedScene"
|
||||||
|
uid="uid://dc7mfxbj224i1"
|
||||||
|
path="res://.godot/imported/chunk_country_empty_01.fbx-8737495724a9b381ff8308bdf28e31f5.scn"
|
||||||
|
|
||||||
|
[deps]
|
||||||
|
|
||||||
|
source_file="res://tgcc/chunk/countryside/mesh/chunk_country_empty_01.fbx"
|
||||||
|
dest_files=["res://.godot/imported/chunk_country_empty_01.fbx-8737495724a9b381ff8308bdf28e31f5.scn"]
|
||||||
|
|
||||||
|
[params]
|
||||||
|
|
||||||
|
nodes/root_type=""
|
||||||
|
nodes/root_name=""
|
||||||
|
nodes/root_script=null
|
||||||
|
nodes/apply_root_scale=true
|
||||||
|
nodes/root_scale=1.0
|
||||||
|
nodes/import_as_skeleton_bones=false
|
||||||
|
nodes/use_name_suffixes=true
|
||||||
|
nodes/use_node_type_suffixes=true
|
||||||
|
meshes/ensure_tangents=true
|
||||||
|
meshes/generate_lods=true
|
||||||
|
meshes/create_shadow_meshes=true
|
||||||
|
meshes/light_baking=1
|
||||||
|
meshes/lightmap_texel_size=0.2
|
||||||
|
meshes/force_disable_compression=false
|
||||||
|
skins/use_named_skins=true
|
||||||
|
animation/import=true
|
||||||
|
animation/fps=30
|
||||||
|
animation/trimming=true
|
||||||
|
animation/remove_immutable_tracks=true
|
||||||
|
animation/import_rest_as_RESET=false
|
||||||
|
import_script/path=""
|
||||||
|
materials/extract=0
|
||||||
|
materials/extract_format=0
|
||||||
|
materials/extract_path=""
|
||||||
|
_subresources={}
|
||||||
|
fbx/importer=0
|
||||||
|
fbx/allow_geometry_helper_nodes=false
|
||||||
|
fbx/embedded_image_handling=1
|
||||||
|
fbx/naming_version=2
|
||||||
BIN
tgcc/chunk/countryside/mesh/chunk_country_end_01.fbx
Normal file
44
tgcc/chunk/countryside/mesh/chunk_country_end_01.fbx.import
Normal file
@@ -0,0 +1,44 @@
|
|||||||
|
[remap]
|
||||||
|
|
||||||
|
importer="scene"
|
||||||
|
importer_version=1
|
||||||
|
type="PackedScene"
|
||||||
|
uid="uid://5da0ti16vvkp"
|
||||||
|
path="res://.godot/imported/chunk_country_end_01.fbx-da853b2b5281dc14de3a1b7fa3e5ec6f.scn"
|
||||||
|
|
||||||
|
[deps]
|
||||||
|
|
||||||
|
source_file="res://tgcc/chunk/countryside/mesh/chunk_country_end_01.fbx"
|
||||||
|
dest_files=["res://.godot/imported/chunk_country_end_01.fbx-da853b2b5281dc14de3a1b7fa3e5ec6f.scn"]
|
||||||
|
|
||||||
|
[params]
|
||||||
|
|
||||||
|
nodes/root_type=""
|
||||||
|
nodes/root_name=""
|
||||||
|
nodes/root_script=null
|
||||||
|
nodes/apply_root_scale=true
|
||||||
|
nodes/root_scale=1.0
|
||||||
|
nodes/import_as_skeleton_bones=false
|
||||||
|
nodes/use_name_suffixes=true
|
||||||
|
nodes/use_node_type_suffixes=true
|
||||||
|
meshes/ensure_tangents=true
|
||||||
|
meshes/generate_lods=true
|
||||||
|
meshes/create_shadow_meshes=true
|
||||||
|
meshes/light_baking=1
|
||||||
|
meshes/lightmap_texel_size=0.2
|
||||||
|
meshes/force_disable_compression=false
|
||||||
|
skins/use_named_skins=true
|
||||||
|
animation/import=true
|
||||||
|
animation/fps=30
|
||||||
|
animation/trimming=true
|
||||||
|
animation/remove_immutable_tracks=true
|
||||||
|
animation/import_rest_as_RESET=false
|
||||||
|
import_script/path=""
|
||||||
|
materials/extract=0
|
||||||
|
materials/extract_format=0
|
||||||
|
materials/extract_path=""
|
||||||
|
_subresources={}
|
||||||
|
fbx/importer=0
|
||||||
|
fbx/allow_geometry_helper_nodes=false
|
||||||
|
fbx/embedded_image_handling=1
|
||||||
|
fbx/naming_version=2
|
||||||
BIN
tgcc/chunk/countryside/mesh/chunk_country_end_02.fbx
Normal file
44
tgcc/chunk/countryside/mesh/chunk_country_end_02.fbx.import
Normal file
@@ -0,0 +1,44 @@
|
|||||||
|
[remap]
|
||||||
|
|
||||||
|
importer="scene"
|
||||||
|
importer_version=1
|
||||||
|
type="PackedScene"
|
||||||
|
uid="uid://bs5cuj41lx4ml"
|
||||||
|
path="res://.godot/imported/chunk_country_end_02.fbx-cbb187027d654434b9a50575ee352cb8.scn"
|
||||||
|
|
||||||
|
[deps]
|
||||||
|
|
||||||
|
source_file="res://tgcc/chunk/countryside/mesh/chunk_country_end_02.fbx"
|
||||||
|
dest_files=["res://.godot/imported/chunk_country_end_02.fbx-cbb187027d654434b9a50575ee352cb8.scn"]
|
||||||
|
|
||||||
|
[params]
|
||||||
|
|
||||||
|
nodes/root_type=""
|
||||||
|
nodes/root_name=""
|
||||||
|
nodes/root_script=null
|
||||||
|
nodes/apply_root_scale=true
|
||||||
|
nodes/root_scale=1.0
|
||||||
|
nodes/import_as_skeleton_bones=false
|
||||||
|
nodes/use_name_suffixes=true
|
||||||
|
nodes/use_node_type_suffixes=true
|
||||||
|
meshes/ensure_tangents=true
|
||||||
|
meshes/generate_lods=true
|
||||||
|
meshes/create_shadow_meshes=true
|
||||||
|
meshes/light_baking=1
|
||||||
|
meshes/lightmap_texel_size=0.2
|
||||||
|
meshes/force_disable_compression=false
|
||||||
|
skins/use_named_skins=true
|
||||||
|
animation/import=true
|
||||||
|
animation/fps=30
|
||||||
|
animation/trimming=true
|
||||||
|
animation/remove_immutable_tracks=true
|
||||||
|
animation/import_rest_as_RESET=false
|
||||||
|
import_script/path=""
|
||||||
|
materials/extract=0
|
||||||
|
materials/extract_format=0
|
||||||
|
materials/extract_path=""
|
||||||
|
_subresources={}
|
||||||
|
fbx/importer=0
|
||||||
|
fbx/allow_geometry_helper_nodes=false
|
||||||
|
fbx/embedded_image_handling=1
|
||||||
|
fbx/naming_version=2
|
||||||
BIN
tgcc/chunk/countryside/mesh/chunk_country_straight_01.fbx
Normal file
@@ -0,0 +1,44 @@
|
|||||||
|
[remap]
|
||||||
|
|
||||||
|
importer="scene"
|
||||||
|
importer_version=1
|
||||||
|
type="PackedScene"
|
||||||
|
uid="uid://dyrjspyca8lu6"
|
||||||
|
path="res://.godot/imported/chunk_country_straight_01.fbx-98d929ffd3ba5db0e274f38b2a3f6b14.scn"
|
||||||
|
|
||||||
|
[deps]
|
||||||
|
|
||||||
|
source_file="res://tgcc/chunk/countryside/mesh/chunk_country_straight_01.fbx"
|
||||||
|
dest_files=["res://.godot/imported/chunk_country_straight_01.fbx-98d929ffd3ba5db0e274f38b2a3f6b14.scn"]
|
||||||
|
|
||||||
|
[params]
|
||||||
|
|
||||||
|
nodes/root_type=""
|
||||||
|
nodes/root_name=""
|
||||||
|
nodes/root_script=null
|
||||||
|
nodes/apply_root_scale=true
|
||||||
|
nodes/root_scale=1.0
|
||||||
|
nodes/import_as_skeleton_bones=false
|
||||||
|
nodes/use_name_suffixes=true
|
||||||
|
nodes/use_node_type_suffixes=true
|
||||||
|
meshes/ensure_tangents=true
|
||||||
|
meshes/generate_lods=true
|
||||||
|
meshes/create_shadow_meshes=true
|
||||||
|
meshes/light_baking=1
|
||||||
|
meshes/lightmap_texel_size=0.2
|
||||||
|
meshes/force_disable_compression=false
|
||||||
|
skins/use_named_skins=true
|
||||||
|
animation/import=true
|
||||||
|
animation/fps=30
|
||||||
|
animation/trimming=true
|
||||||
|
animation/remove_immutable_tracks=true
|
||||||
|
animation/import_rest_as_RESET=false
|
||||||
|
import_script/path=""
|
||||||
|
materials/extract=0
|
||||||
|
materials/extract_format=0
|
||||||
|
materials/extract_path=""
|
||||||
|
_subresources={}
|
||||||
|
fbx/importer=0
|
||||||
|
fbx/allow_geometry_helper_nodes=false
|
||||||
|
fbx/embedded_image_handling=1
|
||||||
|
fbx/naming_version=2
|
||||||
BIN
tgcc/chunk/countryside/mesh/chunk_country_straight_02.fbx
Normal file
@@ -0,0 +1,44 @@
|
|||||||
|
[remap]
|
||||||
|
|
||||||
|
importer="scene"
|
||||||
|
importer_version=1
|
||||||
|
type="PackedScene"
|
||||||
|
uid="uid://sw4h0rhly5vp"
|
||||||
|
path="res://.godot/imported/chunk_country_straight_02.fbx-2732af432db7dfa8c60a032aca646f7e.scn"
|
||||||
|
|
||||||
|
[deps]
|
||||||
|
|
||||||
|
source_file="res://tgcc/chunk/countryside/mesh/chunk_country_straight_02.fbx"
|
||||||
|
dest_files=["res://.godot/imported/chunk_country_straight_02.fbx-2732af432db7dfa8c60a032aca646f7e.scn"]
|
||||||
|
|
||||||
|
[params]
|
||||||
|
|
||||||
|
nodes/root_type=""
|
||||||
|
nodes/root_name=""
|
||||||
|
nodes/root_script=null
|
||||||
|
nodes/apply_root_scale=true
|
||||||
|
nodes/root_scale=1.0
|
||||||
|
nodes/import_as_skeleton_bones=false
|
||||||
|
nodes/use_name_suffixes=true
|
||||||
|
nodes/use_node_type_suffixes=true
|
||||||
|
meshes/ensure_tangents=true
|
||||||
|
meshes/generate_lods=true
|
||||||
|
meshes/create_shadow_meshes=true
|
||||||
|
meshes/light_baking=1
|
||||||
|
meshes/lightmap_texel_size=0.2
|
||||||
|
meshes/force_disable_compression=false
|
||||||
|
skins/use_named_skins=true
|
||||||
|
animation/import=true
|
||||||
|
animation/fps=30
|
||||||
|
animation/trimming=true
|
||||||
|
animation/remove_immutable_tracks=true
|
||||||
|
animation/import_rest_as_RESET=false
|
||||||
|
import_script/path=""
|
||||||
|
materials/extract=0
|
||||||
|
materials/extract_format=0
|
||||||
|
materials/extract_path=""
|
||||||
|
_subresources={}
|
||||||
|
fbx/importer=0
|
||||||
|
fbx/allow_geometry_helper_nodes=false
|
||||||
|
fbx/embedded_image_handling=1
|
||||||
|
fbx/naming_version=2
|
||||||
BIN
tgcc/chunk/countryside/mesh/chunk_country_straight_03.fbx
Normal file
@@ -0,0 +1,44 @@
|
|||||||
|
[remap]
|
||||||
|
|
||||||
|
importer="scene"
|
||||||
|
importer_version=1
|
||||||
|
type="PackedScene"
|
||||||
|
uid="uid://d0shnpvdnnv44"
|
||||||
|
path="res://.godot/imported/chunk_country_straight_03.fbx-92d4de703657cf94bae58ebd38122d95.scn"
|
||||||
|
|
||||||
|
[deps]
|
||||||
|
|
||||||
|
source_file="res://tgcc/chunk/countryside/mesh/chunk_country_straight_03.fbx"
|
||||||
|
dest_files=["res://.godot/imported/chunk_country_straight_03.fbx-92d4de703657cf94bae58ebd38122d95.scn"]
|
||||||
|
|
||||||
|
[params]
|
||||||
|
|
||||||
|
nodes/root_type=""
|
||||||
|
nodes/root_name=""
|
||||||
|
nodes/root_script=null
|
||||||
|
nodes/apply_root_scale=true
|
||||||
|
nodes/root_scale=1.0
|
||||||
|
nodes/import_as_skeleton_bones=false
|
||||||
|
nodes/use_name_suffixes=true
|
||||||
|
nodes/use_node_type_suffixes=true
|
||||||
|
meshes/ensure_tangents=true
|
||||||
|
meshes/generate_lods=true
|
||||||
|
meshes/create_shadow_meshes=true
|
||||||
|
meshes/light_baking=1
|
||||||
|
meshes/lightmap_texel_size=0.2
|
||||||
|
meshes/force_disable_compression=false
|
||||||
|
skins/use_named_skins=true
|
||||||
|
animation/import=true
|
||||||
|
animation/fps=30
|
||||||
|
animation/trimming=true
|
||||||
|
animation/remove_immutable_tracks=true
|
||||||
|
animation/import_rest_as_RESET=false
|
||||||
|
import_script/path=""
|
||||||
|
materials/extract=0
|
||||||
|
materials/extract_format=0
|
||||||
|
materials/extract_path=""
|
||||||
|
_subresources={}
|
||||||
|
fbx/importer=0
|
||||||
|
fbx/allow_geometry_helper_nodes=false
|
||||||
|
fbx/embedded_image_handling=1
|
||||||
|
fbx/naming_version=2
|
||||||
908
tgcc/chunk/countryside/scene/chunk_country_corner_01.tscn
Normal file
644
tgcc/chunk/countryside/scene/chunk_country_corner_02.tscn
Normal file
202
tgcc/chunk/countryside/scene/chunk_country_corner_03.tscn
Normal file
705
tgcc/chunk/countryside/scene/chunk_country_cross_3_01.tscn
Normal file
523
tgcc/chunk/countryside/scene/chunk_country_cross_3_02.tscn
Normal file
204
tgcc/chunk/countryside/scene/chunk_country_cross_3_03.tscn
Normal file
149
tgcc/chunk/countryside/scene/chunk_country_cross_4_01.tscn
Normal file
855
tgcc/chunk/countryside/scene/chunk_country_empty_01.tscn
Normal file
537
tgcc/chunk/countryside/scene/chunk_country_end_01.tscn
Normal file
691
tgcc/chunk/countryside/scene/chunk_country_end_02.tscn
Normal file
153
tgcc/chunk/countryside/scene/chunk_country_straight_01.tscn
Normal file
447
tgcc/chunk/countryside/scene/chunk_country_straight_02.tscn
Normal file
815
tgcc/chunk/countryside/scene/chunk_country_straight_03.tscn
Normal file
24
tgcc/chunk/material/grassflat_chunk.tres
Normal file
@@ -0,0 +1,24 @@
|
|||||||
|
[gd_resource type="ShaderMaterial" format=3 uid="uid://blqelpjvdv23j"]
|
||||||
|
|
||||||
|
[ext_resource type="Shader" uid="uid://d0ch5ofrgf7y6" path="res://core/daynight/trunk_shader.gdshader" id="1_p3qx1"]
|
||||||
|
|
||||||
|
[resource]
|
||||||
|
render_priority = 0
|
||||||
|
shader = ExtResource("1_p3qx1")
|
||||||
|
shader_parameter/albedo_color = Color(0.2784314, 0.39215687, 0.19215687, 1)
|
||||||
|
shader_parameter/use_texture = true
|
||||||
|
shader_parameter/uv_scale = Vector2(1, 1)
|
||||||
|
shader_parameter/palette_shift_y = 0.0
|
||||||
|
shader_parameter/gradient_start_y = 0.0
|
||||||
|
shader_parameter/gradient_end_y = 10.0
|
||||||
|
shader_parameter/light_steps = 3.0
|
||||||
|
shader_parameter/step_softness = 0.1
|
||||||
|
shader_parameter/shadow_color = Color(0.4, 0.4, 0.6, 1)
|
||||||
|
shader_parameter/shadow_offset = 0.0
|
||||||
|
shader_parameter/cast_shadow_strength = 0.6
|
||||||
|
shader_parameter/use_ghibli_glint = true
|
||||||
|
shader_parameter/glint_color = Color(1, 0.95, 0.85, 1)
|
||||||
|
shader_parameter/glint_intensity = 1.0
|
||||||
|
shader_parameter/glint_sharpness = 32.0
|
||||||
|
shader_parameter/emission_color = Color(0, 0, 0, 1)
|
||||||
|
shader_parameter/emission_energy = 0.0
|
||||||
24
tgcc/chunk/material/path_chunk.tres
Normal file
@@ -0,0 +1,24 @@
|
|||||||
|
[gd_resource type="ShaderMaterial" format=3 uid="uid://4xhpd6lust7w"]
|
||||||
|
|
||||||
|
[ext_resource type="Shader" uid="uid://d0ch5ofrgf7y6" path="res://core/daynight/trunk_shader.gdshader" id="1_vdxi4"]
|
||||||
|
|
||||||
|
[resource]
|
||||||
|
render_priority = 0
|
||||||
|
shader = ExtResource("1_vdxi4")
|
||||||
|
shader_parameter/albedo_color = Color(0.42352942, 0.28235295, 0.14901961, 1)
|
||||||
|
shader_parameter/use_texture = true
|
||||||
|
shader_parameter/uv_scale = Vector2(1, 1)
|
||||||
|
shader_parameter/palette_shift_y = 0.0
|
||||||
|
shader_parameter/gradient_start_y = 0.0
|
||||||
|
shader_parameter/gradient_end_y = 10.0
|
||||||
|
shader_parameter/light_steps = 3.0
|
||||||
|
shader_parameter/step_softness = 0.1
|
||||||
|
shader_parameter/shadow_color = Color(0.4, 0.4, 0.6, 1)
|
||||||
|
shader_parameter/shadow_offset = 0.0
|
||||||
|
shader_parameter/cast_shadow_strength = 0.6
|
||||||
|
shader_parameter/use_ghibli_glint = true
|
||||||
|
shader_parameter/glint_color = Color(1, 0.95, 0.85, 1)
|
||||||
|
shader_parameter/glint_intensity = 1.0
|
||||||
|
shader_parameter/glint_sharpness = 32.0
|
||||||
|
shader_parameter/emission_color = Color(0, 0, 0, 1)
|
||||||
|
shader_parameter/emission_energy = 0.0
|
||||||
24
tgcc/chunk/material/rocks.tres
Normal file
@@ -0,0 +1,24 @@
|
|||||||
|
[gd_resource type="ShaderMaterial" format=3 uid="uid://o31kp0jm07q3"]
|
||||||
|
|
||||||
|
[ext_resource type="Shader" uid="uid://d0ch5ofrgf7y6" path="res://core/daynight/trunk_shader.gdshader" id="1_gfgkt"]
|
||||||
|
|
||||||
|
[resource]
|
||||||
|
render_priority = 0
|
||||||
|
shader = ExtResource("1_gfgkt")
|
||||||
|
shader_parameter/albedo_color = Color(0.2865011, 0.28736725, 0.26158047, 1)
|
||||||
|
shader_parameter/use_texture = true
|
||||||
|
shader_parameter/uv_scale = Vector2(1, 1)
|
||||||
|
shader_parameter/palette_shift_y = 0.0
|
||||||
|
shader_parameter/gradient_start_y = 0.0
|
||||||
|
shader_parameter/gradient_end_y = 10.0
|
||||||
|
shader_parameter/light_steps = 3.0
|
||||||
|
shader_parameter/step_softness = 0.1
|
||||||
|
shader_parameter/shadow_color = Color(0.4, 0.4, 0.6, 1)
|
||||||
|
shader_parameter/shadow_offset = 0.0
|
||||||
|
shader_parameter/cast_shadow_strength = 0.6
|
||||||
|
shader_parameter/use_ghibli_glint = true
|
||||||
|
shader_parameter/glint_color = Color(1, 0.95, 0.85, 1)
|
||||||
|
shader_parameter/glint_intensity = 1.0
|
||||||
|
shader_parameter/glint_sharpness = 32.0
|
||||||
|
shader_parameter/emission_color = Color(0, 0, 0, 1)
|
||||||
|
shader_parameter/emission_energy = 0.0
|
||||||
24
tgcc/chunk/material/rocks2.tres
Normal file
@@ -0,0 +1,24 @@
|
|||||||
|
[gd_resource type="ShaderMaterial" format=3 uid="uid://d4vsl672lwv7"]
|
||||||
|
|
||||||
|
[ext_resource type="Shader" uid="uid://d0ch5ofrgf7y6" path="res://core/daynight/trunk_shader.gdshader" id="1_qojfn"]
|
||||||
|
|
||||||
|
[resource]
|
||||||
|
render_priority = 0
|
||||||
|
shader = ExtResource("1_qojfn")
|
||||||
|
shader_parameter/albedo_color = Color(0.38048407, 0.38049525, 0.35175675, 1)
|
||||||
|
shader_parameter/use_texture = true
|
||||||
|
shader_parameter/uv_scale = Vector2(1, 1)
|
||||||
|
shader_parameter/palette_shift_y = 0.0
|
||||||
|
shader_parameter/gradient_start_y = 0.0
|
||||||
|
shader_parameter/gradient_end_y = 10.0
|
||||||
|
shader_parameter/light_steps = 3.0
|
||||||
|
shader_parameter/step_softness = 0.1
|
||||||
|
shader_parameter/shadow_color = Color(0.4, 0.4, 0.6, 1)
|
||||||
|
shader_parameter/shadow_offset = 0.0
|
||||||
|
shader_parameter/cast_shadow_strength = 0.6
|
||||||
|
shader_parameter/use_ghibli_glint = true
|
||||||
|
shader_parameter/glint_color = Color(1, 0.95, 0.85, 1)
|
||||||
|
shader_parameter/glint_intensity = 1.0
|
||||||
|
shader_parameter/glint_sharpness = 32.0
|
||||||
|
shader_parameter/emission_color = Color(0, 0, 0, 1)
|
||||||
|
shader_parameter/emission_energy = 0.0
|
||||||
24
tgcc/chunk/material/wires.tres
Normal file
@@ -0,0 +1,24 @@
|
|||||||
|
[gd_resource type="ShaderMaterial" format=3 uid="uid://cn20mp8ep3yxu"]
|
||||||
|
|
||||||
|
[ext_resource type="Shader" uid="uid://d0ch5ofrgf7y6" path="res://core/daynight/trunk_shader.gdshader" id="1_87vse"]
|
||||||
|
|
||||||
|
[resource]
|
||||||
|
render_priority = 0
|
||||||
|
shader = ExtResource("1_87vse")
|
||||||
|
shader_parameter/albedo_color = Color(0.15259853, 0.15259421, 0.13781062, 1)
|
||||||
|
shader_parameter/use_texture = true
|
||||||
|
shader_parameter/uv_scale = Vector2(1, 1)
|
||||||
|
shader_parameter/palette_shift_y = 0.0
|
||||||
|
shader_parameter/gradient_start_y = 0.0
|
||||||
|
shader_parameter/gradient_end_y = 10.0
|
||||||
|
shader_parameter/light_steps = 3.0
|
||||||
|
shader_parameter/step_softness = 0.1
|
||||||
|
shader_parameter/shadow_color = Color(0.4, 0.4, 0.6, 1)
|
||||||
|
shader_parameter/shadow_offset = 0.0
|
||||||
|
shader_parameter/cast_shadow_strength = 0.6
|
||||||
|
shader_parameter/use_ghibli_glint = true
|
||||||
|
shader_parameter/glint_color = Color(1, 0.95, 0.85, 1)
|
||||||
|
shader_parameter/glint_intensity = 1.0
|
||||||
|
shader_parameter/glint_sharpness = 32.0
|
||||||
|
shader_parameter/emission_color = Color(0, 0, 0, 1)
|
||||||
|
shader_parameter/emission_energy = 0.0
|
||||||
24
tgcc/chunk/material/wood.tres
Normal file
@@ -0,0 +1,24 @@
|
|||||||
|
[gd_resource type="ShaderMaterial" format=3 uid="uid://buxlrrpn7rdgs"]
|
||||||
|
|
||||||
|
[ext_resource type="Shader" uid="uid://d0ch5ofrgf7y6" path="res://core/daynight/trunk_shader.gdshader" id="1_oih47"]
|
||||||
|
|
||||||
|
[resource]
|
||||||
|
render_priority = 0
|
||||||
|
shader = ExtResource("1_oih47")
|
||||||
|
shader_parameter/albedo_color = Color(0.29128477, 0.14993468, 0.018823745, 1)
|
||||||
|
shader_parameter/use_texture = true
|
||||||
|
shader_parameter/uv_scale = Vector2(3, 3)
|
||||||
|
shader_parameter/palette_shift_y = 0.0
|
||||||
|
shader_parameter/gradient_start_y = 0.0
|
||||||
|
shader_parameter/gradient_end_y = 1.5
|
||||||
|
shader_parameter/light_steps = 3.0
|
||||||
|
shader_parameter/step_softness = 0.1
|
||||||
|
shader_parameter/shadow_color = Color(0.4, 0.4, 0.6, 1)
|
||||||
|
shader_parameter/shadow_offset = 0.0
|
||||||
|
shader_parameter/cast_shadow_strength = 0.6
|
||||||
|
shader_parameter/use_ghibli_glint = true
|
||||||
|
shader_parameter/glint_color = Color(1, 0.95, 0.85, 1)
|
||||||
|
shader_parameter/glint_intensity = 1.0
|
||||||
|
shader_parameter/glint_sharpness = 32.0
|
||||||
|
shader_parameter/emission_color = Color(0, 0, 0, 1)
|
||||||
|
shader_parameter/emission_energy = 0.0
|
||||||
24
tgcc/chunk/material/wood2.tres
Normal file
@@ -0,0 +1,24 @@
|
|||||||
|
[gd_resource type="ShaderMaterial" format=3 uid="uid://duqt8txtre3qm"]
|
||||||
|
|
||||||
|
[ext_resource type="Shader" uid="uid://d0ch5ofrgf7y6" path="res://core/daynight/trunk_shader.gdshader" id="1_tq8sh"]
|
||||||
|
|
||||||
|
[resource]
|
||||||
|
render_priority = 0
|
||||||
|
shader = ExtResource("1_tq8sh")
|
||||||
|
shader_parameter/albedo_color = Color(0.758156, 0.46076733, 0.1471341, 1)
|
||||||
|
shader_parameter/use_texture = true
|
||||||
|
shader_parameter/uv_scale = Vector2(3, 3)
|
||||||
|
shader_parameter/palette_shift_y = 0.0
|
||||||
|
shader_parameter/gradient_start_y = 0.0
|
||||||
|
shader_parameter/gradient_end_y = 1.5
|
||||||
|
shader_parameter/light_steps = 3.0
|
||||||
|
shader_parameter/step_softness = 0.1
|
||||||
|
shader_parameter/shadow_color = Color(0.4, 0.4, 0.6, 1)
|
||||||
|
shader_parameter/shadow_offset = 0.0
|
||||||
|
shader_parameter/cast_shadow_strength = 0.6
|
||||||
|
shader_parameter/use_ghibli_glint = true
|
||||||
|
shader_parameter/glint_color = Color(1, 0.95, 0.85, 1)
|
||||||
|
shader_parameter/glint_intensity = 1.0
|
||||||
|
shader_parameter/glint_sharpness = 32.0
|
||||||
|
shader_parameter/emission_color = Color(0, 0, 0, 1)
|
||||||
|
shader_parameter/emission_energy = 0.0
|
||||||
@@ -4,12 +4,12 @@ importer="scene"
|
|||||||
importer_version=1
|
importer_version=1
|
||||||
type="PackedScene"
|
type="PackedScene"
|
||||||
uid="uid://cl3xspxrqcyfg"
|
uid="uid://cl3xspxrqcyfg"
|
||||||
path="res://.godot/imported/fences.fbx-3c291507c986ba8c9235bf53fbb66890.scn"
|
path="res://.godot/imported/fences.fbx-48d6632f673779f3a73da073ce62719b.scn"
|
||||||
|
|
||||||
[deps]
|
[deps]
|
||||||
|
|
||||||
source_file="res://docs/museums/daynight/scenes/fences.fbx"
|
source_file="res://tgcc/chunk/prop/fence/fences.fbx"
|
||||||
dest_files=["res://.godot/imported/fences.fbx-3c291507c986ba8c9235bf53fbb66890.scn"]
|
dest_files=["res://.godot/imported/fences.fbx-48d6632f673779f3a73da073ce62719b.scn"]
|
||||||
|
|
||||||
[params]
|
[params]
|
||||||
|
|
||||||
@@ -1,10 +1,10 @@
|
|||||||
[gd_resource type="ShaderMaterial" format=3 uid="uid://wkegx4a21x7u"]
|
[gd_resource type="ShaderMaterial" format=3 uid="uid://wkegx4a21x7u"]
|
||||||
|
|
||||||
[ext_resource type="Shader" uid="uid://d0ch5ofrgf7y6" path="res://core/daynight/trunk_shader.gdshader" id="1_k6owx"]
|
[ext_resource type="Shader" uid="uid://d0ch5ofrgf7y6" path="res://core/daynight/trunk_shader.gdshader" id="1_m1x4h"]
|
||||||
|
|
||||||
[resource]
|
[resource]
|
||||||
render_priority = 0
|
render_priority = 0
|
||||||
shader = ExtResource("1_k6owx")
|
shader = ExtResource("1_m1x4h")
|
||||||
shader_parameter/albedo_color = Color(0.41427386, 0.22169134, 0.039388184, 1)
|
shader_parameter/albedo_color = Color(0.41427386, 0.22169134, 0.039388184, 1)
|
||||||
shader_parameter/use_texture = true
|
shader_parameter/use_texture = true
|
||||||
shader_parameter/uv_scale = Vector2(3, 3)
|
shader_parameter/uv_scale = Vector2(3, 3)
|
||||||
@@ -16,5 +16,9 @@ shader_parameter/step_softness = 0.1
|
|||||||
shader_parameter/shadow_color = Color(0.4, 0.4, 0.6, 1)
|
shader_parameter/shadow_color = Color(0.4, 0.4, 0.6, 1)
|
||||||
shader_parameter/shadow_offset = 0.0
|
shader_parameter/shadow_offset = 0.0
|
||||||
shader_parameter/cast_shadow_strength = 0.6
|
shader_parameter/cast_shadow_strength = 0.6
|
||||||
|
shader_parameter/use_ghibli_glint = true
|
||||||
|
shader_parameter/glint_color = Color(1, 0.95, 0.85, 1)
|
||||||
|
shader_parameter/glint_intensity = 1.0
|
||||||
|
shader_parameter/glint_sharpness = 32.0
|
||||||
shader_parameter/emission_color = Color(0, 0, 0, 1)
|
shader_parameter/emission_color = Color(0, 0, 0, 1)
|
||||||
shader_parameter/emission_energy = 0.0
|
shader_parameter/emission_energy = 0.0
|
||||||
@@ -1,7 +1,7 @@
|
|||||||
[gd_scene format=4 uid="uid://igbtt2ypx0ks"]
|
[gd_scene format=4 uid="uid://igbtt2ypx0ks"]
|
||||||
|
|
||||||
[ext_resource type="PackedScene" uid="uid://cl3xspxrqcyfg" path="res://docs/museums/daynight/scenes/fences.fbx" id="1_j7em5"]
|
[ext_resource type="PackedScene" uid="uid://cl3xspxrqcyfg" path="res://tgcc/chunk/prop/fence/fences.fbx" id="1_j7em5"]
|
||||||
[ext_resource type="Material" uid="uid://wkegx4a21x7u" path="res://docs/museums/daynight/scenes/fences.tres" id="2_2tbpd"]
|
[ext_resource type="Material" uid="uid://wkegx4a21x7u" path="res://tgcc/chunk/prop/fence/fences.tres" id="2_2tbpd"]
|
||||||
[ext_resource type="Shader" uid="uid://do8puw7u8dvry" path="res://core/daynight/weather_plain_shader.gdshader" id="3_xsxbg"]
|
[ext_resource type="Shader" uid="uid://do8puw7u8dvry" path="res://core/daynight/weather_plain_shader.gdshader" id="3_xsxbg"]
|
||||||
|
|
||||||
[sub_resource type="ShaderMaterial" id="ShaderMaterial_2jjob"]
|
[sub_resource type="ShaderMaterial" id="ShaderMaterial_2jjob"]
|
||||||
@@ -111,12 +111,12 @@ shader_parameter/puddle_threshold = 0.45
|
|||||||
[node name="MSH_Staccionate" unique_id=118332436 instance=ExtResource("1_j7em5")]
|
[node name="MSH_Staccionate" unique_id=118332436 instance=ExtResource("1_j7em5")]
|
||||||
transform = Transform3D(2, 0, 0, 0, 2, 0, 0, 0, 2, 0, 0, 0)
|
transform = Transform3D(2, 0, 0, 0, 2, 0, 0, 0, 2, 0, 0, 0)
|
||||||
|
|
||||||
[node name="MSH_Staccioanta_3" parent="." index="0" unique_id=518174525]
|
[node name="MSH_Staccioanta_3" parent="." index="0" unique_id=622719076]
|
||||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -0.0037837923, 0, 0)
|
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -0.0037837923, 0, 0)
|
||||||
material_override = ExtResource("2_2tbpd")
|
material_override = ExtResource("2_2tbpd")
|
||||||
material_overlay = SubResource("ShaderMaterial_2jjob")
|
material_overlay = SubResource("ShaderMaterial_2jjob")
|
||||||
|
|
||||||
[node name="MSH_Staccioanta_2" parent="." index="1" unique_id=1761065999]
|
[node name="MSH_Staccioanta_2" parent="." index="1" unique_id=323660152]
|
||||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0.99746555, 0, 0)
|
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0.99746555, 0, 0)
|
||||||
material_override = ExtResource("2_2tbpd")
|
material_override = ExtResource("2_2tbpd")
|
||||||
material_overlay = SubResource("ShaderMaterial_5qj1r")
|
material_overlay = SubResource("ShaderMaterial_5qj1r")
|
||||||
@@ -127,7 +127,7 @@ material_override = ExtResource("2_2tbpd")
|
|||||||
material_overlay = SubResource("ShaderMaterial_xsxbg")
|
material_overlay = SubResource("ShaderMaterial_xsxbg")
|
||||||
mesh = SubResource("ArrayMesh_h5j06")
|
mesh = SubResource("ArrayMesh_h5j06")
|
||||||
|
|
||||||
[node name="MSH_Staccioanta_1" parent="." index="3" unique_id=1389585160]
|
[node name="MSH_Staccioanta_1" parent="." index="3" unique_id=285706925]
|
||||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -1.0379614, 0, 0)
|
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -1.0379614, 0, 0)
|
||||||
material_override = ExtResource("2_2tbpd")
|
material_override = ExtResource("2_2tbpd")
|
||||||
material_overlay = SubResource("ShaderMaterial_p4545")
|
material_overlay = SubResource("ShaderMaterial_p4545")
|
||||||
29
tgcc/chunk/prop/flower/bush.tres
Normal file
@@ -0,0 +1,29 @@
|
|||||||
|
[gd_resource type="ShaderMaterial" format=3 uid="uid://baot4vy3fqrdw"]
|
||||||
|
|
||||||
|
[ext_resource type="Shader" uid="uid://8l8glwvvs7fb" path="res://core/daynight/grass_leaves.gdshader" id="1_yw70r"]
|
||||||
|
[ext_resource type="Texture2D" uid="uid://bm0roy74xo3ce" path="res://tgcc/chunk/prop/flower/bush_alpha.png" id="2_rv6bf"]
|
||||||
|
[ext_resource type="Texture2D" path="res://tgcc/chunk/prop/flower/bush_colornoise.tres" id="3_t3pfi"]
|
||||||
|
|
||||||
|
[resource]
|
||||||
|
render_priority = 0
|
||||||
|
shader = ExtResource("1_yw70r")
|
||||||
|
shader_parameter/billboard_enabled = true
|
||||||
|
shader_parameter/wind_enabled = false
|
||||||
|
shader_parameter/base_color = Color(0.2509804, 0.44705883, 0.20392157, 1)
|
||||||
|
shader_parameter/alpha_texture = ExtResource("2_rv6bf")
|
||||||
|
shader_parameter/leaves_scale = 0.65
|
||||||
|
shader_parameter/rotation_degrees = 180.0
|
||||||
|
shader_parameter/texture_offset = Vector2(0, 0)
|
||||||
|
shader_parameter/opacity = 1.0
|
||||||
|
shader_parameter/color_variance_noise = ExtResource("3_t3pfi")
|
||||||
|
shader_parameter/variance_scale = 0.1
|
||||||
|
shader_parameter/variance_color = Color(0.3019608, 0.5019608, 0.2, 1)
|
||||||
|
shader_parameter/variance_intensity = 0.400000019
|
||||||
|
shader_parameter/snow_color = Color(0.85, 0.9, 0.95, 1)
|
||||||
|
shader_parameter/height_min = 0.0
|
||||||
|
shader_parameter/height_max = 10.0
|
||||||
|
shader_parameter/shadow_intensity = 1.0
|
||||||
|
shader_parameter/highlight_intensity = 0.0
|
||||||
|
shader_parameter/light_steps = 8.50000035625
|
||||||
|
shader_parameter/random_mix = 0.0150000007125
|
||||||
|
shader_parameter/cast_shadow_strength = 0.6
|
||||||
BIN
tgcc/chunk/prop/flower/bush_alpha.png
Normal file
|
After Width: | Height: | Size: 15 KiB |
41
tgcc/chunk/prop/flower/bush_alpha.png.import
Normal file
@@ -0,0 +1,41 @@
|
|||||||
|
[remap]
|
||||||
|
|
||||||
|
importer="texture"
|
||||||
|
type="CompressedTexture2D"
|
||||||
|
uid="uid://bm0roy74xo3ce"
|
||||||
|
path.s3tc="res://.godot/imported/bush_alpha.png-029b0e2c7e775c67e6c17764564954c5.s3tc.ctex"
|
||||||
|
metadata={
|
||||||
|
"imported_formats": ["s3tc_bptc"],
|
||||||
|
"vram_texture": true
|
||||||
|
}
|
||||||
|
|
||||||
|
[deps]
|
||||||
|
|
||||||
|
source_file="res://tgcc/chunk/prop/flower/bush_alpha.png"
|
||||||
|
dest_files=["res://.godot/imported/bush_alpha.png-029b0e2c7e775c67e6c17764564954c5.s3tc.ctex"]
|
||||||
|
|
||||||
|
[params]
|
||||||
|
|
||||||
|
compress/mode=2
|
||||||
|
compress/high_quality=false
|
||||||
|
compress/lossy_quality=0.7
|
||||||
|
compress/uastc_level=0
|
||||||
|
compress/rdo_quality_loss=0.0
|
||||||
|
compress/hdr_compression=1
|
||||||
|
compress/normal_map=0
|
||||||
|
compress/channel_pack=0
|
||||||
|
mipmaps/generate=true
|
||||||
|
mipmaps/limit=-1
|
||||||
|
roughness/mode=0
|
||||||
|
roughness/src_normal=""
|
||||||
|
process/channel_remap/red=0
|
||||||
|
process/channel_remap/green=1
|
||||||
|
process/channel_remap/blue=2
|
||||||
|
process/channel_remap/alpha=3
|
||||||
|
process/fix_alpha_border=true
|
||||||
|
process/premult_alpha=false
|
||||||
|
process/normal_map_invert_y=false
|
||||||
|
process/hdr_as_srgb=false
|
||||||
|
process/hdr_clamp_exposure=false
|
||||||
|
process/size_limit=0
|
||||||
|
detect_3d/compress_to=0
|
||||||
10
tgcc/chunk/prop/flower/bush_colornoise.tres
Normal file
@@ -0,0 +1,10 @@
|
|||||||
|
[gd_resource type="NoiseTexture2D" format=3 uid="uid://bkuv31yvqmqr2"]
|
||||||
|
|
||||||
|
[sub_resource type="FastNoiseLite" id="FastNoiseLite_7w7fw"]
|
||||||
|
noise_type = 3
|
||||||
|
seed = 1
|
||||||
|
metadata/_preview_in_3d_space_ = true
|
||||||
|
|
||||||
|
[resource]
|
||||||
|
noise = SubResource("FastNoiseLite_7w7fw")
|
||||||
|
seamless = true
|
||||||
29
tgcc/chunk/prop/flower/flower.tres
Normal file
@@ -0,0 +1,29 @@
|
|||||||
|
[gd_resource type="ShaderMaterial" format=3 uid="uid://f5uoreickew7"]
|
||||||
|
|
||||||
|
[ext_resource type="Shader" uid="uid://8l8glwvvs7fb" path="res://core/daynight/grass_leaves.gdshader" id="1_28e45"]
|
||||||
|
[ext_resource type="Texture2D" uid="uid://bm0roy74xo3ce" path="res://tgcc/chunk/prop/flower/bush_alpha.png" id="2_4kf4f"]
|
||||||
|
[ext_resource type="Texture2D" uid="uid://c2d0pws3cjs0u" path="res://tgcc/chunk/prop/grass/grass_colornoise.tres" id="3_xd08a"]
|
||||||
|
|
||||||
|
[resource]
|
||||||
|
render_priority = 0
|
||||||
|
shader = ExtResource("1_28e45")
|
||||||
|
shader_parameter/billboard_enabled = true
|
||||||
|
shader_parameter/wind_enabled = false
|
||||||
|
shader_parameter/base_color = Color(0, 0.42745098, 0.9843137, 1)
|
||||||
|
shader_parameter/alpha_texture = ExtResource("2_4kf4f")
|
||||||
|
shader_parameter/leaves_scale = 0.365
|
||||||
|
shader_parameter/rotation_degrees = 180.0
|
||||||
|
shader_parameter/texture_offset = Vector2(0, 0)
|
||||||
|
shader_parameter/opacity = 1.0
|
||||||
|
shader_parameter/color_variance_noise = ExtResource("3_xd08a")
|
||||||
|
shader_parameter/variance_scale = 2.0
|
||||||
|
shader_parameter/variance_color = Color(0.49411765, 0.16862746, 1, 1)
|
||||||
|
shader_parameter/variance_intensity = 0.450000021375
|
||||||
|
shader_parameter/snow_color = Color(0.85, 0.9, 0.95, 1)
|
||||||
|
shader_parameter/height_min = 2.4
|
||||||
|
shader_parameter/height_max = 5.0
|
||||||
|
shader_parameter/shadow_intensity = 0.50000002375
|
||||||
|
shader_parameter/highlight_intensity = 0.0
|
||||||
|
shader_parameter/light_steps = 4.0
|
||||||
|
shader_parameter/random_mix = 0.0
|
||||||
|
shader_parameter/cast_shadow_strength = 0.6
|
||||||
|
Before Width: | Height: | Size: 6.2 KiB After Width: | Height: | Size: 6.2 KiB |
@@ -3,7 +3,7 @@
|
|||||||
importer="texture"
|
importer="texture"
|
||||||
type="CompressedTexture2D"
|
type="CompressedTexture2D"
|
||||||
uid="uid://ckm50mv8ejlki"
|
uid="uid://ckm50mv8ejlki"
|
||||||
path.s3tc="res://.godot/imported/grass_round.png-30ec44f830141339c1c11072611fbc50.s3tc.ctex"
|
path.s3tc="res://.godot/imported/grass_alpha1.png-7c4884a17b8da35ed1eef18af432c216.s3tc.ctex"
|
||||||
metadata={
|
metadata={
|
||||||
"imported_formats": ["s3tc_bptc"],
|
"imported_formats": ["s3tc_bptc"],
|
||||||
"vram_texture": true
|
"vram_texture": true
|
||||||
@@ -11,8 +11,8 @@ metadata={
|
|||||||
|
|
||||||
[deps]
|
[deps]
|
||||||
|
|
||||||
source_file="res://docs/museums/daynight/scenes/grass_test/grass_round.png"
|
source_file="res://tgcc/chunk/prop/grass/grass_alpha1.png"
|
||||||
dest_files=["res://.godot/imported/grass_round.png-30ec44f830141339c1c11072611fbc50.s3tc.ctex"]
|
dest_files=["res://.godot/imported/grass_alpha1.png-7c4884a17b8da35ed1eef18af432c216.s3tc.ctex"]
|
||||||
|
|
||||||
[params]
|
[params]
|
||||||
|
|
||||||
29
tgcc/chunk/prop/grass/grass_bank.tres
Normal file
@@ -0,0 +1,29 @@
|
|||||||
|
[gd_resource type="ShaderMaterial" format=3 uid="uid://jygb1hcokks5"]
|
||||||
|
|
||||||
|
[ext_resource type="Shader" uid="uid://8l8glwvvs7fb" path="res://core/daynight/grass_leaves.gdshader" id="1_imdal"]
|
||||||
|
[ext_resource type="Texture2D" uid="uid://ckm50mv8ejlki" path="res://tgcc/chunk/prop/grass/grass_alpha1.png" id="2_2hkcp"]
|
||||||
|
[ext_resource type="Texture2D" uid="uid://c2d0pws3cjs0u" path="res://tgcc/chunk/prop/grass/grass_colornoise.tres" id="3_atli4"]
|
||||||
|
|
||||||
|
[resource]
|
||||||
|
render_priority = 0
|
||||||
|
shader = ExtResource("1_imdal")
|
||||||
|
shader_parameter/billboard_enabled = true
|
||||||
|
shader_parameter/wind_enabled = true
|
||||||
|
shader_parameter/base_color = Color(0.3882353, 0.52156866, 0.20784314, 1)
|
||||||
|
shader_parameter/alpha_texture = ExtResource("2_2hkcp")
|
||||||
|
shader_parameter/leaves_scale = 0.65
|
||||||
|
shader_parameter/rotation_degrees = 180.0
|
||||||
|
shader_parameter/texture_offset = Vector2(0, 0)
|
||||||
|
shader_parameter/opacity = 1.0
|
||||||
|
shader_parameter/color_variance_noise = ExtResource("3_atli4")
|
||||||
|
shader_parameter/variance_scale = 0.1
|
||||||
|
shader_parameter/variance_color = Color(0.09803922, 0.18039216, 0.05490196, 1)
|
||||||
|
shader_parameter/variance_intensity = 0.90000004275
|
||||||
|
shader_parameter/snow_color = Color(0.85, 0.9, 0.95, 1)
|
||||||
|
shader_parameter/height_min = 0.0
|
||||||
|
shader_parameter/height_max = 5.0
|
||||||
|
shader_parameter/shadow_intensity = 0.610000028975
|
||||||
|
shader_parameter/highlight_intensity = 0.0
|
||||||
|
shader_parameter/light_steps = 2.150000054625
|
||||||
|
shader_parameter/random_mix = 0.0
|
||||||
|
shader_parameter/cast_shadow_strength = 0.6
|
||||||
37
tgcc/chunk/prop/grass/grass_chunk.tres
Normal file
@@ -0,0 +1,37 @@
|
|||||||
|
[gd_resource type="ShaderMaterial" format=3 uid="uid://fnjxocmx16b7"]
|
||||||
|
|
||||||
|
[ext_resource type="Shader" uid="uid://8l8glwvvs7fb" path="res://core/daynight/grass_leaves.gdshader" id="1_a5yde"]
|
||||||
|
[ext_resource type="Texture2D" uid="uid://ckm50mv8ejlki" path="res://tgcc/chunk/prop/grass/grass_alpha1.png" id="2_4hc02"]
|
||||||
|
|
||||||
|
[sub_resource type="FastNoiseLite" id="FastNoiseLite_xa3jw"]
|
||||||
|
noise_type = 3
|
||||||
|
seed = 1
|
||||||
|
metadata/_preview_in_3d_space_ = true
|
||||||
|
|
||||||
|
[sub_resource type="NoiseTexture2D" id="NoiseTexture2D_4hc02"]
|
||||||
|
noise = SubResource("FastNoiseLite_xa3jw")
|
||||||
|
seamless = true
|
||||||
|
|
||||||
|
[resource]
|
||||||
|
render_priority = 0
|
||||||
|
shader = ExtResource("1_a5yde")
|
||||||
|
shader_parameter/billboard_enabled = true
|
||||||
|
shader_parameter/wind_enabled = false
|
||||||
|
shader_parameter/base_color = Color(0.3882353, 0.52156866, 0.20784314, 1)
|
||||||
|
shader_parameter/alpha_texture = ExtResource("2_4hc02")
|
||||||
|
shader_parameter/leaves_scale = 0.65
|
||||||
|
shader_parameter/rotation_degrees = 180.0
|
||||||
|
shader_parameter/texture_offset = Vector2(0, 0)
|
||||||
|
shader_parameter/opacity = 1.0
|
||||||
|
shader_parameter/color_variance_noise = SubResource("NoiseTexture2D_4hc02")
|
||||||
|
shader_parameter/variance_scale = 0.15
|
||||||
|
shader_parameter/variance_color = Color(0.3, 0.5, 0.2, 1)
|
||||||
|
shader_parameter/variance_intensity = 0.750000035625
|
||||||
|
shader_parameter/snow_color = Color(0.85, 0.9, 0.95, 1)
|
||||||
|
shader_parameter/height_min = 0.0
|
||||||
|
shader_parameter/height_max = 5.0
|
||||||
|
shader_parameter/shadow_intensity = 0.70000003325
|
||||||
|
shader_parameter/highlight_intensity = 0.10000000475
|
||||||
|
shader_parameter/light_steps = 8.600000361
|
||||||
|
shader_parameter/random_mix = 0.0150000007125
|
||||||
|
shader_parameter/cast_shadow_strength = 0.6
|
||||||
@@ -1,15 +1,15 @@
|
|||||||
[gd_resource type="ShaderMaterial" format=3 uid="uid://bjrb33qwp1p43"]
|
[gd_resource type="ShaderMaterial" format=3 uid="uid://bjrb33qwp1p43"]
|
||||||
|
|
||||||
[ext_resource type="Shader" uid="uid://cs0xl7pc6e26h" path="res://core/daynight/tree_leaves.gdshader" id="1_fqby2"]
|
[ext_resource type="Shader" uid="uid://cs0xl7pc6e26h" path="res://core/daynight/tree_leaves.gdshader" id="1_0cuwq"]
|
||||||
[ext_resource type="Texture2D" uid="uid://cse6q7vqf14xo" path="res://docs/museums/daynight/scenes/grass_test/leaf_test2.png" id="2_0epvy"]
|
[ext_resource type="Texture2D" uid="uid://cse6q7vqf14xo" path="res://tgcc/chunk/prop/grass/rice_alpha.png" id="2_ldsj3"]
|
||||||
|
|
||||||
[resource]
|
[resource]
|
||||||
render_priority = 0
|
render_priority = 0
|
||||||
shader = ExtResource("1_fqby2")
|
shader = ExtResource("1_0cuwq")
|
||||||
shader_parameter/billboard_enabled = true
|
shader_parameter/billboard_enabled = true
|
||||||
shader_parameter/wind_enabled = false
|
shader_parameter/wind_enabled = false
|
||||||
shader_parameter/base_color = Color(0.103467666, 0.34917185, 0.14285779, 1)
|
shader_parameter/base_color = Color(0.103467666, 0.34917185, 0.14285779, 1)
|
||||||
shader_parameter/alpha_texture = ExtResource("2_0epvy")
|
shader_parameter/alpha_texture = ExtResource("2_ldsj3")
|
||||||
shader_parameter/leaves_scale = 0.92
|
shader_parameter/leaves_scale = 0.92
|
||||||
shader_parameter/rotation_degrees = 0.0
|
shader_parameter/rotation_degrees = 0.0
|
||||||
shader_parameter/texture_offset = Vector2(0, 0)
|
shader_parameter/texture_offset = Vector2(0, 0)
|
||||||
@@ -21,3 +21,4 @@ shader_parameter/highlight_intensity = 0.02000000095
|
|||||||
shader_parameter/light_steps = 10.0
|
shader_parameter/light_steps = 10.0
|
||||||
shader_parameter/random_mix = 0.138000006555
|
shader_parameter/random_mix = 0.138000006555
|
||||||
shader_parameter/cast_shadow_strength = 0.6
|
shader_parameter/cast_shadow_strength = 0.6
|
||||||
|
shader_parameter/wetness_darkening = 0.25
|
||||||
@@ -1,7 +1,7 @@
|
|||||||
[gd_resource type="ShaderMaterial" format=3 uid="uid://0x17mj2v807r"]
|
[gd_resource type="ShaderMaterial" format=3 uid="uid://0x17mj2v807r"]
|
||||||
|
|
||||||
[ext_resource type="Shader" uid="uid://cs0xl7pc6e26h" path="res://core/daynight/tree_leaves.gdshader" id="1_vpd27"]
|
[ext_resource type="Shader" uid="uid://cs0xl7pc6e26h" path="res://core/daynight/tree_leaves.gdshader" id="1_vpd27"]
|
||||||
[ext_resource type="Texture2D" uid="uid://ckm50mv8ejlki" path="res://docs/museums/daynight/scenes/grass_test/grass_round.png" id="2_wl0p2"]
|
[ext_resource type="Texture2D" uid="uid://ckm50mv8ejlki" path="res://tgcc/chunk/prop/grass/grass_alpha1.png" id="2_wl0p2"]
|
||||||
|
|
||||||
[resource]
|
[resource]
|
||||||
render_priority = 0
|
render_priority = 0
|
||||||
10
tgcc/chunk/prop/grass/grass_colornoise.tres
Normal file
@@ -0,0 +1,10 @@
|
|||||||
|
[gd_resource type="NoiseTexture2D" format=3 uid="uid://c2d0pws3cjs0u"]
|
||||||
|
|
||||||
|
[sub_resource type="FastNoiseLite" id="FastNoiseLite_xa3jw"]
|
||||||
|
noise_type = 3
|
||||||
|
seed = 1
|
||||||
|
metadata/_preview_in_3d_space_ = true
|
||||||
|
|
||||||
|
[resource]
|
||||||
|
noise = SubResource("FastNoiseLite_xa3jw")
|
||||||
|
seamless = true
|
||||||
|
Before Width: | Height: | Size: 5.7 KiB After Width: | Height: | Size: 5.7 KiB |
@@ -3,7 +3,7 @@
|
|||||||
importer="texture"
|
importer="texture"
|
||||||
type="CompressedTexture2D"
|
type="CompressedTexture2D"
|
||||||
uid="uid://cse6q7vqf14xo"
|
uid="uid://cse6q7vqf14xo"
|
||||||
path.s3tc="res://.godot/imported/leaf_test2.png-686716ab2f0a096c8cf30e27b69fd02b.s3tc.ctex"
|
path.s3tc="res://.godot/imported/rice_alpha.png-0440cc5ac0609ec5cc0d9f48590ac05e.s3tc.ctex"
|
||||||
metadata={
|
metadata={
|
||||||
"imported_formats": ["s3tc_bptc"],
|
"imported_formats": ["s3tc_bptc"],
|
||||||
"vram_texture": true
|
"vram_texture": true
|
||||||
@@ -11,8 +11,8 @@ metadata={
|
|||||||
|
|
||||||
[deps]
|
[deps]
|
||||||
|
|
||||||
source_file="res://docs/museums/daynight/scenes/grass_test/leaf_test2.png"
|
source_file="res://tgcc/chunk/prop/grass/rice_alpha.png"
|
||||||
dest_files=["res://.godot/imported/leaf_test2.png-686716ab2f0a096c8cf30e27b69fd02b.s3tc.ctex"]
|
dest_files=["res://.godot/imported/rice_alpha.png-0440cc5ac0609ec5cc0d9f48590ac05e.s3tc.ctex"]
|
||||||
|
|
||||||
[params]
|
[params]
|
||||||
|
|
||||||
@@ -1,13 +1,13 @@
|
|||||||
[gd_resource type="ShaderMaterial" format=3 uid="uid://biaudrjlfoflm"]
|
[gd_resource type="ShaderMaterial" format=3 uid="uid://biaudrjlfoflm"]
|
||||||
|
|
||||||
[ext_resource type="Shader" uid="uid://d0ch5ofrgf7y6" path="res://core/daynight/trunk_shader.gdshader" id="1_xfqg1"]
|
[ext_resource type="Shader" uid="uid://d0ch5ofrgf7y6" path="res://core/daynight/trunk_shader.gdshader" id="1_bjk76"]
|
||||||
[ext_resource type="Texture2D" uid="uid://jn4seoee6vtw" path="res://docs/museums/daynight/scenes/chunk_c_f_1/texture_train.png" id="2_xfqg1"]
|
[ext_resource type="Texture2D" uid="uid://jn4seoee6vtw" path="res://tgcc/chunk/prop/house/main_texture.png" id="2_ddhjw"]
|
||||||
|
|
||||||
[resource]
|
[resource]
|
||||||
render_priority = 0
|
render_priority = 0
|
||||||
shader = ExtResource("1_xfqg1")
|
shader = ExtResource("1_bjk76")
|
||||||
shader_parameter/albedo_color = Color(1, 1, 1, 1)
|
shader_parameter/albedo_color = Color(1, 1, 1, 1)
|
||||||
shader_parameter/albedo_texture = ExtResource("2_xfqg1")
|
shader_parameter/albedo_texture = ExtResource("2_ddhjw")
|
||||||
shader_parameter/use_texture = true
|
shader_parameter/use_texture = true
|
||||||
shader_parameter/uv_scale = Vector2(1, 1)
|
shader_parameter/uv_scale = Vector2(1, 1)
|
||||||
shader_parameter/palette_shift_y = 0.0
|
shader_parameter/palette_shift_y = 0.0
|
||||||
@@ -1,7 +1,7 @@
|
|||||||
[gd_resource type="ShaderMaterial" format=3 uid="uid://dbmyfi5t0yfy"]
|
[gd_resource type="ShaderMaterial" format=3 uid="uid://dbmyfi5t0yfy"]
|
||||||
|
|
||||||
[ext_resource type="Shader" uid="uid://d0ch5ofrgf7y6" path="res://core/daynight/trunk_shader.gdshader" id="1_6vpqk"]
|
[ext_resource type="Shader" uid="uid://d0ch5ofrgf7y6" path="res://core/daynight/trunk_shader.gdshader" id="1_6vpqk"]
|
||||||
[ext_resource type="Texture2D" uid="uid://jn4seoee6vtw" path="res://docs/museums/daynight/scenes/chunk_c_f_1/texture_train.png" id="2_b63ar"]
|
[ext_resource type="Texture2D" uid="uid://jn4seoee6vtw" path="res://tgcc/chunk/prop/house/main_texture.png" id="2_b63ar"]
|
||||||
|
|
||||||
[resource]
|
[resource]
|
||||||
render_priority = 0
|
render_priority = 0
|
||||||
BIN
tgcc/chunk/prop/house/main_texture.png
Normal file
|
After Width: | Height: | Size: 119 KiB |
@@ -3,7 +3,7 @@
|
|||||||
importer="texture"
|
importer="texture"
|
||||||
type="CompressedTexture2D"
|
type="CompressedTexture2D"
|
||||||
uid="uid://jn4seoee6vtw"
|
uid="uid://jn4seoee6vtw"
|
||||||
path.s3tc="res://.godot/imported/texture_train.png-b345f91064ba498ff15fc3e22d41c9ae.s3tc.ctex"
|
path.s3tc="res://.godot/imported/main_texture.png-2e1ec034e31eced76dbbaf8788cabe1b.s3tc.ctex"
|
||||||
metadata={
|
metadata={
|
||||||
"imported_formats": ["s3tc_bptc"],
|
"imported_formats": ["s3tc_bptc"],
|
||||||
"vram_texture": true
|
"vram_texture": true
|
||||||
@@ -11,8 +11,8 @@ metadata={
|
|||||||
|
|
||||||
[deps]
|
[deps]
|
||||||
|
|
||||||
source_file="res://docs/museums/daynight/scenes/chunk_c_f_1/texture_train.png"
|
source_file="res://tgcc/chunk/prop/house/main_texture.png"
|
||||||
dest_files=["res://.godot/imported/texture_train.png-b345f91064ba498ff15fc3e22d41c9ae.s3tc.ctex"]
|
dest_files=["res://.godot/imported/main_texture.png-2e1ec034e31eced76dbbaf8788cabe1b.s3tc.ctex"]
|
||||||
|
|
||||||
[params]
|
[params]
|
||||||
|
|
||||||
@@ -4,12 +4,12 @@ importer="scene"
|
|||||||
importer_version=1
|
importer_version=1
|
||||||
type="PackedScene"
|
type="PackedScene"
|
||||||
uid="uid://c87qfar8b0ak0"
|
uid="uid://c87qfar8b0ak0"
|
||||||
path="res://.godot/imported/palo_luce.fbx-6a36359752871a9bb6591069602e47dd.scn"
|
path="res://.godot/imported/pylon.fbx-f1cbcb96109bd93f822a49f84efd73c0.scn"
|
||||||
|
|
||||||
[deps]
|
[deps]
|
||||||
|
|
||||||
source_file="res://docs/museums/daynight/scenes/chunk_c_l_2/palo_luce.fbx"
|
source_file="res://tgcc/chunk/prop/pylon/pylon.fbx"
|
||||||
dest_files=["res://.godot/imported/palo_luce.fbx-6a36359752871a9bb6591069602e47dd.scn"]
|
dest_files=["res://.godot/imported/pylon.fbx-f1cbcb96109bd93f822a49f84efd73c0.scn"]
|
||||||
|
|
||||||
[params]
|
[params]
|
||||||
|
|
||||||
@@ -1,17 +1,16 @@
|
|||||||
[gd_scene format=3 uid="uid://bgb4pfflokl5s"]
|
[gd_scene format=3 uid="uid://bgb4pfflokl5s"]
|
||||||
|
|
||||||
[ext_resource type="PackedScene" uid="uid://c87qfar8b0ak0" path="res://docs/museums/daynight/scenes/chunk_c_l_2/palo_luce.fbx" id="1_jxwpf"]
|
[ext_resource type="PackedScene" uid="uid://c87qfar8b0ak0" path="res://tgcc/chunk/prop/pylon/pylon.fbx" id="1_lbnkk"]
|
||||||
[ext_resource type="Shader" uid="uid://d0ch5ofrgf7y6" path="res://core/daynight/trunk_shader.gdshader" id="2_3fmep"]
|
[ext_resource type="Shader" uid="uid://btf3qpe7kwqig" path="res://core/snow.gdshader" id="2_fle1d"]
|
||||||
[ext_resource type="Shader" uid="uid://btf3qpe7kwqig" path="res://core/snow.gdshader" id="2_wpudh"]
|
[ext_resource type="Shader" uid="uid://d0ch5ofrgf7y6" path="res://core/daynight/trunk_shader.gdshader" id="3_88p0r"]
|
||||||
|
|
||||||
[sub_resource type="ShaderMaterial" id="ShaderMaterial_ffi7j"]
|
[sub_resource type="ShaderMaterial" id="ShaderMaterial_ffi7j"]
|
||||||
render_priority = 0
|
render_priority = 0
|
||||||
shader = ExtResource("2_wpudh")
|
shader = ExtResource("2_fle1d")
|
||||||
shader_parameter/snow_color = Color(0.95, 0.98, 1, 1)
|
|
||||||
|
|
||||||
[sub_resource type="ShaderMaterial" id="ShaderMaterial_wpudh"]
|
[sub_resource type="ShaderMaterial" id="ShaderMaterial_wpudh"]
|
||||||
render_priority = 0
|
render_priority = 0
|
||||||
shader = ExtResource("2_3fmep")
|
shader = ExtResource("3_88p0r")
|
||||||
shader_parameter/albedo_color = Color(0.35906908, 0.35906908, 0.35906908, 1)
|
shader_parameter/albedo_color = Color(0.35906908, 0.35906908, 0.35906908, 1)
|
||||||
shader_parameter/use_texture = true
|
shader_parameter/use_texture = true
|
||||||
shader_parameter/uv_scale = Vector2(1, 1)
|
shader_parameter/uv_scale = Vector2(1, 1)
|
||||||
@@ -32,7 +31,7 @@ shader_parameter/emission_energy = 0.0
|
|||||||
|
|
||||||
[sub_resource type="ShaderMaterial" id="ShaderMaterial_q1sqc"]
|
[sub_resource type="ShaderMaterial" id="ShaderMaterial_q1sqc"]
|
||||||
render_priority = 0
|
render_priority = 0
|
||||||
shader = ExtResource("2_3fmep")
|
shader = ExtResource("3_88p0r")
|
||||||
shader_parameter/albedo_color = Color(0.35056442, 0.17908111, 0.051149555, 1)
|
shader_parameter/albedo_color = Color(0.35056442, 0.17908111, 0.051149555, 1)
|
||||||
shader_parameter/use_texture = true
|
shader_parameter/use_texture = true
|
||||||
shader_parameter/uv_scale = Vector2(1, 1)
|
shader_parameter/uv_scale = Vector2(1, 1)
|
||||||
@@ -51,9 +50,11 @@ shader_parameter/glint_sharpness = 32.0
|
|||||||
shader_parameter/emission_color = Color(0, 0, 0, 1)
|
shader_parameter/emission_color = Color(0, 0, 0, 1)
|
||||||
shader_parameter/emission_energy = 0.0
|
shader_parameter/emission_energy = 0.0
|
||||||
|
|
||||||
[node name="PaloLuce" unique_id=1542979535 instance=ExtResource("1_jxwpf")]
|
[node name="PaloLuce" unique_id=1607500596 instance=ExtResource("1_lbnkk")]
|
||||||
|
|
||||||
[node name="Cube" parent="." index="0" unique_id=885327009]
|
[node name="Cube" parent="." index="0" unique_id=1142687027]
|
||||||
material_overlay = SubResource("ShaderMaterial_ffi7j")
|
material_overlay = SubResource("ShaderMaterial_ffi7j")
|
||||||
surface_material_override/0 = SubResource("ShaderMaterial_wpudh")
|
surface_material_override/0 = SubResource("ShaderMaterial_wpudh")
|
||||||
surface_material_override/1 = SubResource("ShaderMaterial_q1sqc")
|
surface_material_override/1 = SubResource("ShaderMaterial_q1sqc")
|
||||||
|
|
||||||
|
[node name="Marker3D" type="Marker3D" parent="." index="1" unique_id=817453817]
|
||||||