Made quest system work much better

This commit is contained in:
Segey Lapin
2019-08-12 05:15:48 +03:00
parent 504181f800
commit 3595ca5dc6
10 changed files with 622 additions and 615 deletions

Binary file not shown.

View File

@@ -24,7 +24,7 @@ func update_quests():
if q.is_active():
q.update()
func start_quest(quest: Quest):
$start_quest_notification.start_notification(quest.get_title(), quest.get_description())
notifications.quest_notfication(quest.get_title(), quest.get_description())
func start_interaction(obj):
print("started interaction")
@@ -52,12 +52,15 @@ func start_training(ball):
ball_game.set_team_start(1, k.global_transform.origin)
elif k.name == "gate":
ball_game.set_team_gate(1, k)
var t_start = randi() % 2
for ch in world.cheer_team.keys():
assert world.cheer_team[ch] != null
ball_game.add_cheer(randi() % 2, world.cheer_team[ch])
ball_game.add_cheer(t_start, world.cheer_team[ch])
t_start ^= 1
for ch in world.team.keys():
assert world.team[ch] != null
ball_game.add_player(randi() % 2, world.team[ch])
ball_game.add_player(t_start, world.team[ch])
t_start ^= 1
ball_game.set_ball(ball)
ball_game.set_main(self)
add_child(ball_game)
@@ -132,9 +135,13 @@ func _ready():
tut_quest.connect("started", self, "start_quest")
world.quests.push_back(tut_quest)
var tut1_quest = WalkQuest.new("Walk to closet room", "Walk to closet room designated location", get_node("quest_dst_closet"))
tut1_quest.connect("started", self, "start_quest")
var tut2_quest = StatsQuest.new("Hire 6 team members", "Hire six team members to start with your team", {"player_count": 6})
tut2_quest.connect("started", self, "start_quest")
var tut3_quest = WalkQuest.new("Walk to gym", "Walk to gym designated location", get_node("quest_dst_gym"))
tut3_quest.connect("started", self, "start_quest")
var tut4_quest = StatsQuest.new("Train your team once", "Complete your team training once", {"team_train_count": 1})
tut4_quest.connect("started", self, "start_quest")
tut1_quest.set_next_quest(tut2_quest)
tut2_quest.set_next_quest(tut3_quest)
tut3_quest.set_next_quest(tut4_quest)

File diff suppressed because one or more lines are too long

View File

@@ -63,6 +63,7 @@ run/main_scene="res://ui/menu_root.tscn"
world="*res://autoloads/world.gd"
controls="*res://autoloads/controls.gd"
characters="*res://autoloads/characters.gd"
notifications="*res://autoloads/notifications.gd"
[input]

View File

@@ -1,36 +1,6 @@
extends Control
# Declare member variables here. Examples:
# var a = 2
# var b = "text"
# Called when the node enters the scene tree for the first time.
var expose_time:float = 0.0
var cooldown_time: float = 0.0
var queue = []
func _ready():
pass # Replace with function body.
# Called every frame. 'delta' is the elapsed time since the previous frame.
func _process(delta):
if queue.size() > 0:
if cooldown_time <= 0.0:
var item = queue[0]
queue.pop_front()
if visible:
hide()
$v/quest_title.text = item.title
$v/quest_desc.text = item.desc
expose_time = 0.0
cooldown_time = 2.0
show()
release_focus()
if expose_time > 10.0:
if visible:
hide()
cooldown_time -= delta
else:
expose_time += delta
func start_notification(title, desc):
queue.push_back({"title": title, "desc": desc})
print("start notification", title)
func display_notification(title, desc):
$v/quest_title.text = title
$v/quest_desc.text = desc
show()

View File

@@ -1,6 +1,34 @@
[gd_scene load_steps=2 format=2]
[gd_scene load_steps=7 format=2]
[ext_resource path="res://ui/start_quest_notification.gd" type="Script" id=1]
[ext_resource path="res://fonts/DroidSansFallback.ttf" type="DynamicFontData" id=2]
[sub_resource type="DynamicFont" id=1]
size = 36
outline_size = 1
outline_color = Color( 0, 0, 0, 1 )
use_filter = true
font_data = ExtResource( 2 )
[sub_resource type="DynamicFont" id=2]
size = 30
outline_size = 1
outline_color = Color( 0, 0, 0, 1 )
font_data = ExtResource( 2 )
[sub_resource type="DynamicFont" id=3]
size = 24
outline_size = 1
outline_color = Color( 0, 0, 0, 1 )
use_mipmaps = true
use_filter = true
font_data = ExtResource( 2 )
[sub_resource type="DynamicFont" id=4]
size = 20
outline_size = 1
outline_color = Color( 0, 0, 0, 1 )
font_data = ExtResource( 2 )
[node name="start_quest_notification" type="Control"]
anchor_left = 0.5
@@ -22,37 +50,42 @@ anchor_left = 0.5
anchor_top = 0.5
anchor_right = 0.5
anchor_bottom = 0.5
margin_left = -93.0
margin_top = -34.0
margin_right = 93.0
margin_bottom = 34.0
margin_left = -250.0
margin_top = -82.0
margin_right = 250.0
margin_bottom = 82.0
rect_min_size = Vector2( 500, 164 )
__meta__ = {
"_edit_use_anchors_": false
}
[node name="msg" type="Label" parent="v"]
margin_right = 186.0
margin_bottom = 14.0
margin_right = 500.0
margin_bottom = 48.0
custom_fonts/font = SubResource( 1 )
text = "Starting quest:"
align = 1
[node name="quest_title" type="Label" parent="v"]
margin_top = 18.0
margin_right = 186.0
margin_bottom = 32.0
margin_top = 52.0
margin_right = 500.0
margin_bottom = 92.0
custom_fonts/font = SubResource( 2 )
text = "quest title"
align = 1
[node name="quest_desc" type="Label" parent="v"]
margin_top = 36.0
margin_right = 186.0
margin_bottom = 50.0
margin_top = 96.0
margin_right = 500.0
margin_bottom = 129.0
custom_fonts/font = SubResource( 3 )
text = "quest description"
align = 3
[node name="msg2" type="Label" parent="v"]
margin_top = 54.0
margin_right = 186.0
margin_bottom = 68.0
margin_top = 133.0
margin_right = 500.0
margin_bottom = 160.0
custom_fonts/font = SubResource( 4 )
text = "Quest added to your journal"
align = 1

View File

@@ -2,13 +2,13 @@
[ext_resource id=1 path="concrete_floor_02_diff_1k.jpg" type="Texture"]
[ext_resource id=2 path="concrete_floor_02_spec_1k.jpg" type="Texture"]
[ext_resource id=2 path="concrete_floor_02_Disp_1k.jpg" type="Texture"]
[ext_resource id=3 path="concrete_floor_02_Nor_1k.jpg" type="Texture"]
[ext_resource id=3 path="concrete_floor_02_rough_1k.jpg" type="Texture"]
[ext_resource id=4 path="concrete_floor_02_Disp_1k.jpg" type="Texture"]
[ext_resource id=4 path="concrete_floor_02_Nor_1k.jpg" type="Texture"]
[ext_resource id=5 path="concrete_floor_02_rough_1k.jpg" type="Texture"]
[ext_resource id=5 path="concrete_floor_02_spec_1k.jpg" type="Texture"]
[sub_resource id=1 type="Shader"]
@@ -320,10 +320,10 @@ void fragment () {
resource_name = ""
shader = SubResource(3)
shader_param/texture_0 = ExtResource(1)
shader_param/texture_1 = ExtResource(2)
shader_param/texture_2 = ExtResource(3)
shader_param/texture_3 = ExtResource(5)
shader_param/texture_4 = ExtResource(4)
shader_param/texture_1 = ExtResource(5)
shader_param/texture_2 = ExtResource(4)
shader_param/texture_3 = ExtResource(3)
shader_param/texture_4 = ExtResource(2)
[sub_resource id=5 type="ArrayMesh"]
@@ -371,10 +371,10 @@ shader = SubResource(1)
resource_name = ""
shader = SubResource(3)
shader_param/texture_0 = ExtResource(1)
shader_param/texture_1 = ExtResource(2)
shader_param/texture_2 = ExtResource(3)
shader_param/texture_3 = ExtResource(5)
shader_param/texture_4 = ExtResource(4)
shader_param/texture_1 = ExtResource(5)
shader_param/texture_2 = ExtResource(4)
shader_param/texture_3 = ExtResource(3)
shader_param/texture_4 = ExtResource(2)
[sub_resource id=8 type="ArrayMesh"]
@@ -422,10 +422,10 @@ shader = SubResource(1)
resource_name = ""
shader = SubResource(3)
shader_param/texture_0 = ExtResource(1)
shader_param/texture_1 = ExtResource(2)
shader_param/texture_2 = ExtResource(3)
shader_param/texture_3 = ExtResource(5)
shader_param/texture_4 = ExtResource(4)
shader_param/texture_1 = ExtResource(5)
shader_param/texture_2 = ExtResource(4)
shader_param/texture_3 = ExtResource(3)
shader_param/texture_4 = ExtResource(2)
[sub_resource id=11 type="ArrayMesh"]
@@ -473,10 +473,10 @@ shader = SubResource(1)
resource_name = ""
shader = SubResource(3)
shader_param/texture_0 = ExtResource(1)
shader_param/texture_1 = ExtResource(2)
shader_param/texture_2 = ExtResource(3)
shader_param/texture_3 = ExtResource(5)
shader_param/texture_4 = ExtResource(4)
shader_param/texture_1 = ExtResource(5)
shader_param/texture_2 = ExtResource(4)
shader_param/texture_3 = ExtResource(3)
shader_param/texture_4 = ExtResource(2)
[sub_resource id=14 type="ArrayMesh"]
@@ -524,10 +524,10 @@ shader = SubResource(1)
resource_name = ""
shader = SubResource(3)
shader_param/texture_0 = ExtResource(1)
shader_param/texture_1 = ExtResource(2)
shader_param/texture_2 = ExtResource(3)
shader_param/texture_3 = ExtResource(5)
shader_param/texture_4 = ExtResource(4)
shader_param/texture_1 = ExtResource(5)
shader_param/texture_2 = ExtResource(4)
shader_param/texture_3 = ExtResource(3)
shader_param/texture_4 = ExtResource(2)
[sub_resource id=17 type="ArrayMesh"]
@@ -575,10 +575,10 @@ shader = SubResource(1)
resource_name = ""
shader = SubResource(3)
shader_param/texture_0 = ExtResource(1)
shader_param/texture_1 = ExtResource(2)
shader_param/texture_2 = ExtResource(3)
shader_param/texture_3 = ExtResource(5)
shader_param/texture_4 = ExtResource(4)
shader_param/texture_1 = ExtResource(5)
shader_param/texture_2 = ExtResource(4)
shader_param/texture_3 = ExtResource(3)
shader_param/texture_4 = ExtResource(2)
[sub_resource id=20 type="ArrayMesh"]
@@ -626,10 +626,10 @@ shader = SubResource(1)
resource_name = ""
shader = SubResource(3)
shader_param/texture_0 = ExtResource(1)
shader_param/texture_1 = ExtResource(2)
shader_param/texture_2 = ExtResource(3)
shader_param/texture_3 = ExtResource(5)
shader_param/texture_4 = ExtResource(4)
shader_param/texture_1 = ExtResource(5)
shader_param/texture_2 = ExtResource(4)
shader_param/texture_3 = ExtResource(3)
shader_param/texture_4 = ExtResource(2)
[sub_resource id=23 type="ArrayMesh"]
@@ -677,10 +677,10 @@ shader = SubResource(1)
resource_name = ""
shader = SubResource(3)
shader_param/texture_0 = ExtResource(1)
shader_param/texture_1 = ExtResource(2)
shader_param/texture_2 = ExtResource(3)
shader_param/texture_3 = ExtResource(5)
shader_param/texture_4 = ExtResource(4)
shader_param/texture_1 = ExtResource(5)
shader_param/texture_2 = ExtResource(4)
shader_param/texture_3 = ExtResource(3)
shader_param/texture_4 = ExtResource(2)
[sub_resource id=26 type="ArrayMesh"]
@@ -728,10 +728,10 @@ shader = SubResource(1)
resource_name = ""
shader = SubResource(3)
shader_param/texture_0 = ExtResource(1)
shader_param/texture_1 = ExtResource(2)
shader_param/texture_2 = ExtResource(3)
shader_param/texture_3 = ExtResource(5)
shader_param/texture_4 = ExtResource(4)
shader_param/texture_1 = ExtResource(5)
shader_param/texture_2 = ExtResource(4)
shader_param/texture_3 = ExtResource(3)
shader_param/texture_4 = ExtResource(2)
[sub_resource id=29 type="ArrayMesh"]
@@ -779,10 +779,10 @@ shader = SubResource(1)
resource_name = ""
shader = SubResource(3)
shader_param/texture_0 = ExtResource(1)
shader_param/texture_1 = ExtResource(2)
shader_param/texture_2 = ExtResource(3)
shader_param/texture_3 = ExtResource(5)
shader_param/texture_4 = ExtResource(4)
shader_param/texture_1 = ExtResource(5)
shader_param/texture_2 = ExtResource(4)
shader_param/texture_3 = ExtResource(3)
shader_param/texture_4 = ExtResource(2)
[sub_resource id=32 type="ArrayMesh"]
@@ -830,10 +830,10 @@ shader = SubResource(1)
resource_name = ""
shader = SubResource(3)
shader_param/texture_0 = ExtResource(1)
shader_param/texture_1 = ExtResource(2)
shader_param/texture_2 = ExtResource(3)
shader_param/texture_3 = ExtResource(5)
shader_param/texture_4 = ExtResource(4)
shader_param/texture_1 = ExtResource(5)
shader_param/texture_2 = ExtResource(4)
shader_param/texture_3 = ExtResource(3)
shader_param/texture_4 = ExtResource(2)
[sub_resource id=35 type="ArrayMesh"]
@@ -881,10 +881,10 @@ shader = SubResource(1)
resource_name = ""
shader = SubResource(3)
shader_param/texture_0 = ExtResource(1)
shader_param/texture_1 = ExtResource(2)
shader_param/texture_2 = ExtResource(3)
shader_param/texture_3 = ExtResource(5)
shader_param/texture_4 = ExtResource(4)
shader_param/texture_1 = ExtResource(5)
shader_param/texture_2 = ExtResource(4)
shader_param/texture_3 = ExtResource(3)
shader_param/texture_4 = ExtResource(2)
[sub_resource id=38 type="ArrayMesh"]
@@ -932,10 +932,10 @@ shader = SubResource(1)
resource_name = ""
shader = SubResource(3)
shader_param/texture_0 = ExtResource(1)
shader_param/texture_1 = ExtResource(2)
shader_param/texture_2 = ExtResource(3)
shader_param/texture_3 = ExtResource(5)
shader_param/texture_4 = ExtResource(4)
shader_param/texture_1 = ExtResource(5)
shader_param/texture_2 = ExtResource(4)
shader_param/texture_3 = ExtResource(3)
shader_param/texture_4 = ExtResource(2)
[sub_resource id=41 type="ArrayMesh"]
@@ -983,10 +983,10 @@ shader = SubResource(1)
resource_name = ""
shader = SubResource(3)
shader_param/texture_0 = ExtResource(1)
shader_param/texture_1 = ExtResource(2)
shader_param/texture_2 = ExtResource(3)
shader_param/texture_3 = ExtResource(5)
shader_param/texture_4 = ExtResource(4)
shader_param/texture_1 = ExtResource(5)
shader_param/texture_2 = ExtResource(4)
shader_param/texture_3 = ExtResource(3)
shader_param/texture_4 = ExtResource(2)
[sub_resource id=44 type="ArrayMesh"]
@@ -1034,10 +1034,10 @@ shader = SubResource(1)
resource_name = ""
shader = SubResource(3)
shader_param/texture_0 = ExtResource(1)
shader_param/texture_1 = ExtResource(2)
shader_param/texture_2 = ExtResource(3)
shader_param/texture_3 = ExtResource(5)
shader_param/texture_4 = ExtResource(4)
shader_param/texture_1 = ExtResource(5)
shader_param/texture_2 = ExtResource(4)
shader_param/texture_3 = ExtResource(3)
shader_param/texture_4 = ExtResource(2)
[sub_resource id=47 type="ArrayMesh"]
@@ -1085,10 +1085,10 @@ shader = SubResource(1)
resource_name = ""
shader = SubResource(3)
shader_param/texture_0 = ExtResource(1)
shader_param/texture_1 = ExtResource(2)
shader_param/texture_2 = ExtResource(3)
shader_param/texture_3 = ExtResource(5)
shader_param/texture_4 = ExtResource(4)
shader_param/texture_1 = ExtResource(5)
shader_param/texture_2 = ExtResource(4)
shader_param/texture_3 = ExtResource(3)
shader_param/texture_4 = ExtResource(2)
[sub_resource id=50 type="ArrayMesh"]
@@ -1136,10 +1136,10 @@ shader = SubResource(1)
resource_name = ""
shader = SubResource(3)
shader_param/texture_0 = ExtResource(1)
shader_param/texture_1 = ExtResource(2)
shader_param/texture_2 = ExtResource(3)
shader_param/texture_3 = ExtResource(5)
shader_param/texture_4 = ExtResource(4)
shader_param/texture_1 = ExtResource(5)
shader_param/texture_2 = ExtResource(4)
shader_param/texture_3 = ExtResource(3)
shader_param/texture_4 = ExtResource(2)
[sub_resource id=53 type="ArrayMesh"]
@@ -1187,10 +1187,10 @@ shader = SubResource(1)
resource_name = ""
shader = SubResource(3)
shader_param/texture_0 = ExtResource(1)
shader_param/texture_1 = ExtResource(2)
shader_param/texture_2 = ExtResource(3)
shader_param/texture_3 = ExtResource(5)
shader_param/texture_4 = ExtResource(4)
shader_param/texture_1 = ExtResource(5)
shader_param/texture_2 = ExtResource(4)
shader_param/texture_3 = ExtResource(3)
shader_param/texture_4 = ExtResource(2)
[sub_resource id=56 type="ArrayMesh"]
@@ -1238,10 +1238,10 @@ shader = SubResource(1)
resource_name = ""
shader = SubResource(3)
shader_param/texture_0 = ExtResource(1)
shader_param/texture_1 = ExtResource(2)
shader_param/texture_2 = ExtResource(3)
shader_param/texture_3 = ExtResource(5)
shader_param/texture_4 = ExtResource(4)
shader_param/texture_1 = ExtResource(5)
shader_param/texture_2 = ExtResource(4)
shader_param/texture_3 = ExtResource(3)
shader_param/texture_4 = ExtResource(2)
[sub_resource id=59 type="ArrayMesh"]
@@ -1289,10 +1289,10 @@ shader = SubResource(1)
resource_name = ""
shader = SubResource(3)
shader_param/texture_0 = ExtResource(1)
shader_param/texture_1 = ExtResource(2)
shader_param/texture_2 = ExtResource(3)
shader_param/texture_3 = ExtResource(5)
shader_param/texture_4 = ExtResource(4)
shader_param/texture_1 = ExtResource(5)
shader_param/texture_2 = ExtResource(4)
shader_param/texture_3 = ExtResource(3)
shader_param/texture_4 = ExtResource(2)
[sub_resource id=62 type="ArrayMesh"]
@@ -1340,10 +1340,10 @@ shader = SubResource(1)
resource_name = ""
shader = SubResource(3)
shader_param/texture_0 = ExtResource(1)
shader_param/texture_1 = ExtResource(2)
shader_param/texture_2 = ExtResource(3)
shader_param/texture_3 = ExtResource(5)
shader_param/texture_4 = ExtResource(4)
shader_param/texture_1 = ExtResource(5)
shader_param/texture_2 = ExtResource(4)
shader_param/texture_3 = ExtResource(3)
shader_param/texture_4 = ExtResource(2)
[sub_resource id=65 type="ArrayMesh"]
@@ -1391,10 +1391,10 @@ shader = SubResource(1)
resource_name = ""
shader = SubResource(3)
shader_param/texture_0 = ExtResource(1)
shader_param/texture_1 = ExtResource(2)
shader_param/texture_2 = ExtResource(3)
shader_param/texture_3 = ExtResource(5)
shader_param/texture_4 = ExtResource(4)
shader_param/texture_1 = ExtResource(5)
shader_param/texture_2 = ExtResource(4)
shader_param/texture_3 = ExtResource(3)
shader_param/texture_4 = ExtResource(2)
[sub_resource id=68 type="ArrayMesh"]
@@ -1442,10 +1442,10 @@ shader = SubResource(1)
resource_name = ""
shader = SubResource(3)
shader_param/texture_0 = ExtResource(1)
shader_param/texture_1 = ExtResource(2)
shader_param/texture_2 = ExtResource(3)
shader_param/texture_3 = ExtResource(5)
shader_param/texture_4 = ExtResource(4)
shader_param/texture_1 = ExtResource(5)
shader_param/texture_2 = ExtResource(4)
shader_param/texture_3 = ExtResource(3)
shader_param/texture_4 = ExtResource(2)
[sub_resource id=71 type="ArrayMesh"]
@@ -1493,10 +1493,10 @@ shader = SubResource(1)
resource_name = ""
shader = SubResource(3)
shader_param/texture_0 = ExtResource(1)
shader_param/texture_1 = ExtResource(2)
shader_param/texture_2 = ExtResource(3)
shader_param/texture_3 = ExtResource(5)
shader_param/texture_4 = ExtResource(4)
shader_param/texture_1 = ExtResource(5)
shader_param/texture_2 = ExtResource(4)
shader_param/texture_3 = ExtResource(3)
shader_param/texture_4 = ExtResource(2)
[sub_resource id=74 type="ArrayMesh"]
@@ -1544,10 +1544,10 @@ shader = SubResource(1)
resource_name = ""
shader = SubResource(3)
shader_param/texture_0 = ExtResource(1)
shader_param/texture_1 = ExtResource(2)
shader_param/texture_2 = ExtResource(3)
shader_param/texture_3 = ExtResource(5)
shader_param/texture_4 = ExtResource(4)
shader_param/texture_1 = ExtResource(5)
shader_param/texture_2 = ExtResource(4)
shader_param/texture_3 = ExtResource(3)
shader_param/texture_4 = ExtResource(2)
[sub_resource id=77 type="ArrayMesh"]
@@ -1595,10 +1595,10 @@ shader = SubResource(1)
resource_name = ""
shader = SubResource(3)
shader_param/texture_0 = ExtResource(1)
shader_param/texture_1 = ExtResource(2)
shader_param/texture_2 = ExtResource(3)
shader_param/texture_3 = ExtResource(5)
shader_param/texture_4 = ExtResource(4)
shader_param/texture_1 = ExtResource(5)
shader_param/texture_2 = ExtResource(4)
shader_param/texture_3 = ExtResource(3)
shader_param/texture_4 = ExtResource(2)
[sub_resource id=80 type="ArrayMesh"]
@@ -1646,10 +1646,10 @@ shader = SubResource(1)
resource_name = ""
shader = SubResource(3)
shader_param/texture_0 = ExtResource(1)
shader_param/texture_1 = ExtResource(2)
shader_param/texture_2 = ExtResource(3)
shader_param/texture_3 = ExtResource(5)
shader_param/texture_4 = ExtResource(4)
shader_param/texture_1 = ExtResource(5)
shader_param/texture_2 = ExtResource(4)
shader_param/texture_3 = ExtResource(3)
shader_param/texture_4 = ExtResource(2)
[sub_resource id=83 type="ArrayMesh"]
@@ -1697,10 +1697,10 @@ shader = SubResource(1)
resource_name = ""
shader = SubResource(3)
shader_param/texture_0 = ExtResource(1)
shader_param/texture_1 = ExtResource(2)
shader_param/texture_2 = ExtResource(3)
shader_param/texture_3 = ExtResource(5)
shader_param/texture_4 = ExtResource(4)
shader_param/texture_1 = ExtResource(5)
shader_param/texture_2 = ExtResource(4)
shader_param/texture_3 = ExtResource(3)
shader_param/texture_4 = ExtResource(2)
[sub_resource id=86 type="ArrayMesh"]
@@ -1748,10 +1748,10 @@ shader = SubResource(1)
resource_name = ""
shader = SubResource(3)
shader_param/texture_0 = ExtResource(1)
shader_param/texture_1 = ExtResource(2)
shader_param/texture_2 = ExtResource(3)
shader_param/texture_3 = ExtResource(5)
shader_param/texture_4 = ExtResource(4)
shader_param/texture_1 = ExtResource(5)
shader_param/texture_2 = ExtResource(4)
shader_param/texture_3 = ExtResource(3)
shader_param/texture_4 = ExtResource(2)
[sub_resource id=89 type="ArrayMesh"]
@@ -1799,10 +1799,10 @@ shader = SubResource(1)
resource_name = ""
shader = SubResource(3)
shader_param/texture_0 = ExtResource(1)
shader_param/texture_1 = ExtResource(2)
shader_param/texture_2 = ExtResource(3)
shader_param/texture_3 = ExtResource(5)
shader_param/texture_4 = ExtResource(4)
shader_param/texture_1 = ExtResource(5)
shader_param/texture_2 = ExtResource(4)
shader_param/texture_3 = ExtResource(3)
shader_param/texture_4 = ExtResource(2)
[sub_resource id=92 type="ArrayMesh"]
@@ -1850,10 +1850,10 @@ shader = SubResource(1)
resource_name = ""
shader = SubResource(3)
shader_param/texture_0 = ExtResource(1)
shader_param/texture_1 = ExtResource(2)
shader_param/texture_2 = ExtResource(3)
shader_param/texture_3 = ExtResource(5)
shader_param/texture_4 = ExtResource(4)
shader_param/texture_1 = ExtResource(5)
shader_param/texture_2 = ExtResource(4)
shader_param/texture_3 = ExtResource(3)
shader_param/texture_4 = ExtResource(2)
[sub_resource id=95 type="ArrayMesh"]
@@ -1901,10 +1901,10 @@ shader = SubResource(1)
resource_name = ""
shader = SubResource(3)
shader_param/texture_0 = ExtResource(1)
shader_param/texture_1 = ExtResource(2)
shader_param/texture_2 = ExtResource(3)
shader_param/texture_3 = ExtResource(5)
shader_param/texture_4 = ExtResource(4)
shader_param/texture_1 = ExtResource(5)
shader_param/texture_2 = ExtResource(4)
shader_param/texture_3 = ExtResource(3)
shader_param/texture_4 = ExtResource(2)
[sub_resource id=98 type="ArrayMesh"]
@@ -1952,10 +1952,10 @@ shader = SubResource(1)
resource_name = ""
shader = SubResource(3)
shader_param/texture_0 = ExtResource(1)
shader_param/texture_1 = ExtResource(2)
shader_param/texture_2 = ExtResource(3)
shader_param/texture_3 = ExtResource(5)
shader_param/texture_4 = ExtResource(4)
shader_param/texture_1 = ExtResource(5)
shader_param/texture_2 = ExtResource(4)
shader_param/texture_3 = ExtResource(3)
shader_param/texture_4 = ExtResource(2)
[sub_resource id=101 type="ArrayMesh"]
@@ -2003,10 +2003,10 @@ shader = SubResource(1)
resource_name = ""
shader = SubResource(3)
shader_param/texture_0 = ExtResource(1)
shader_param/texture_1 = ExtResource(2)
shader_param/texture_2 = ExtResource(3)
shader_param/texture_3 = ExtResource(5)
shader_param/texture_4 = ExtResource(4)
shader_param/texture_1 = ExtResource(5)
shader_param/texture_2 = ExtResource(4)
shader_param/texture_3 = ExtResource(3)
shader_param/texture_4 = ExtResource(2)
[sub_resource id=104 type="ArrayMesh"]
@@ -2054,10 +2054,10 @@ shader = SubResource(1)
resource_name = ""
shader = SubResource(3)
shader_param/texture_0 = ExtResource(1)
shader_param/texture_1 = ExtResource(2)
shader_param/texture_2 = ExtResource(3)
shader_param/texture_3 = ExtResource(5)
shader_param/texture_4 = ExtResource(4)
shader_param/texture_1 = ExtResource(5)
shader_param/texture_2 = ExtResource(4)
shader_param/texture_3 = ExtResource(3)
shader_param/texture_4 = ExtResource(2)
[sub_resource id=107 type="ArrayMesh"]
@@ -2105,10 +2105,10 @@ shader = SubResource(1)
resource_name = ""
shader = SubResource(3)
shader_param/texture_0 = ExtResource(1)
shader_param/texture_1 = ExtResource(2)
shader_param/texture_2 = ExtResource(3)
shader_param/texture_3 = ExtResource(5)
shader_param/texture_4 = ExtResource(4)
shader_param/texture_1 = ExtResource(5)
shader_param/texture_2 = ExtResource(4)
shader_param/texture_3 = ExtResource(3)
shader_param/texture_4 = ExtResource(2)
[sub_resource id=110 type="ArrayMesh"]
@@ -2156,10 +2156,10 @@ shader = SubResource(1)
resource_name = ""
shader = SubResource(3)
shader_param/texture_0 = ExtResource(1)
shader_param/texture_1 = ExtResource(2)
shader_param/texture_2 = ExtResource(3)
shader_param/texture_3 = ExtResource(5)
shader_param/texture_4 = ExtResource(4)
shader_param/texture_1 = ExtResource(5)
shader_param/texture_2 = ExtResource(4)
shader_param/texture_3 = ExtResource(3)
shader_param/texture_4 = ExtResource(2)
[sub_resource id=113 type="ArrayMesh"]
@@ -2207,10 +2207,10 @@ shader = SubResource(1)
resource_name = ""
shader = SubResource(3)
shader_param/texture_0 = ExtResource(1)
shader_param/texture_1 = ExtResource(2)
shader_param/texture_2 = ExtResource(3)
shader_param/texture_3 = ExtResource(5)
shader_param/texture_4 = ExtResource(4)
shader_param/texture_1 = ExtResource(5)
shader_param/texture_2 = ExtResource(4)
shader_param/texture_3 = ExtResource(3)
shader_param/texture_4 = ExtResource(2)
[sub_resource id=116 type="ArrayMesh"]
@@ -2258,10 +2258,10 @@ shader = SubResource(1)
resource_name = ""
shader = SubResource(3)
shader_param/texture_0 = ExtResource(1)
shader_param/texture_1 = ExtResource(2)
shader_param/texture_2 = ExtResource(3)
shader_param/texture_3 = ExtResource(5)
shader_param/texture_4 = ExtResource(4)
shader_param/texture_1 = ExtResource(5)
shader_param/texture_2 = ExtResource(4)
shader_param/texture_3 = ExtResource(3)
shader_param/texture_4 = ExtResource(2)
[sub_resource id=119 type="ArrayMesh"]
@@ -2309,10 +2309,10 @@ shader = SubResource(1)
resource_name = ""
shader = SubResource(3)
shader_param/texture_0 = ExtResource(1)
shader_param/texture_1 = ExtResource(2)
shader_param/texture_2 = ExtResource(3)
shader_param/texture_3 = ExtResource(5)
shader_param/texture_4 = ExtResource(4)
shader_param/texture_1 = ExtResource(5)
shader_param/texture_2 = ExtResource(4)
shader_param/texture_3 = ExtResource(3)
shader_param/texture_4 = ExtResource(2)
[sub_resource id=122 type="ArrayMesh"]
@@ -2360,10 +2360,10 @@ shader = SubResource(1)
resource_name = ""
shader = SubResource(3)
shader_param/texture_0 = ExtResource(1)
shader_param/texture_1 = ExtResource(2)
shader_param/texture_2 = ExtResource(3)
shader_param/texture_3 = ExtResource(5)
shader_param/texture_4 = ExtResource(4)
shader_param/texture_1 = ExtResource(5)
shader_param/texture_2 = ExtResource(4)
shader_param/texture_3 = ExtResource(3)
shader_param/texture_4 = ExtResource(2)
[sub_resource id=125 type="ArrayMesh"]
@@ -2411,10 +2411,10 @@ shader = SubResource(1)
resource_name = ""
shader = SubResource(3)
shader_param/texture_0 = ExtResource(1)
shader_param/texture_1 = ExtResource(2)
shader_param/texture_2 = ExtResource(3)
shader_param/texture_3 = ExtResource(5)
shader_param/texture_4 = ExtResource(4)
shader_param/texture_1 = ExtResource(5)
shader_param/texture_2 = ExtResource(4)
shader_param/texture_3 = ExtResource(3)
shader_param/texture_4 = ExtResource(2)
[sub_resource id=128 type="ArrayMesh"]
@@ -2462,10 +2462,10 @@ shader = SubResource(1)
resource_name = ""
shader = SubResource(3)
shader_param/texture_0 = ExtResource(1)
shader_param/texture_1 = ExtResource(2)
shader_param/texture_2 = ExtResource(3)
shader_param/texture_3 = ExtResource(5)
shader_param/texture_4 = ExtResource(4)
shader_param/texture_1 = ExtResource(5)
shader_param/texture_2 = ExtResource(4)
shader_param/texture_3 = ExtResource(3)
shader_param/texture_4 = ExtResource(2)
[sub_resource id=131 type="ArrayMesh"]
@@ -2508,10 +2508,10 @@ surfaces/1 = {
resource_name = ""
shader = SubResource(3)
shader_param/texture_0 = ExtResource(1)
shader_param/texture_1 = ExtResource(2)
shader_param/texture_2 = ExtResource(3)
shader_param/texture_3 = ExtResource(5)
shader_param/texture_4 = ExtResource(4)
shader_param/texture_1 = ExtResource(5)
shader_param/texture_2 = ExtResource(4)
shader_param/texture_3 = ExtResource(3)
shader_param/texture_4 = ExtResource(2)
[sub_resource id=133 type="ShaderMaterial"]
@@ -2564,10 +2564,10 @@ shader = SubResource(1)
resource_name = ""
shader = SubResource(3)
shader_param/texture_0 = ExtResource(1)
shader_param/texture_1 = ExtResource(2)
shader_param/texture_2 = ExtResource(3)
shader_param/texture_3 = ExtResource(5)
shader_param/texture_4 = ExtResource(4)
shader_param/texture_1 = ExtResource(5)
shader_param/texture_2 = ExtResource(4)
shader_param/texture_3 = ExtResource(3)
shader_param/texture_4 = ExtResource(2)
[sub_resource id=137 type="ArrayMesh"]
@@ -2615,10 +2615,10 @@ shader = SubResource(1)
resource_name = ""
shader = SubResource(3)
shader_param/texture_0 = ExtResource(1)
shader_param/texture_1 = ExtResource(2)
shader_param/texture_2 = ExtResource(3)
shader_param/texture_3 = ExtResource(5)
shader_param/texture_4 = ExtResource(4)
shader_param/texture_1 = ExtResource(5)
shader_param/texture_2 = ExtResource(4)
shader_param/texture_3 = ExtResource(3)
shader_param/texture_4 = ExtResource(2)
[sub_resource id=140 type="ArrayMesh"]
@@ -2666,10 +2666,10 @@ shader = SubResource(1)
resource_name = ""
shader = SubResource(3)
shader_param/texture_0 = ExtResource(1)
shader_param/texture_1 = ExtResource(2)
shader_param/texture_2 = ExtResource(3)
shader_param/texture_3 = ExtResource(5)
shader_param/texture_4 = ExtResource(4)
shader_param/texture_1 = ExtResource(5)
shader_param/texture_2 = ExtResource(4)
shader_param/texture_3 = ExtResource(3)
shader_param/texture_4 = ExtResource(2)
[sub_resource id=143 type="ArrayMesh"]
@@ -2717,10 +2717,10 @@ shader = SubResource(1)
resource_name = ""
shader = SubResource(3)
shader_param/texture_0 = ExtResource(1)
shader_param/texture_1 = ExtResource(2)
shader_param/texture_2 = ExtResource(3)
shader_param/texture_3 = ExtResource(5)
shader_param/texture_4 = ExtResource(4)
shader_param/texture_1 = ExtResource(5)
shader_param/texture_2 = ExtResource(4)
shader_param/texture_3 = ExtResource(3)
shader_param/texture_4 = ExtResource(2)
[sub_resource id=146 type="ArrayMesh"]

View File

@@ -2,13 +2,13 @@
[ext_resource id=1 path="concrete_floor_02_diff_1k.jpg" type="Texture"]
[ext_resource id=2 path="concrete_floor_02_spec_1k.jpg" type="Texture"]
[ext_resource id=2 path="concrete_floor_02_Disp_1k.jpg" type="Texture"]
[ext_resource id=3 path="concrete_floor_02_Nor_1k.jpg" type="Texture"]
[ext_resource id=3 path="concrete_floor_02_rough_1k.jpg" type="Texture"]
[ext_resource id=4 path="concrete_floor_02_Disp_1k.jpg" type="Texture"]
[ext_resource id=4 path="concrete_floor_02_Nor_1k.jpg" type="Texture"]
[ext_resource id=5 path="concrete_floor_02_rough_1k.jpg" type="Texture"]
[ext_resource id=5 path="concrete_floor_02_spec_1k.jpg" type="Texture"]
[sub_resource id=1 type="Shader"]
@@ -320,10 +320,10 @@ void fragment () {
resource_name = ""
shader = SubResource(3)
shader_param/texture_0 = ExtResource(1)
shader_param/texture_1 = ExtResource(2)
shader_param/texture_2 = ExtResource(3)
shader_param/texture_3 = ExtResource(5)
shader_param/texture_4 = ExtResource(4)
shader_param/texture_1 = ExtResource(5)
shader_param/texture_2 = ExtResource(4)
shader_param/texture_3 = ExtResource(3)
shader_param/texture_4 = ExtResource(2)
[sub_resource id=5 type="ArrayMesh"]
@@ -371,10 +371,10 @@ shader = SubResource(1)
resource_name = ""
shader = SubResource(3)
shader_param/texture_0 = ExtResource(1)
shader_param/texture_1 = ExtResource(2)
shader_param/texture_2 = ExtResource(3)
shader_param/texture_3 = ExtResource(5)
shader_param/texture_4 = ExtResource(4)
shader_param/texture_1 = ExtResource(5)
shader_param/texture_2 = ExtResource(4)
shader_param/texture_3 = ExtResource(3)
shader_param/texture_4 = ExtResource(2)
[sub_resource id=8 type="ArrayMesh"]
@@ -422,10 +422,10 @@ shader = SubResource(1)
resource_name = ""
shader = SubResource(3)
shader_param/texture_0 = ExtResource(1)
shader_param/texture_1 = ExtResource(2)
shader_param/texture_2 = ExtResource(3)
shader_param/texture_3 = ExtResource(5)
shader_param/texture_4 = ExtResource(4)
shader_param/texture_1 = ExtResource(5)
shader_param/texture_2 = ExtResource(4)
shader_param/texture_3 = ExtResource(3)
shader_param/texture_4 = ExtResource(2)
[sub_resource id=11 type="ArrayMesh"]
@@ -473,10 +473,10 @@ shader = SubResource(1)
resource_name = ""
shader = SubResource(3)
shader_param/texture_0 = ExtResource(1)
shader_param/texture_1 = ExtResource(2)
shader_param/texture_2 = ExtResource(3)
shader_param/texture_3 = ExtResource(5)
shader_param/texture_4 = ExtResource(4)
shader_param/texture_1 = ExtResource(5)
shader_param/texture_2 = ExtResource(4)
shader_param/texture_3 = ExtResource(3)
shader_param/texture_4 = ExtResource(2)
[sub_resource id=14 type="ArrayMesh"]
@@ -524,10 +524,10 @@ shader = SubResource(1)
resource_name = ""
shader = SubResource(3)
shader_param/texture_0 = ExtResource(1)
shader_param/texture_1 = ExtResource(2)
shader_param/texture_2 = ExtResource(3)
shader_param/texture_3 = ExtResource(5)
shader_param/texture_4 = ExtResource(4)
shader_param/texture_1 = ExtResource(5)
shader_param/texture_2 = ExtResource(4)
shader_param/texture_3 = ExtResource(3)
shader_param/texture_4 = ExtResource(2)
[sub_resource id=17 type="ArrayMesh"]
@@ -575,10 +575,10 @@ shader = SubResource(1)
resource_name = ""
shader = SubResource(3)
shader_param/texture_0 = ExtResource(1)
shader_param/texture_1 = ExtResource(2)
shader_param/texture_2 = ExtResource(3)
shader_param/texture_3 = ExtResource(5)
shader_param/texture_4 = ExtResource(4)
shader_param/texture_1 = ExtResource(5)
shader_param/texture_2 = ExtResource(4)
shader_param/texture_3 = ExtResource(3)
shader_param/texture_4 = ExtResource(2)
[sub_resource id=20 type="ArrayMesh"]
@@ -626,10 +626,10 @@ shader = SubResource(1)
resource_name = ""
shader = SubResource(3)
shader_param/texture_0 = ExtResource(1)
shader_param/texture_1 = ExtResource(2)
shader_param/texture_2 = ExtResource(3)
shader_param/texture_3 = ExtResource(5)
shader_param/texture_4 = ExtResource(4)
shader_param/texture_1 = ExtResource(5)
shader_param/texture_2 = ExtResource(4)
shader_param/texture_3 = ExtResource(3)
shader_param/texture_4 = ExtResource(2)
[sub_resource id=23 type="ArrayMesh"]
@@ -677,10 +677,10 @@ shader = SubResource(1)
resource_name = ""
shader = SubResource(3)
shader_param/texture_0 = ExtResource(1)
shader_param/texture_1 = ExtResource(2)
shader_param/texture_2 = ExtResource(3)
shader_param/texture_3 = ExtResource(5)
shader_param/texture_4 = ExtResource(4)
shader_param/texture_1 = ExtResource(5)
shader_param/texture_2 = ExtResource(4)
shader_param/texture_3 = ExtResource(3)
shader_param/texture_4 = ExtResource(2)
[sub_resource id=26 type="ArrayMesh"]
@@ -728,10 +728,10 @@ shader = SubResource(1)
resource_name = ""
shader = SubResource(3)
shader_param/texture_0 = ExtResource(1)
shader_param/texture_1 = ExtResource(2)
shader_param/texture_2 = ExtResource(3)
shader_param/texture_3 = ExtResource(5)
shader_param/texture_4 = ExtResource(4)
shader_param/texture_1 = ExtResource(5)
shader_param/texture_2 = ExtResource(4)
shader_param/texture_3 = ExtResource(3)
shader_param/texture_4 = ExtResource(2)
[sub_resource id=29 type="ArrayMesh"]
@@ -779,10 +779,10 @@ shader = SubResource(1)
resource_name = ""
shader = SubResource(3)
shader_param/texture_0 = ExtResource(1)
shader_param/texture_1 = ExtResource(2)
shader_param/texture_2 = ExtResource(3)
shader_param/texture_3 = ExtResource(5)
shader_param/texture_4 = ExtResource(4)
shader_param/texture_1 = ExtResource(5)
shader_param/texture_2 = ExtResource(4)
shader_param/texture_3 = ExtResource(3)
shader_param/texture_4 = ExtResource(2)
[sub_resource id=32 type="ArrayMesh"]
@@ -830,10 +830,10 @@ shader = SubResource(1)
resource_name = ""
shader = SubResource(3)
shader_param/texture_0 = ExtResource(1)
shader_param/texture_1 = ExtResource(2)
shader_param/texture_2 = ExtResource(3)
shader_param/texture_3 = ExtResource(5)
shader_param/texture_4 = ExtResource(4)
shader_param/texture_1 = ExtResource(5)
shader_param/texture_2 = ExtResource(4)
shader_param/texture_3 = ExtResource(3)
shader_param/texture_4 = ExtResource(2)
[sub_resource id=35 type="ArrayMesh"]
@@ -881,10 +881,10 @@ shader = SubResource(1)
resource_name = ""
shader = SubResource(3)
shader_param/texture_0 = ExtResource(1)
shader_param/texture_1 = ExtResource(2)
shader_param/texture_2 = ExtResource(3)
shader_param/texture_3 = ExtResource(5)
shader_param/texture_4 = ExtResource(4)
shader_param/texture_1 = ExtResource(5)
shader_param/texture_2 = ExtResource(4)
shader_param/texture_3 = ExtResource(3)
shader_param/texture_4 = ExtResource(2)
[sub_resource id=38 type="ArrayMesh"]
@@ -932,10 +932,10 @@ shader = SubResource(1)
resource_name = ""
shader = SubResource(3)
shader_param/texture_0 = ExtResource(1)
shader_param/texture_1 = ExtResource(2)
shader_param/texture_2 = ExtResource(3)
shader_param/texture_3 = ExtResource(5)
shader_param/texture_4 = ExtResource(4)
shader_param/texture_1 = ExtResource(5)
shader_param/texture_2 = ExtResource(4)
shader_param/texture_3 = ExtResource(3)
shader_param/texture_4 = ExtResource(2)
[sub_resource id=41 type="ArrayMesh"]
@@ -983,10 +983,10 @@ shader = SubResource(1)
resource_name = ""
shader = SubResource(3)
shader_param/texture_0 = ExtResource(1)
shader_param/texture_1 = ExtResource(2)
shader_param/texture_2 = ExtResource(3)
shader_param/texture_3 = ExtResource(5)
shader_param/texture_4 = ExtResource(4)
shader_param/texture_1 = ExtResource(5)
shader_param/texture_2 = ExtResource(4)
shader_param/texture_3 = ExtResource(3)
shader_param/texture_4 = ExtResource(2)
[sub_resource id=44 type="ArrayMesh"]
@@ -1034,10 +1034,10 @@ shader = SubResource(1)
resource_name = ""
shader = SubResource(3)
shader_param/texture_0 = ExtResource(1)
shader_param/texture_1 = ExtResource(2)
shader_param/texture_2 = ExtResource(3)
shader_param/texture_3 = ExtResource(5)
shader_param/texture_4 = ExtResource(4)
shader_param/texture_1 = ExtResource(5)
shader_param/texture_2 = ExtResource(4)
shader_param/texture_3 = ExtResource(3)
shader_param/texture_4 = ExtResource(2)
[sub_resource id=47 type="ArrayMesh"]
@@ -1085,10 +1085,10 @@ shader = SubResource(1)
resource_name = ""
shader = SubResource(3)
shader_param/texture_0 = ExtResource(1)
shader_param/texture_1 = ExtResource(2)
shader_param/texture_2 = ExtResource(3)
shader_param/texture_3 = ExtResource(5)
shader_param/texture_4 = ExtResource(4)
shader_param/texture_1 = ExtResource(5)
shader_param/texture_2 = ExtResource(4)
shader_param/texture_3 = ExtResource(3)
shader_param/texture_4 = ExtResource(2)
[sub_resource id=50 type="ArrayMesh"]
@@ -1136,10 +1136,10 @@ shader = SubResource(1)
resource_name = ""
shader = SubResource(3)
shader_param/texture_0 = ExtResource(1)
shader_param/texture_1 = ExtResource(2)
shader_param/texture_2 = ExtResource(3)
shader_param/texture_3 = ExtResource(5)
shader_param/texture_4 = ExtResource(4)
shader_param/texture_1 = ExtResource(5)
shader_param/texture_2 = ExtResource(4)
shader_param/texture_3 = ExtResource(3)
shader_param/texture_4 = ExtResource(2)
[sub_resource id=53 type="ArrayMesh"]
@@ -1212,10 +1212,10 @@ shader = SubResource(1)
resource_name = ""
shader = SubResource(3)
shader_param/texture_0 = ExtResource(1)
shader_param/texture_1 = ExtResource(2)
shader_param/texture_2 = ExtResource(3)
shader_param/texture_3 = ExtResource(5)
shader_param/texture_4 = ExtResource(4)
shader_param/texture_1 = ExtResource(5)
shader_param/texture_2 = ExtResource(4)
shader_param/texture_3 = ExtResource(3)
shader_param/texture_4 = ExtResource(2)
[sub_resource id=58 type="ArrayMesh"]
@@ -1263,10 +1263,10 @@ shader = SubResource(1)
resource_name = ""
shader = SubResource(3)
shader_param/texture_0 = ExtResource(1)
shader_param/texture_1 = ExtResource(2)
shader_param/texture_2 = ExtResource(3)
shader_param/texture_3 = ExtResource(5)
shader_param/texture_4 = ExtResource(4)
shader_param/texture_1 = ExtResource(5)
shader_param/texture_2 = ExtResource(4)
shader_param/texture_3 = ExtResource(3)
shader_param/texture_4 = ExtResource(2)
[sub_resource id=61 type="ArrayMesh"]
@@ -1314,10 +1314,10 @@ shader = SubResource(1)
resource_name = ""
shader = SubResource(3)
shader_param/texture_0 = ExtResource(1)
shader_param/texture_1 = ExtResource(2)
shader_param/texture_2 = ExtResource(3)
shader_param/texture_3 = ExtResource(5)
shader_param/texture_4 = ExtResource(4)
shader_param/texture_1 = ExtResource(5)
shader_param/texture_2 = ExtResource(4)
shader_param/texture_3 = ExtResource(3)
shader_param/texture_4 = ExtResource(2)
[sub_resource id=64 type="ArrayMesh"]
@@ -1365,10 +1365,10 @@ shader = SubResource(1)
resource_name = ""
shader = SubResource(3)
shader_param/texture_0 = ExtResource(1)
shader_param/texture_1 = ExtResource(2)
shader_param/texture_2 = ExtResource(3)
shader_param/texture_3 = ExtResource(5)
shader_param/texture_4 = ExtResource(4)
shader_param/texture_1 = ExtResource(5)
shader_param/texture_2 = ExtResource(4)
shader_param/texture_3 = ExtResource(3)
shader_param/texture_4 = ExtResource(2)
[sub_resource id=67 type="ArrayMesh"]
@@ -1416,10 +1416,10 @@ shader = SubResource(1)
resource_name = ""
shader = SubResource(3)
shader_param/texture_0 = ExtResource(1)
shader_param/texture_1 = ExtResource(2)
shader_param/texture_2 = ExtResource(3)
shader_param/texture_3 = ExtResource(5)
shader_param/texture_4 = ExtResource(4)
shader_param/texture_1 = ExtResource(5)
shader_param/texture_2 = ExtResource(4)
shader_param/texture_3 = ExtResource(3)
shader_param/texture_4 = ExtResource(2)
[sub_resource id=70 type="ArrayMesh"]
@@ -1467,10 +1467,10 @@ shader = SubResource(1)
resource_name = ""
shader = SubResource(3)
shader_param/texture_0 = ExtResource(1)
shader_param/texture_1 = ExtResource(2)
shader_param/texture_2 = ExtResource(3)
shader_param/texture_3 = ExtResource(5)
shader_param/texture_4 = ExtResource(4)
shader_param/texture_1 = ExtResource(5)
shader_param/texture_2 = ExtResource(4)
shader_param/texture_3 = ExtResource(3)
shader_param/texture_4 = ExtResource(2)
[sub_resource id=73 type="ArrayMesh"]
@@ -1518,10 +1518,10 @@ shader = SubResource(1)
resource_name = ""
shader = SubResource(3)
shader_param/texture_0 = ExtResource(1)
shader_param/texture_1 = ExtResource(2)
shader_param/texture_2 = ExtResource(3)
shader_param/texture_3 = ExtResource(5)
shader_param/texture_4 = ExtResource(4)
shader_param/texture_1 = ExtResource(5)
shader_param/texture_2 = ExtResource(4)
shader_param/texture_3 = ExtResource(3)
shader_param/texture_4 = ExtResource(2)
[sub_resource id=76 type="ArrayMesh"]
@@ -1569,10 +1569,10 @@ shader = SubResource(1)
resource_name = ""
shader = SubResource(3)
shader_param/texture_0 = ExtResource(1)
shader_param/texture_1 = ExtResource(2)
shader_param/texture_2 = ExtResource(3)
shader_param/texture_3 = ExtResource(5)
shader_param/texture_4 = ExtResource(4)
shader_param/texture_1 = ExtResource(5)
shader_param/texture_2 = ExtResource(4)
shader_param/texture_3 = ExtResource(3)
shader_param/texture_4 = ExtResource(2)
[sub_resource id=79 type="ArrayMesh"]
@@ -1620,10 +1620,10 @@ shader = SubResource(1)
resource_name = ""
shader = SubResource(3)
shader_param/texture_0 = ExtResource(1)
shader_param/texture_1 = ExtResource(2)
shader_param/texture_2 = ExtResource(3)
shader_param/texture_3 = ExtResource(5)
shader_param/texture_4 = ExtResource(4)
shader_param/texture_1 = ExtResource(5)
shader_param/texture_2 = ExtResource(4)
shader_param/texture_3 = ExtResource(3)
shader_param/texture_4 = ExtResource(2)
[sub_resource id=82 type="ArrayMesh"]
@@ -1671,10 +1671,10 @@ shader = SubResource(1)
resource_name = ""
shader = SubResource(3)
shader_param/texture_0 = ExtResource(1)
shader_param/texture_1 = ExtResource(2)
shader_param/texture_2 = ExtResource(3)
shader_param/texture_3 = ExtResource(5)
shader_param/texture_4 = ExtResource(4)
shader_param/texture_1 = ExtResource(5)
shader_param/texture_2 = ExtResource(4)
shader_param/texture_3 = ExtResource(3)
shader_param/texture_4 = ExtResource(2)
[sub_resource id=85 type="ArrayMesh"]
@@ -1722,10 +1722,10 @@ shader = SubResource(1)
resource_name = ""
shader = SubResource(3)
shader_param/texture_0 = ExtResource(1)
shader_param/texture_1 = ExtResource(2)
shader_param/texture_2 = ExtResource(3)
shader_param/texture_3 = ExtResource(5)
shader_param/texture_4 = ExtResource(4)
shader_param/texture_1 = ExtResource(5)
shader_param/texture_2 = ExtResource(4)
shader_param/texture_3 = ExtResource(3)
shader_param/texture_4 = ExtResource(2)
[sub_resource id=88 type="ArrayMesh"]
@@ -1773,10 +1773,10 @@ shader = SubResource(1)
resource_name = ""
shader = SubResource(3)
shader_param/texture_0 = ExtResource(1)
shader_param/texture_1 = ExtResource(2)
shader_param/texture_2 = ExtResource(3)
shader_param/texture_3 = ExtResource(5)
shader_param/texture_4 = ExtResource(4)
shader_param/texture_1 = ExtResource(5)
shader_param/texture_2 = ExtResource(4)
shader_param/texture_3 = ExtResource(3)
shader_param/texture_4 = ExtResource(2)
[sub_resource id=91 type="ArrayMesh"]
@@ -1824,10 +1824,10 @@ shader = SubResource(1)
resource_name = ""
shader = SubResource(3)
shader_param/texture_0 = ExtResource(1)
shader_param/texture_1 = ExtResource(2)
shader_param/texture_2 = ExtResource(3)
shader_param/texture_3 = ExtResource(5)
shader_param/texture_4 = ExtResource(4)
shader_param/texture_1 = ExtResource(5)
shader_param/texture_2 = ExtResource(4)
shader_param/texture_3 = ExtResource(3)
shader_param/texture_4 = ExtResource(2)
[sub_resource id=94 type="ArrayMesh"]
@@ -1875,10 +1875,10 @@ shader = SubResource(1)
resource_name = ""
shader = SubResource(3)
shader_param/texture_0 = ExtResource(1)
shader_param/texture_1 = ExtResource(2)
shader_param/texture_2 = ExtResource(3)
shader_param/texture_3 = ExtResource(5)
shader_param/texture_4 = ExtResource(4)
shader_param/texture_1 = ExtResource(5)
shader_param/texture_2 = ExtResource(4)
shader_param/texture_3 = ExtResource(3)
shader_param/texture_4 = ExtResource(2)
[sub_resource id=97 type="ArrayMesh"]
@@ -1926,10 +1926,10 @@ shader = SubResource(1)
resource_name = ""
shader = SubResource(3)
shader_param/texture_0 = ExtResource(1)
shader_param/texture_1 = ExtResource(2)
shader_param/texture_2 = ExtResource(3)
shader_param/texture_3 = ExtResource(5)
shader_param/texture_4 = ExtResource(4)
shader_param/texture_1 = ExtResource(5)
shader_param/texture_2 = ExtResource(4)
shader_param/texture_3 = ExtResource(3)
shader_param/texture_4 = ExtResource(2)
[sub_resource id=100 type="ArrayMesh"]
@@ -1977,10 +1977,10 @@ shader = SubResource(1)
resource_name = ""
shader = SubResource(3)
shader_param/texture_0 = ExtResource(1)
shader_param/texture_1 = ExtResource(2)
shader_param/texture_2 = ExtResource(3)
shader_param/texture_3 = ExtResource(5)
shader_param/texture_4 = ExtResource(4)
shader_param/texture_1 = ExtResource(5)
shader_param/texture_2 = ExtResource(4)
shader_param/texture_3 = ExtResource(3)
shader_param/texture_4 = ExtResource(2)
[sub_resource id=103 type="ArrayMesh"]
@@ -2028,10 +2028,10 @@ shader = SubResource(1)
resource_name = ""
shader = SubResource(3)
shader_param/texture_0 = ExtResource(1)
shader_param/texture_1 = ExtResource(2)
shader_param/texture_2 = ExtResource(3)
shader_param/texture_3 = ExtResource(5)
shader_param/texture_4 = ExtResource(4)
shader_param/texture_1 = ExtResource(5)
shader_param/texture_2 = ExtResource(4)
shader_param/texture_3 = ExtResource(3)
shader_param/texture_4 = ExtResource(2)
[sub_resource id=106 type="ArrayMesh"]
@@ -2079,10 +2079,10 @@ shader = SubResource(1)
resource_name = ""
shader = SubResource(3)
shader_param/texture_0 = ExtResource(1)
shader_param/texture_1 = ExtResource(2)
shader_param/texture_2 = ExtResource(3)
shader_param/texture_3 = ExtResource(5)
shader_param/texture_4 = ExtResource(4)
shader_param/texture_1 = ExtResource(5)
shader_param/texture_2 = ExtResource(4)
shader_param/texture_3 = ExtResource(3)
shader_param/texture_4 = ExtResource(2)
[sub_resource id=109 type="ArrayMesh"]
@@ -2130,10 +2130,10 @@ shader = SubResource(1)
resource_name = ""
shader = SubResource(3)
shader_param/texture_0 = ExtResource(1)
shader_param/texture_1 = ExtResource(2)
shader_param/texture_2 = ExtResource(3)
shader_param/texture_3 = ExtResource(5)
shader_param/texture_4 = ExtResource(4)
shader_param/texture_1 = ExtResource(5)
shader_param/texture_2 = ExtResource(4)
shader_param/texture_3 = ExtResource(3)
shader_param/texture_4 = ExtResource(2)
[sub_resource id=112 type="ArrayMesh"]
@@ -2181,10 +2181,10 @@ shader = SubResource(1)
resource_name = ""
shader = SubResource(3)
shader_param/texture_0 = ExtResource(1)
shader_param/texture_1 = ExtResource(2)
shader_param/texture_2 = ExtResource(3)
shader_param/texture_3 = ExtResource(5)
shader_param/texture_4 = ExtResource(4)
shader_param/texture_1 = ExtResource(5)
shader_param/texture_2 = ExtResource(4)
shader_param/texture_3 = ExtResource(3)
shader_param/texture_4 = ExtResource(2)
[sub_resource id=115 type="ArrayMesh"]
@@ -2232,10 +2232,10 @@ shader = SubResource(1)
resource_name = ""
shader = SubResource(3)
shader_param/texture_0 = ExtResource(1)
shader_param/texture_1 = ExtResource(2)
shader_param/texture_2 = ExtResource(3)
shader_param/texture_3 = ExtResource(5)
shader_param/texture_4 = ExtResource(4)
shader_param/texture_1 = ExtResource(5)
shader_param/texture_2 = ExtResource(4)
shader_param/texture_3 = ExtResource(3)
shader_param/texture_4 = ExtResource(2)
[sub_resource id=118 type="ArrayMesh"]
@@ -2283,10 +2283,10 @@ shader = SubResource(1)
resource_name = ""
shader = SubResource(3)
shader_param/texture_0 = ExtResource(1)
shader_param/texture_1 = ExtResource(2)
shader_param/texture_2 = ExtResource(3)
shader_param/texture_3 = ExtResource(5)
shader_param/texture_4 = ExtResource(4)
shader_param/texture_1 = ExtResource(5)
shader_param/texture_2 = ExtResource(4)
shader_param/texture_3 = ExtResource(3)
shader_param/texture_4 = ExtResource(2)
[sub_resource id=121 type="ArrayMesh"]
@@ -2334,10 +2334,10 @@ shader = SubResource(1)
resource_name = ""
shader = SubResource(3)
shader_param/texture_0 = ExtResource(1)
shader_param/texture_1 = ExtResource(2)
shader_param/texture_2 = ExtResource(3)
shader_param/texture_3 = ExtResource(5)
shader_param/texture_4 = ExtResource(4)
shader_param/texture_1 = ExtResource(5)
shader_param/texture_2 = ExtResource(4)
shader_param/texture_3 = ExtResource(3)
shader_param/texture_4 = ExtResource(2)
[sub_resource id=124 type="ArrayMesh"]
@@ -2385,10 +2385,10 @@ shader = SubResource(1)
resource_name = ""
shader = SubResource(3)
shader_param/texture_0 = ExtResource(1)
shader_param/texture_1 = ExtResource(2)
shader_param/texture_2 = ExtResource(3)
shader_param/texture_3 = ExtResource(5)
shader_param/texture_4 = ExtResource(4)
shader_param/texture_1 = ExtResource(5)
shader_param/texture_2 = ExtResource(4)
shader_param/texture_3 = ExtResource(3)
shader_param/texture_4 = ExtResource(2)
[sub_resource id=127 type="ArrayMesh"]
@@ -2436,10 +2436,10 @@ shader = SubResource(1)
resource_name = ""
shader = SubResource(3)
shader_param/texture_0 = ExtResource(1)
shader_param/texture_1 = ExtResource(2)
shader_param/texture_2 = ExtResource(3)
shader_param/texture_3 = ExtResource(5)
shader_param/texture_4 = ExtResource(4)
shader_param/texture_1 = ExtResource(5)
shader_param/texture_2 = ExtResource(4)
shader_param/texture_3 = ExtResource(3)
shader_param/texture_4 = ExtResource(2)
[sub_resource id=130 type="ArrayMesh"]
@@ -2487,10 +2487,10 @@ shader = SubResource(1)
resource_name = ""
shader = SubResource(3)
shader_param/texture_0 = ExtResource(1)
shader_param/texture_1 = ExtResource(2)
shader_param/texture_2 = ExtResource(3)
shader_param/texture_3 = ExtResource(5)
shader_param/texture_4 = ExtResource(4)
shader_param/texture_1 = ExtResource(5)
shader_param/texture_2 = ExtResource(4)
shader_param/texture_3 = ExtResource(3)
shader_param/texture_4 = ExtResource(2)
[sub_resource id=133 type="ArrayMesh"]
@@ -2538,10 +2538,10 @@ shader = SubResource(1)
resource_name = ""
shader = SubResource(3)
shader_param/texture_0 = ExtResource(1)
shader_param/texture_1 = ExtResource(2)
shader_param/texture_2 = ExtResource(3)
shader_param/texture_3 = ExtResource(5)
shader_param/texture_4 = ExtResource(4)
shader_param/texture_1 = ExtResource(5)
shader_param/texture_2 = ExtResource(4)
shader_param/texture_3 = ExtResource(3)
shader_param/texture_4 = ExtResource(2)
[sub_resource id=136 type="ArrayMesh"]

View File

@@ -2,13 +2,13 @@
[ext_resource id=1 path="concrete_floor_02_diff_1k.jpg" type="Texture"]
[ext_resource id=2 path="concrete_floor_02_spec_1k.jpg" type="Texture"]
[ext_resource id=2 path="concrete_floor_02_Disp_1k.jpg" type="Texture"]
[ext_resource id=3 path="concrete_floor_02_Nor_1k.jpg" type="Texture"]
[ext_resource id=3 path="concrete_floor_02_rough_1k.jpg" type="Texture"]
[ext_resource id=4 path="concrete_floor_02_Disp_1k.jpg" type="Texture"]
[ext_resource id=4 path="concrete_floor_02_Nor_1k.jpg" type="Texture"]
[ext_resource id=5 path="concrete_floor_02_rough_1k.jpg" type="Texture"]
[ext_resource id=5 path="concrete_floor_02_spec_1k.jpg" type="Texture"]
[sub_resource id=1 type="Shader"]
@@ -320,10 +320,10 @@ void fragment () {
resource_name = ""
shader = SubResource(3)
shader_param/texture_0 = ExtResource(1)
shader_param/texture_1 = ExtResource(2)
shader_param/texture_2 = ExtResource(3)
shader_param/texture_3 = ExtResource(5)
shader_param/texture_4 = ExtResource(4)
shader_param/texture_1 = ExtResource(5)
shader_param/texture_2 = ExtResource(4)
shader_param/texture_3 = ExtResource(3)
shader_param/texture_4 = ExtResource(2)
[sub_resource id=5 type="ArrayMesh"]
@@ -371,10 +371,10 @@ shader = SubResource(1)
resource_name = ""
shader = SubResource(3)
shader_param/texture_0 = ExtResource(1)
shader_param/texture_1 = ExtResource(2)
shader_param/texture_2 = ExtResource(3)
shader_param/texture_3 = ExtResource(5)
shader_param/texture_4 = ExtResource(4)
shader_param/texture_1 = ExtResource(5)
shader_param/texture_2 = ExtResource(4)
shader_param/texture_3 = ExtResource(3)
shader_param/texture_4 = ExtResource(2)
[sub_resource id=8 type="ArrayMesh"]
@@ -422,10 +422,10 @@ shader = SubResource(1)
resource_name = ""
shader = SubResource(3)
shader_param/texture_0 = ExtResource(1)
shader_param/texture_1 = ExtResource(2)
shader_param/texture_2 = ExtResource(3)
shader_param/texture_3 = ExtResource(5)
shader_param/texture_4 = ExtResource(4)
shader_param/texture_1 = ExtResource(5)
shader_param/texture_2 = ExtResource(4)
shader_param/texture_3 = ExtResource(3)
shader_param/texture_4 = ExtResource(2)
[sub_resource id=11 type="ArrayMesh"]
@@ -473,10 +473,10 @@ shader = SubResource(1)
resource_name = ""
shader = SubResource(3)
shader_param/texture_0 = ExtResource(1)
shader_param/texture_1 = ExtResource(2)
shader_param/texture_2 = ExtResource(3)
shader_param/texture_3 = ExtResource(5)
shader_param/texture_4 = ExtResource(4)
shader_param/texture_1 = ExtResource(5)
shader_param/texture_2 = ExtResource(4)
shader_param/texture_3 = ExtResource(3)
shader_param/texture_4 = ExtResource(2)
[sub_resource id=14 type="ArrayMesh"]
@@ -524,10 +524,10 @@ shader = SubResource(1)
resource_name = ""
shader = SubResource(3)
shader_param/texture_0 = ExtResource(1)
shader_param/texture_1 = ExtResource(2)
shader_param/texture_2 = ExtResource(3)
shader_param/texture_3 = ExtResource(5)
shader_param/texture_4 = ExtResource(4)
shader_param/texture_1 = ExtResource(5)
shader_param/texture_2 = ExtResource(4)
shader_param/texture_3 = ExtResource(3)
shader_param/texture_4 = ExtResource(2)
[sub_resource id=17 type="ArrayMesh"]
@@ -575,10 +575,10 @@ shader = SubResource(1)
resource_name = ""
shader = SubResource(3)
shader_param/texture_0 = ExtResource(1)
shader_param/texture_1 = ExtResource(2)
shader_param/texture_2 = ExtResource(3)
shader_param/texture_3 = ExtResource(5)
shader_param/texture_4 = ExtResource(4)
shader_param/texture_1 = ExtResource(5)
shader_param/texture_2 = ExtResource(4)
shader_param/texture_3 = ExtResource(3)
shader_param/texture_4 = ExtResource(2)
[sub_resource id=20 type="ArrayMesh"]
@@ -626,10 +626,10 @@ shader = SubResource(1)
resource_name = ""
shader = SubResource(3)
shader_param/texture_0 = ExtResource(1)
shader_param/texture_1 = ExtResource(2)
shader_param/texture_2 = ExtResource(3)
shader_param/texture_3 = ExtResource(5)
shader_param/texture_4 = ExtResource(4)
shader_param/texture_1 = ExtResource(5)
shader_param/texture_2 = ExtResource(4)
shader_param/texture_3 = ExtResource(3)
shader_param/texture_4 = ExtResource(2)
[sub_resource id=23 type="ArrayMesh"]
@@ -677,10 +677,10 @@ shader = SubResource(1)
resource_name = ""
shader = SubResource(3)
shader_param/texture_0 = ExtResource(1)
shader_param/texture_1 = ExtResource(2)
shader_param/texture_2 = ExtResource(3)
shader_param/texture_3 = ExtResource(5)
shader_param/texture_4 = ExtResource(4)
shader_param/texture_1 = ExtResource(5)
shader_param/texture_2 = ExtResource(4)
shader_param/texture_3 = ExtResource(3)
shader_param/texture_4 = ExtResource(2)
[sub_resource id=26 type="ArrayMesh"]
@@ -728,10 +728,10 @@ shader = SubResource(1)
resource_name = ""
shader = SubResource(3)
shader_param/texture_0 = ExtResource(1)
shader_param/texture_1 = ExtResource(2)
shader_param/texture_2 = ExtResource(3)
shader_param/texture_3 = ExtResource(5)
shader_param/texture_4 = ExtResource(4)
shader_param/texture_1 = ExtResource(5)
shader_param/texture_2 = ExtResource(4)
shader_param/texture_3 = ExtResource(3)
shader_param/texture_4 = ExtResource(2)
[sub_resource id=29 type="ArrayMesh"]
@@ -779,10 +779,10 @@ shader = SubResource(1)
resource_name = ""
shader = SubResource(3)
shader_param/texture_0 = ExtResource(1)
shader_param/texture_1 = ExtResource(2)
shader_param/texture_2 = ExtResource(3)
shader_param/texture_3 = ExtResource(5)
shader_param/texture_4 = ExtResource(4)
shader_param/texture_1 = ExtResource(5)
shader_param/texture_2 = ExtResource(4)
shader_param/texture_3 = ExtResource(3)
shader_param/texture_4 = ExtResource(2)
[sub_resource id=32 type="ArrayMesh"]
@@ -830,10 +830,10 @@ shader = SubResource(1)
resource_name = ""
shader = SubResource(3)
shader_param/texture_0 = ExtResource(1)
shader_param/texture_1 = ExtResource(2)
shader_param/texture_2 = ExtResource(3)
shader_param/texture_3 = ExtResource(5)
shader_param/texture_4 = ExtResource(4)
shader_param/texture_1 = ExtResource(5)
shader_param/texture_2 = ExtResource(4)
shader_param/texture_3 = ExtResource(3)
shader_param/texture_4 = ExtResource(2)
[sub_resource id=35 type="ArrayMesh"]
@@ -881,10 +881,10 @@ shader = SubResource(1)
resource_name = ""
shader = SubResource(3)
shader_param/texture_0 = ExtResource(1)
shader_param/texture_1 = ExtResource(2)
shader_param/texture_2 = ExtResource(3)
shader_param/texture_3 = ExtResource(5)
shader_param/texture_4 = ExtResource(4)
shader_param/texture_1 = ExtResource(5)
shader_param/texture_2 = ExtResource(4)
shader_param/texture_3 = ExtResource(3)
shader_param/texture_4 = ExtResource(2)
[sub_resource id=38 type="ArrayMesh"]
@@ -932,10 +932,10 @@ shader = SubResource(1)
resource_name = ""
shader = SubResource(3)
shader_param/texture_0 = ExtResource(1)
shader_param/texture_1 = ExtResource(2)
shader_param/texture_2 = ExtResource(3)
shader_param/texture_3 = ExtResource(5)
shader_param/texture_4 = ExtResource(4)
shader_param/texture_1 = ExtResource(5)
shader_param/texture_2 = ExtResource(4)
shader_param/texture_3 = ExtResource(3)
shader_param/texture_4 = ExtResource(2)
[sub_resource id=41 type="ArrayMesh"]
@@ -983,10 +983,10 @@ shader = SubResource(1)
resource_name = ""
shader = SubResource(3)
shader_param/texture_0 = ExtResource(1)
shader_param/texture_1 = ExtResource(2)
shader_param/texture_2 = ExtResource(3)
shader_param/texture_3 = ExtResource(5)
shader_param/texture_4 = ExtResource(4)
shader_param/texture_1 = ExtResource(5)
shader_param/texture_2 = ExtResource(4)
shader_param/texture_3 = ExtResource(3)
shader_param/texture_4 = ExtResource(2)
[sub_resource id=44 type="ArrayMesh"]
@@ -1034,10 +1034,10 @@ shader = SubResource(1)
resource_name = ""
shader = SubResource(3)
shader_param/texture_0 = ExtResource(1)
shader_param/texture_1 = ExtResource(2)
shader_param/texture_2 = ExtResource(3)
shader_param/texture_3 = ExtResource(5)
shader_param/texture_4 = ExtResource(4)
shader_param/texture_1 = ExtResource(5)
shader_param/texture_2 = ExtResource(4)
shader_param/texture_3 = ExtResource(3)
shader_param/texture_4 = ExtResource(2)
[sub_resource id=47 type="ArrayMesh"]
@@ -1085,10 +1085,10 @@ shader = SubResource(1)
resource_name = ""
shader = SubResource(3)
shader_param/texture_0 = ExtResource(1)
shader_param/texture_1 = ExtResource(2)
shader_param/texture_2 = ExtResource(3)
shader_param/texture_3 = ExtResource(5)
shader_param/texture_4 = ExtResource(4)
shader_param/texture_1 = ExtResource(5)
shader_param/texture_2 = ExtResource(4)
shader_param/texture_3 = ExtResource(3)
shader_param/texture_4 = ExtResource(2)
[sub_resource id=50 type="ArrayMesh"]
@@ -1136,10 +1136,10 @@ shader = SubResource(1)
resource_name = ""
shader = SubResource(3)
shader_param/texture_0 = ExtResource(1)
shader_param/texture_1 = ExtResource(2)
shader_param/texture_2 = ExtResource(3)
shader_param/texture_3 = ExtResource(5)
shader_param/texture_4 = ExtResource(4)
shader_param/texture_1 = ExtResource(5)
shader_param/texture_2 = ExtResource(4)
shader_param/texture_3 = ExtResource(3)
shader_param/texture_4 = ExtResource(2)
[sub_resource id=53 type="ArrayMesh"]
@@ -1187,10 +1187,10 @@ shader = SubResource(1)
resource_name = ""
shader = SubResource(3)
shader_param/texture_0 = ExtResource(1)
shader_param/texture_1 = ExtResource(2)
shader_param/texture_2 = ExtResource(3)
shader_param/texture_3 = ExtResource(5)
shader_param/texture_4 = ExtResource(4)
shader_param/texture_1 = ExtResource(5)
shader_param/texture_2 = ExtResource(4)
shader_param/texture_3 = ExtResource(3)
shader_param/texture_4 = ExtResource(2)
[sub_resource id=56 type="ArrayMesh"]
@@ -1238,10 +1238,10 @@ shader = SubResource(1)
resource_name = ""
shader = SubResource(3)
shader_param/texture_0 = ExtResource(1)
shader_param/texture_1 = ExtResource(2)
shader_param/texture_2 = ExtResource(3)
shader_param/texture_3 = ExtResource(5)
shader_param/texture_4 = ExtResource(4)
shader_param/texture_1 = ExtResource(5)
shader_param/texture_2 = ExtResource(4)
shader_param/texture_3 = ExtResource(3)
shader_param/texture_4 = ExtResource(2)
[sub_resource id=59 type="ArrayMesh"]
@@ -1289,10 +1289,10 @@ shader = SubResource(1)
resource_name = ""
shader = SubResource(3)
shader_param/texture_0 = ExtResource(1)
shader_param/texture_1 = ExtResource(2)
shader_param/texture_2 = ExtResource(3)
shader_param/texture_3 = ExtResource(5)
shader_param/texture_4 = ExtResource(4)
shader_param/texture_1 = ExtResource(5)
shader_param/texture_2 = ExtResource(4)
shader_param/texture_3 = ExtResource(3)
shader_param/texture_4 = ExtResource(2)
[sub_resource id=62 type="ArrayMesh"]
@@ -1340,10 +1340,10 @@ shader = SubResource(1)
resource_name = ""
shader = SubResource(3)
shader_param/texture_0 = ExtResource(1)
shader_param/texture_1 = ExtResource(2)
shader_param/texture_2 = ExtResource(3)
shader_param/texture_3 = ExtResource(5)
shader_param/texture_4 = ExtResource(4)
shader_param/texture_1 = ExtResource(5)
shader_param/texture_2 = ExtResource(4)
shader_param/texture_3 = ExtResource(3)
shader_param/texture_4 = ExtResource(2)
[sub_resource id=65 type="ArrayMesh"]
@@ -1391,10 +1391,10 @@ shader = SubResource(1)
resource_name = ""
shader = SubResource(3)
shader_param/texture_0 = ExtResource(1)
shader_param/texture_1 = ExtResource(2)
shader_param/texture_2 = ExtResource(3)
shader_param/texture_3 = ExtResource(5)
shader_param/texture_4 = ExtResource(4)
shader_param/texture_1 = ExtResource(5)
shader_param/texture_2 = ExtResource(4)
shader_param/texture_3 = ExtResource(3)
shader_param/texture_4 = ExtResource(2)
[sub_resource id=68 type="ArrayMesh"]
@@ -1442,10 +1442,10 @@ shader = SubResource(1)
resource_name = ""
shader = SubResource(3)
shader_param/texture_0 = ExtResource(1)
shader_param/texture_1 = ExtResource(2)
shader_param/texture_2 = ExtResource(3)
shader_param/texture_3 = ExtResource(5)
shader_param/texture_4 = ExtResource(4)
shader_param/texture_1 = ExtResource(5)
shader_param/texture_2 = ExtResource(4)
shader_param/texture_3 = ExtResource(3)
shader_param/texture_4 = ExtResource(2)
[sub_resource id=71 type="ArrayMesh"]
@@ -1493,10 +1493,10 @@ shader = SubResource(1)
resource_name = ""
shader = SubResource(3)
shader_param/texture_0 = ExtResource(1)
shader_param/texture_1 = ExtResource(2)
shader_param/texture_2 = ExtResource(3)
shader_param/texture_3 = ExtResource(5)
shader_param/texture_4 = ExtResource(4)
shader_param/texture_1 = ExtResource(5)
shader_param/texture_2 = ExtResource(4)
shader_param/texture_3 = ExtResource(3)
shader_param/texture_4 = ExtResource(2)
[sub_resource id=74 type="ArrayMesh"]
@@ -1544,10 +1544,10 @@ shader = SubResource(1)
resource_name = ""
shader = SubResource(3)
shader_param/texture_0 = ExtResource(1)
shader_param/texture_1 = ExtResource(2)
shader_param/texture_2 = ExtResource(3)
shader_param/texture_3 = ExtResource(5)
shader_param/texture_4 = ExtResource(4)
shader_param/texture_1 = ExtResource(5)
shader_param/texture_2 = ExtResource(4)
shader_param/texture_3 = ExtResource(3)
shader_param/texture_4 = ExtResource(2)
[sub_resource id=77 type="ArrayMesh"]
@@ -1595,10 +1595,10 @@ shader = SubResource(1)
resource_name = ""
shader = SubResource(3)
shader_param/texture_0 = ExtResource(1)
shader_param/texture_1 = ExtResource(2)
shader_param/texture_2 = ExtResource(3)
shader_param/texture_3 = ExtResource(5)
shader_param/texture_4 = ExtResource(4)
shader_param/texture_1 = ExtResource(5)
shader_param/texture_2 = ExtResource(4)
shader_param/texture_3 = ExtResource(3)
shader_param/texture_4 = ExtResource(2)
[sub_resource id=80 type="ArrayMesh"]
@@ -1646,10 +1646,10 @@ shader = SubResource(1)
resource_name = ""
shader = SubResource(3)
shader_param/texture_0 = ExtResource(1)
shader_param/texture_1 = ExtResource(2)
shader_param/texture_2 = ExtResource(3)
shader_param/texture_3 = ExtResource(5)
shader_param/texture_4 = ExtResource(4)
shader_param/texture_1 = ExtResource(5)
shader_param/texture_2 = ExtResource(4)
shader_param/texture_3 = ExtResource(3)
shader_param/texture_4 = ExtResource(2)
[sub_resource id=83 type="ArrayMesh"]
@@ -1697,10 +1697,10 @@ shader = SubResource(1)
resource_name = ""
shader = SubResource(3)
shader_param/texture_0 = ExtResource(1)
shader_param/texture_1 = ExtResource(2)
shader_param/texture_2 = ExtResource(3)
shader_param/texture_3 = ExtResource(5)
shader_param/texture_4 = ExtResource(4)
shader_param/texture_1 = ExtResource(5)
shader_param/texture_2 = ExtResource(4)
shader_param/texture_3 = ExtResource(3)
shader_param/texture_4 = ExtResource(2)
[sub_resource id=86 type="ArrayMesh"]
@@ -1748,10 +1748,10 @@ shader = SubResource(1)
resource_name = ""
shader = SubResource(3)
shader_param/texture_0 = ExtResource(1)
shader_param/texture_1 = ExtResource(2)
shader_param/texture_2 = ExtResource(3)
shader_param/texture_3 = ExtResource(5)
shader_param/texture_4 = ExtResource(4)
shader_param/texture_1 = ExtResource(5)
shader_param/texture_2 = ExtResource(4)
shader_param/texture_3 = ExtResource(3)
shader_param/texture_4 = ExtResource(2)
[sub_resource id=89 type="ArrayMesh"]
@@ -1799,10 +1799,10 @@ shader = SubResource(1)
resource_name = ""
shader = SubResource(3)
shader_param/texture_0 = ExtResource(1)
shader_param/texture_1 = ExtResource(2)
shader_param/texture_2 = ExtResource(3)
shader_param/texture_3 = ExtResource(5)
shader_param/texture_4 = ExtResource(4)
shader_param/texture_1 = ExtResource(5)
shader_param/texture_2 = ExtResource(4)
shader_param/texture_3 = ExtResource(3)
shader_param/texture_4 = ExtResource(2)
[sub_resource id=92 type="ArrayMesh"]
@@ -1850,10 +1850,10 @@ shader = SubResource(1)
resource_name = ""
shader = SubResource(3)
shader_param/texture_0 = ExtResource(1)
shader_param/texture_1 = ExtResource(2)
shader_param/texture_2 = ExtResource(3)
shader_param/texture_3 = ExtResource(5)
shader_param/texture_4 = ExtResource(4)
shader_param/texture_1 = ExtResource(5)
shader_param/texture_2 = ExtResource(4)
shader_param/texture_3 = ExtResource(3)
shader_param/texture_4 = ExtResource(2)
[sub_resource id=95 type="ArrayMesh"]
@@ -1901,10 +1901,10 @@ shader = SubResource(1)
resource_name = ""
shader = SubResource(3)
shader_param/texture_0 = ExtResource(1)
shader_param/texture_1 = ExtResource(2)
shader_param/texture_2 = ExtResource(3)
shader_param/texture_3 = ExtResource(5)
shader_param/texture_4 = ExtResource(4)
shader_param/texture_1 = ExtResource(5)
shader_param/texture_2 = ExtResource(4)
shader_param/texture_3 = ExtResource(3)
shader_param/texture_4 = ExtResource(2)
[sub_resource id=98 type="ArrayMesh"]
@@ -1952,10 +1952,10 @@ shader = SubResource(1)
resource_name = ""
shader = SubResource(3)
shader_param/texture_0 = ExtResource(1)
shader_param/texture_1 = ExtResource(2)
shader_param/texture_2 = ExtResource(3)
shader_param/texture_3 = ExtResource(5)
shader_param/texture_4 = ExtResource(4)
shader_param/texture_1 = ExtResource(5)
shader_param/texture_2 = ExtResource(4)
shader_param/texture_3 = ExtResource(3)
shader_param/texture_4 = ExtResource(2)
[sub_resource id=101 type="ArrayMesh"]
@@ -2003,10 +2003,10 @@ shader = SubResource(1)
resource_name = ""
shader = SubResource(3)
shader_param/texture_0 = ExtResource(1)
shader_param/texture_1 = ExtResource(2)
shader_param/texture_2 = ExtResource(3)
shader_param/texture_3 = ExtResource(5)
shader_param/texture_4 = ExtResource(4)
shader_param/texture_1 = ExtResource(5)
shader_param/texture_2 = ExtResource(4)
shader_param/texture_3 = ExtResource(3)
shader_param/texture_4 = ExtResource(2)
[sub_resource id=104 type="ArrayMesh"]

View File

@@ -4,11 +4,11 @@
[ext_resource id=2 path="concrete_floor_02_Disp_1k.jpg" type="Texture"]
[ext_resource id=3 path="concrete_floor_02_spec_1k.jpg" type="Texture"]
[ext_resource id=3 path="concrete_floor_02_Nor_1k.jpg" type="Texture"]
[ext_resource id=4 path="concrete_floor_02_Nor_1k.jpg" type="Texture"]
[ext_resource id=4 path="concrete_floor_02_rough_1k.jpg" type="Texture"]
[ext_resource id=5 path="concrete_floor_02_rough_1k.jpg" type="Texture"]
[ext_resource id=5 path="concrete_floor_02_spec_1k.jpg" type="Texture"]
[sub_resource id=1 type="Shader"]
@@ -209,9 +209,9 @@ void fragment () {
resource_name = ""
shader = SubResource(1)
shader_param/texture_0 = ExtResource(1)
shader_param/texture_1 = ExtResource(3)
shader_param/texture_2 = ExtResource(4)
shader_param/texture_3 = ExtResource(5)
shader_param/texture_1 = ExtResource(5)
shader_param/texture_2 = ExtResource(3)
shader_param/texture_3 = ExtResource(4)
shader_param/texture_4 = ExtResource(2)
[sub_resource id=3 type="Shader"]
@@ -366,9 +366,9 @@ surfaces/1 = {
resource_name = ""
shader = SubResource(1)
shader_param/texture_0 = ExtResource(1)
shader_param/texture_1 = ExtResource(3)
shader_param/texture_2 = ExtResource(4)
shader_param/texture_3 = ExtResource(5)
shader_param/texture_1 = ExtResource(5)
shader_param/texture_2 = ExtResource(3)
shader_param/texture_3 = ExtResource(4)
shader_param/texture_4 = ExtResource(2)
[sub_resource id=7 type="ShaderMaterial"]
@@ -417,9 +417,9 @@ surfaces/1 = {
resource_name = ""
shader = SubResource(1)
shader_param/texture_0 = ExtResource(1)
shader_param/texture_1 = ExtResource(3)
shader_param/texture_2 = ExtResource(4)
shader_param/texture_3 = ExtResource(5)
shader_param/texture_1 = ExtResource(5)
shader_param/texture_2 = ExtResource(3)
shader_param/texture_3 = ExtResource(4)
shader_param/texture_4 = ExtResource(2)
[sub_resource id=10 type="ShaderMaterial"]
@@ -468,9 +468,9 @@ surfaces/1 = {
resource_name = ""
shader = SubResource(1)
shader_param/texture_0 = ExtResource(1)
shader_param/texture_1 = ExtResource(3)
shader_param/texture_2 = ExtResource(4)
shader_param/texture_3 = ExtResource(5)
shader_param/texture_1 = ExtResource(5)
shader_param/texture_2 = ExtResource(3)
shader_param/texture_3 = ExtResource(4)
shader_param/texture_4 = ExtResource(2)
[sub_resource id=13 type="ShaderMaterial"]
@@ -519,9 +519,9 @@ surfaces/1 = {
resource_name = ""
shader = SubResource(1)
shader_param/texture_0 = ExtResource(1)
shader_param/texture_1 = ExtResource(3)
shader_param/texture_2 = ExtResource(4)
shader_param/texture_3 = ExtResource(5)
shader_param/texture_1 = ExtResource(5)
shader_param/texture_2 = ExtResource(3)
shader_param/texture_3 = ExtResource(4)
shader_param/texture_4 = ExtResource(2)
[sub_resource id=16 type="ShaderMaterial"]
@@ -570,9 +570,9 @@ surfaces/1 = {
resource_name = ""
shader = SubResource(1)
shader_param/texture_0 = ExtResource(1)
shader_param/texture_1 = ExtResource(3)
shader_param/texture_2 = ExtResource(4)
shader_param/texture_3 = ExtResource(5)
shader_param/texture_1 = ExtResource(5)
shader_param/texture_2 = ExtResource(3)
shader_param/texture_3 = ExtResource(4)
shader_param/texture_4 = ExtResource(2)
[sub_resource id=19 type="ShaderMaterial"]
@@ -621,9 +621,9 @@ surfaces/1 = {
resource_name = ""
shader = SubResource(1)
shader_param/texture_0 = ExtResource(1)
shader_param/texture_1 = ExtResource(3)
shader_param/texture_2 = ExtResource(4)
shader_param/texture_3 = ExtResource(5)
shader_param/texture_1 = ExtResource(5)
shader_param/texture_2 = ExtResource(3)
shader_param/texture_3 = ExtResource(4)
shader_param/texture_4 = ExtResource(2)
[sub_resource id=22 type="ShaderMaterial"]