Lots of usability imporvements

This commit is contained in:
Segey Lapin
2019-08-09 06:35:06 +03:00
parent 95a76feb53
commit 59e0b46384
25 changed files with 5190 additions and 429 deletions

View File

@@ -18,6 +18,7 @@ var ch2team: Dictionary = {}
var gate2team = {}
var _gates = {}
var _scores = {}
var _speeds = {}
var training_time = 0.0
const max_training_time: float = 180.0
const max_score: int = 6
@@ -98,7 +99,7 @@ func start_game():
print(ch)
assert ch.scene != null
print("start: ", _team_start[t])
ch.scene.walkto(_team_start[t] + Vector3(randf() * 2.0 - 1.0, 0.0, randf() * 2.0 - 1.0))
ch.scene.walkto(_team_start[t] + Vector3(randf() * 2.0 - 1.0, 0.0, randf() * 2.0 - 1.0), 1.0 + ch.speed + randf() * ch.speed * 0.5)
start_timeout = 10.0
var loc = 0
for t in _cheers.keys():
@@ -106,7 +107,7 @@ func start_game():
assert ch != null
print(ch)
assert ch.scene != null
ch.scene.walkto(_cheer_locations[t][loc % _cheer_locations[t].size()])
ch.scene.walkto(_cheer_locations[t][loc % _cheer_locations[t].size()], 1.0 + ch.speed + randf() * ch.speed * 0.5)
loc += 1
for t in _teams.keys():
_scores[t] = 0
@@ -139,7 +140,10 @@ func _physics_process(delta):
for t in _teams.keys():
for ch in _teams[t]:
# print("teleport")
ch.scene.global_transform.origin = ch.scene._path[ch.scene._path.size() - 1]
if ch.scene._path.size() > 0:
ch.scene.global_transform.origin = ch.scene._path[ch.scene._path.size() - 1]
else:
ch.scene.global_transform.origin = _team_start[t] + Vector3(randf() * 2.0 - 1.0, 0.0, randf() * 2.0 - 1.0)
_state = STATE_RUNNING
STATE_RUNNING:
# print("running")
@@ -150,9 +154,9 @@ func _physics_process(delta):
var moveto = ch.scene._path[ch.scene._path.size() - 1]
if tgt.distance_squared_to(moveto) > 0.5:
# print("walking")
ch.scene.walkto(tgt)
ch.scene.walkto(tgt, 1.0 + ch.speed + randf() * ch.speed * 0.5)
else:
ch.scene.walkto(tgt)
ch.scene.walkto(tgt, 1.0 + ch.speed + randf() * ch.speed * 0.5)
if ch.scene.global_transform.origin.distance_to(tgt) < 0.6 && _ball_carrier == null && catch_ball_delay <= 0:
ch.scene.take_object(_ball_instance)
_state = STATE_GOAL
@@ -162,9 +166,9 @@ func _physics_process(delta):
for tg in _teams.keys():
for ch in _teams[tg]:
if ch != _ball_carrier:
ch.scene.walkto(_gates[tg].global_transform.origin)
ch.scene.walkto(_gates[tg].global_transform.origin, 1.0 + ch.speed + randf() * ch.speed * 0.5)
else:
ch.scene.walkto(_gates[tg ^ 1].global_transform.origin)
ch.scene.walkto(_gates[tg ^ 1].global_transform.origin, 1.0 + ch.speed + randf() * ch.speed * 0.5)
world.increase_xp(_ball_carrier, 50)
if catch_ball_delay > 0:
catch_ball_delay -= delta

Binary file not shown.

View File

@@ -0,0 +1,4 @@
{
"object_types": ["GEOMETRY"],
"outpath": "elements"
}

View File

@@ -16,6 +16,7 @@ var training = false
var nav: Navigation
var quests : = []
var team_train_count : = 0
var arrow: Spatial
func room_event(ev: String):
if current_room:

140
proto2/elements/arrow.escn Normal file

File diff suppressed because one or more lines are too long

File diff suppressed because it is too large Load Diff

View File

@@ -0,0 +1,21 @@
[gd_scene load_steps=3 format=2]
[ext_resource path="res://elements/arrow.escn" type="PackedScene" id=1]
[sub_resource type="SpatialMaterial" id=1]
flags_transparent = true
flags_no_depth_test = true
flags_do_not_receive_shadows = true
albedo_color = Color( 1, 0.8, 0.00784314, 0.662745 )
metallic = 0.5
roughness = 0.2
emission_enabled = true
emission = Color( 0.854902, 0.627451, 0.0823529, 1 )
emission_energy = 0.7
emission_operator = 0
emission_on_uv2 = false
[node name="arrow" index="0" instance=ExtResource( 1 )]
[node name="arrow" parent="." index="0"]
material/0 = SubResource( 1 )

File diff suppressed because one or more lines are too long

File diff suppressed because it is too large Load Diff

File diff suppressed because one or more lines are too long

File diff suppressed because it is too large Load Diff

View File

@@ -22,9 +22,9 @@ def main():
src_dir_path = os.path.join(TEST_SCENE_DIR, dir_relpath)
if os.path.exists(os.path.join(src_dir_path, "config.json")):
with open(os.path.join(src_dir_path, "config.json")) as config_file:
config = json.load(config_file)
base_config = json.load(config_file)
else:
config = {
base_config = {
"outpath": "exports",
"collections": [],
"use_visible_objects": True,
@@ -38,7 +38,7 @@ def main():
"use_beta_features": True,
"generate_external_material": False,
"animation_modes": "ACTIONS",
"object_types": {"EMPTY", "LIGHT", "ARMATURE", "GEOMETRY"}
"object_types": ["EMPTY", "LIGHT", "ARMATURE", "GEOMETRY"]
}
# create exported to directory
@@ -52,6 +52,12 @@ def main():
# push dir into queue for later traversal
dir_queue.append(os.path.join(dir_relpath, item))
elif item_abspath.endswith('blend'):
config = {}
for k, v in base_config.items():
if k == "object_types":
config[k] = set(v)
else:
config[k] = v
cpath = item_abspath.replace('.blend', '.json')
if os.path.exists(cpath):
_config = json.load(open(cpath))

View File

@@ -15,6 +15,7 @@ func master_control(pos):
$master.walkto(pos)
func update_quests():
$info/task/task.text = "No active tasks"
for q in world.quests:
if q.is_active():
$info/task/task.text = q.get_cur_task_text()
@@ -59,16 +60,34 @@ func start_training(ball):
ball_game.add_player(randi() % 2, world.team[ch])
ball_game.set_ball(ball)
ball_game.set_main(self)
ball_game.start_game()
add_child(ball_game)
ball_game.connect("stopped_game", self, "stop_training")
ball_game.connect("started_game", self, "init_training")
ball_game.connect("update_score", self, "update_training")
ball_game.start_game()
func stop_training(score):
print("score:", score)
ball_game.queue_free()
world.team_train_count += 1
$score.hide()
func init_training(score):
$score.show()
$score.release_focus()
update_training(score)
func update_training(score):
var v:String = ""
var sdata = []
for k in score.keys():
sdata.push_back("%02d" % (score[k]))
print("score update = ", score)
v = PoolStringArray(sdata).join(":")
$score/v/l.text = v
$score/v/footer.text = "%.1f seconds left" % (ball_game.max_training_time - ball_game.training_time)
func _ready():
var tstart = $nav/navmesh/level_level
world.arrow = $Camera/arrow
var queue = [tstart]
while queue.size() > 0:
var item = queue[0]
@@ -113,9 +132,9 @@ 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"))
var tut2_quest = StatsQuest.new("Hire team members", "Hire new team members to start with your team", {"player_count": 6})
var tut2_quest = StatsQuest.new("Hire 6 team members", "Hire six team members to start with your team", {"player_count": 6})
var tut3_quest = WalkQuest.new("Walk to gym", "Walk to gym designated location", get_node("quest_dst_gym"))
var tut4_quest = StatsQuest.new("Train your team", "Complete your team training once", {"team_train_count": 1})
var tut4_quest = StatsQuest.new("Train your team once", "Complete your team training once", {"team_train_count": 1})
tut1_quest.set_next_quest(tut2_quest)
tut2_quest.set_next_quest(tut3_quest)
tut3_quest.set_next_quest(tut4_quest)
@@ -129,8 +148,12 @@ func _ready():
quest_timer.start()
controls.connect("action1", self, "start_interaction")
world.connect("start_training", self, "start_training")
$info/task/show_journal.connect("pressed", $quest_journal, "show")
$score.hide()
func _process(delta):
var pos = $master.global_transform.origin
pos.y = $Camera.global_transform.origin.y
$Camera.global_transform.origin = $Camera.global_transform.origin.linear_interpolate(pos, 0.8 * delta)
if $score.visible && ball_game != null:
update_training(ball_game._scores)

File diff suppressed because one or more lines are too long

View File

@@ -71,7 +71,7 @@ func get_cur_task_text():
return ret
for p in _objectives:
if !p.is_complete():
return p.get_title()
return get_title() + ": " + p.get_title()
return _title
return ret
func get_title():

View File

@@ -10,12 +10,35 @@ var destination: Spatial
var quest_marker: Spatial
class WalkQuestObjective extends QuestObjective:
var dest: Spatial
var arrow: Spatial
var nav: Navigation
func _init(title, destination: Spatial).(title):
dest = destination
arrow = world.arrow
nav = world.arrow.get_node("/root/main/nav")
func update():
var org = world.master_node.global_transform.origin
var orgc = nav.get_closest_point(org)
var dst = dest.global_transform.origin
var dstc = nav.get_closest_point(dst)
var path = nav.get_simple_path(orgc, dstc)
var arrow_dir : = Vector3()
if path.size() > 1:
for e in path:
if (e - org).length() > 1.0:
arrow_dir = e - org
break
if arrow_dir.length() == 0 && arrow.visible:
arrow.hide()
elif arrow_dir.length() > 0:
if !arrow.visible:
arrow.show()
arrow_dir.y = 0
arrow.look_at(arrow.global_transform.origin + arrow_dir, Vector3.UP)
if org.distance_to(dest.global_transform.origin) < 2.5:
_complete = true
arrow.hide()
func _init(title, desc, dest).(title, desc):
destination = dest
add_objective(WalkQuestObjective.new("Walk to destination", dest))
@@ -27,8 +50,12 @@ func start():
world.master_node.get_node("/root/main").add_child(quest_marker)
quest_marker.global_transform.origin = destination.global_transform.origin
print("destination: ", quest_marker.global_transform.origin)
if world.arrow:
world.arrow.show()
func quest_complete():
.quest_complete()
quest_marker.queue_free()
if world.arrow:
world.arrow.hide()

View File

@@ -0,0 +1,40 @@
extends Control
func update_desc():
var sel: TreeItem = $v/Tree.get_selected()
if sel:
var desc = sel.get_metadata(0).description
$v/desc.text = desc
else:
$v/desc.text = ""
func display_journal():
if visible:
$v/Tree.clear()
var queue = []
for k in world.quests:
queue.push_back({"obj": k, "parent": null})
while queue.size() > 0:
var item = queue[0]
queue.pop_front()
var ti: TreeItem
if item.parent == null:
ti = $v/Tree.create_item()
else:
ti = $v/Tree.create_item(item.parent)
ti.set_text(0, "Quest: " + item.obj.get_title())
ti.set_metadata(0, {"description": item.obj.get_description()})
if item.obj.is_complete():
ti.set_text(1, "COMPLETE")
for o in item.obj._objectives:
var te: TreeItem = $v/Tree.create_item(ti)
te.set_text(0, "Task: " + o.get_title())
if o.is_complete():
te.set_text(1, "COMPLETE")
te.set_metadata(0, {"description": o.get_title()})
for o in item.obj._children:
queue.push_back({"obj": o, "parent": ti})
update_desc()
func _ready():
connect("visibility_changed", self, "display_journal")
$v/okbutton.connect("pressed", self, "hide")
$v/Tree.connect("item_selected", self, "update_desc")

View File

@@ -0,0 +1,51 @@
[gd_scene load_steps=5 format=2]
[ext_resource path="res://ui/quest_journal.gd" type="Script" id=1]
[ext_resource path="res://fonts/DroidSansFallback.ttf" type="DynamicFontData" id=2]
[sub_resource type="DynamicFont" id=1]
size = 18
font_data = ExtResource( 2 )
[sub_resource type="DynamicFont" id=2]
size = 18
font_data = ExtResource( 2 )
[node name="quest_journal" type="Panel"]
anchor_right = 1.0
anchor_bottom = 1.0
script = ExtResource( 1 )
[node name="v" type="VBoxContainer" parent="."]
anchor_right = 1.0
anchor_bottom = 1.0
__meta__ = {
"_edit_use_anchors_": false
}
[node name="Label" type="Label" parent="v"]
margin_right = 1024.0
margin_bottom = 14.0
text = "QUEST JOURNAL"
align = 1
[node name="Tree" type="Tree" parent="v"]
margin_top = 18.0
margin_right = 1024.0
margin_bottom = 295.0
size_flags_vertical = 3
custom_fonts/title_button_font = SubResource( 1 )
custom_fonts/font = SubResource( 2 )
columns = 2
[node name="desc" type="RichTextLabel" parent="v"]
margin_top = 299.0
margin_right = 1024.0
margin_bottom = 576.0
size_flags_vertical = 3
[node name="okbutton" type="Button" parent="v"]
margin_top = 580.0
margin_right = 1024.0
margin_bottom = 600.0
text = "CLOSE"

View File

@@ -24,6 +24,7 @@ func _process(delta):
expose_time = 0.0
cooldown_time = 2.0
show()
release_focus()
if expose_time > 10.0:
if visible:
hide()

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_Nor_1k.jpg" type="Texture"]
[ext_resource id=2 path="concrete_floor_02_spec_1k.jpg" type="Texture"]
[ext_resource id=3 path="concrete_floor_02_rough_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_Disp_1k.jpg" type="Texture"]
[ext_resource id=5 path="concrete_floor_02_spec_1k.jpg" type="Texture"]
[ext_resource id=5 path="concrete_floor_02_rough_1k.jpg" type="Texture"]
[sub_resource id=1 type="Shader"]
@@ -320,9 +320,9 @@ void fragment () {
resource_name = ""
shader = SubResource(3)
shader_param/texture_0 = ExtResource(1)
shader_param/texture_1 = ExtResource(5)
shader_param/texture_2 = ExtResource(2)
shader_param/texture_3 = ExtResource(3)
shader_param/texture_1 = ExtResource(2)
shader_param/texture_2 = ExtResource(3)
shader_param/texture_3 = ExtResource(5)
shader_param/texture_4 = ExtResource(4)
[sub_resource id=5 type="ArrayMesh"]
@@ -371,9 +371,9 @@ shader = SubResource(1)
resource_name = ""
shader = SubResource(3)
shader_param/texture_0 = ExtResource(1)
shader_param/texture_1 = ExtResource(5)
shader_param/texture_2 = ExtResource(2)
shader_param/texture_3 = ExtResource(3)
shader_param/texture_1 = ExtResource(2)
shader_param/texture_2 = ExtResource(3)
shader_param/texture_3 = ExtResource(5)
shader_param/texture_4 = ExtResource(4)
[sub_resource id=8 type="ArrayMesh"]
@@ -422,9 +422,9 @@ shader = SubResource(1)
resource_name = ""
shader = SubResource(3)
shader_param/texture_0 = ExtResource(1)
shader_param/texture_1 = ExtResource(5)
shader_param/texture_2 = ExtResource(2)
shader_param/texture_3 = ExtResource(3)
shader_param/texture_1 = ExtResource(2)
shader_param/texture_2 = ExtResource(3)
shader_param/texture_3 = ExtResource(5)
shader_param/texture_4 = ExtResource(4)
[sub_resource id=11 type="ArrayMesh"]
@@ -473,9 +473,9 @@ shader = SubResource(1)
resource_name = ""
shader = SubResource(3)
shader_param/texture_0 = ExtResource(1)
shader_param/texture_1 = ExtResource(5)
shader_param/texture_2 = ExtResource(2)
shader_param/texture_3 = ExtResource(3)
shader_param/texture_1 = ExtResource(2)
shader_param/texture_2 = ExtResource(3)
shader_param/texture_3 = ExtResource(5)
shader_param/texture_4 = ExtResource(4)
[sub_resource id=14 type="ArrayMesh"]
@@ -524,9 +524,9 @@ shader = SubResource(1)
resource_name = ""
shader = SubResource(3)
shader_param/texture_0 = ExtResource(1)
shader_param/texture_1 = ExtResource(5)
shader_param/texture_2 = ExtResource(2)
shader_param/texture_3 = ExtResource(3)
shader_param/texture_1 = ExtResource(2)
shader_param/texture_2 = ExtResource(3)
shader_param/texture_3 = ExtResource(5)
shader_param/texture_4 = ExtResource(4)
[sub_resource id=17 type="ArrayMesh"]
@@ -575,9 +575,9 @@ shader = SubResource(1)
resource_name = ""
shader = SubResource(3)
shader_param/texture_0 = ExtResource(1)
shader_param/texture_1 = ExtResource(5)
shader_param/texture_2 = ExtResource(2)
shader_param/texture_3 = ExtResource(3)
shader_param/texture_1 = ExtResource(2)
shader_param/texture_2 = ExtResource(3)
shader_param/texture_3 = ExtResource(5)
shader_param/texture_4 = ExtResource(4)
[sub_resource id=20 type="ArrayMesh"]
@@ -626,9 +626,9 @@ shader = SubResource(1)
resource_name = ""
shader = SubResource(3)
shader_param/texture_0 = ExtResource(1)
shader_param/texture_1 = ExtResource(5)
shader_param/texture_2 = ExtResource(2)
shader_param/texture_3 = ExtResource(3)
shader_param/texture_1 = ExtResource(2)
shader_param/texture_2 = ExtResource(3)
shader_param/texture_3 = ExtResource(5)
shader_param/texture_4 = ExtResource(4)
[sub_resource id=23 type="ArrayMesh"]
@@ -677,9 +677,9 @@ shader = SubResource(1)
resource_name = ""
shader = SubResource(3)
shader_param/texture_0 = ExtResource(1)
shader_param/texture_1 = ExtResource(5)
shader_param/texture_2 = ExtResource(2)
shader_param/texture_3 = ExtResource(3)
shader_param/texture_1 = ExtResource(2)
shader_param/texture_2 = ExtResource(3)
shader_param/texture_3 = ExtResource(5)
shader_param/texture_4 = ExtResource(4)
[sub_resource id=26 type="ArrayMesh"]
@@ -728,9 +728,9 @@ shader = SubResource(1)
resource_name = ""
shader = SubResource(3)
shader_param/texture_0 = ExtResource(1)
shader_param/texture_1 = ExtResource(5)
shader_param/texture_2 = ExtResource(2)
shader_param/texture_3 = ExtResource(3)
shader_param/texture_1 = ExtResource(2)
shader_param/texture_2 = ExtResource(3)
shader_param/texture_3 = ExtResource(5)
shader_param/texture_4 = ExtResource(4)
[sub_resource id=29 type="ArrayMesh"]
@@ -779,9 +779,9 @@ shader = SubResource(1)
resource_name = ""
shader = SubResource(3)
shader_param/texture_0 = ExtResource(1)
shader_param/texture_1 = ExtResource(5)
shader_param/texture_2 = ExtResource(2)
shader_param/texture_3 = ExtResource(3)
shader_param/texture_1 = ExtResource(2)
shader_param/texture_2 = ExtResource(3)
shader_param/texture_3 = ExtResource(5)
shader_param/texture_4 = ExtResource(4)
[sub_resource id=32 type="ArrayMesh"]
@@ -830,9 +830,9 @@ shader = SubResource(1)
resource_name = ""
shader = SubResource(3)
shader_param/texture_0 = ExtResource(1)
shader_param/texture_1 = ExtResource(5)
shader_param/texture_2 = ExtResource(2)
shader_param/texture_3 = ExtResource(3)
shader_param/texture_1 = ExtResource(2)
shader_param/texture_2 = ExtResource(3)
shader_param/texture_3 = ExtResource(5)
shader_param/texture_4 = ExtResource(4)
[sub_resource id=35 type="ArrayMesh"]
@@ -881,9 +881,9 @@ shader = SubResource(1)
resource_name = ""
shader = SubResource(3)
shader_param/texture_0 = ExtResource(1)
shader_param/texture_1 = ExtResource(5)
shader_param/texture_2 = ExtResource(2)
shader_param/texture_3 = ExtResource(3)
shader_param/texture_1 = ExtResource(2)
shader_param/texture_2 = ExtResource(3)
shader_param/texture_3 = ExtResource(5)
shader_param/texture_4 = ExtResource(4)
[sub_resource id=38 type="ArrayMesh"]
@@ -932,9 +932,9 @@ shader = SubResource(1)
resource_name = ""
shader = SubResource(3)
shader_param/texture_0 = ExtResource(1)
shader_param/texture_1 = ExtResource(5)
shader_param/texture_2 = ExtResource(2)
shader_param/texture_3 = ExtResource(3)
shader_param/texture_1 = ExtResource(2)
shader_param/texture_2 = ExtResource(3)
shader_param/texture_3 = ExtResource(5)
shader_param/texture_4 = ExtResource(4)
[sub_resource id=41 type="ArrayMesh"]
@@ -983,9 +983,9 @@ shader = SubResource(1)
resource_name = ""
shader = SubResource(3)
shader_param/texture_0 = ExtResource(1)
shader_param/texture_1 = ExtResource(5)
shader_param/texture_2 = ExtResource(2)
shader_param/texture_3 = ExtResource(3)
shader_param/texture_1 = ExtResource(2)
shader_param/texture_2 = ExtResource(3)
shader_param/texture_3 = ExtResource(5)
shader_param/texture_4 = ExtResource(4)
[sub_resource id=44 type="ArrayMesh"]
@@ -1034,9 +1034,9 @@ shader = SubResource(1)
resource_name = ""
shader = SubResource(3)
shader_param/texture_0 = ExtResource(1)
shader_param/texture_1 = ExtResource(5)
shader_param/texture_2 = ExtResource(2)
shader_param/texture_3 = ExtResource(3)
shader_param/texture_1 = ExtResource(2)
shader_param/texture_2 = ExtResource(3)
shader_param/texture_3 = ExtResource(5)
shader_param/texture_4 = ExtResource(4)
[sub_resource id=47 type="ArrayMesh"]
@@ -1085,9 +1085,9 @@ shader = SubResource(1)
resource_name = ""
shader = SubResource(3)
shader_param/texture_0 = ExtResource(1)
shader_param/texture_1 = ExtResource(5)
shader_param/texture_2 = ExtResource(2)
shader_param/texture_3 = ExtResource(3)
shader_param/texture_1 = ExtResource(2)
shader_param/texture_2 = ExtResource(3)
shader_param/texture_3 = ExtResource(5)
shader_param/texture_4 = ExtResource(4)
[sub_resource id=50 type="ArrayMesh"]
@@ -1136,9 +1136,9 @@ shader = SubResource(1)
resource_name = ""
shader = SubResource(3)
shader_param/texture_0 = ExtResource(1)
shader_param/texture_1 = ExtResource(5)
shader_param/texture_2 = ExtResource(2)
shader_param/texture_3 = ExtResource(3)
shader_param/texture_1 = ExtResource(2)
shader_param/texture_2 = ExtResource(3)
shader_param/texture_3 = ExtResource(5)
shader_param/texture_4 = ExtResource(4)
[sub_resource id=53 type="ArrayMesh"]
@@ -1187,9 +1187,9 @@ shader = SubResource(1)
resource_name = ""
shader = SubResource(3)
shader_param/texture_0 = ExtResource(1)
shader_param/texture_1 = ExtResource(5)
shader_param/texture_2 = ExtResource(2)
shader_param/texture_3 = ExtResource(3)
shader_param/texture_1 = ExtResource(2)
shader_param/texture_2 = ExtResource(3)
shader_param/texture_3 = ExtResource(5)
shader_param/texture_4 = ExtResource(4)
[sub_resource id=56 type="ArrayMesh"]
@@ -1238,9 +1238,9 @@ shader = SubResource(1)
resource_name = ""
shader = SubResource(3)
shader_param/texture_0 = ExtResource(1)
shader_param/texture_1 = ExtResource(5)
shader_param/texture_2 = ExtResource(2)
shader_param/texture_3 = ExtResource(3)
shader_param/texture_1 = ExtResource(2)
shader_param/texture_2 = ExtResource(3)
shader_param/texture_3 = ExtResource(5)
shader_param/texture_4 = ExtResource(4)
[sub_resource id=59 type="ArrayMesh"]
@@ -1289,9 +1289,9 @@ shader = SubResource(1)
resource_name = ""
shader = SubResource(3)
shader_param/texture_0 = ExtResource(1)
shader_param/texture_1 = ExtResource(5)
shader_param/texture_2 = ExtResource(2)
shader_param/texture_3 = ExtResource(3)
shader_param/texture_1 = ExtResource(2)
shader_param/texture_2 = ExtResource(3)
shader_param/texture_3 = ExtResource(5)
shader_param/texture_4 = ExtResource(4)
[sub_resource id=62 type="ArrayMesh"]
@@ -1340,9 +1340,9 @@ shader = SubResource(1)
resource_name = ""
shader = SubResource(3)
shader_param/texture_0 = ExtResource(1)
shader_param/texture_1 = ExtResource(5)
shader_param/texture_2 = ExtResource(2)
shader_param/texture_3 = ExtResource(3)
shader_param/texture_1 = ExtResource(2)
shader_param/texture_2 = ExtResource(3)
shader_param/texture_3 = ExtResource(5)
shader_param/texture_4 = ExtResource(4)
[sub_resource id=65 type="ArrayMesh"]
@@ -1391,9 +1391,9 @@ shader = SubResource(1)
resource_name = ""
shader = SubResource(3)
shader_param/texture_0 = ExtResource(1)
shader_param/texture_1 = ExtResource(5)
shader_param/texture_2 = ExtResource(2)
shader_param/texture_3 = ExtResource(3)
shader_param/texture_1 = ExtResource(2)
shader_param/texture_2 = ExtResource(3)
shader_param/texture_3 = ExtResource(5)
shader_param/texture_4 = ExtResource(4)
[sub_resource id=68 type="ArrayMesh"]
@@ -1442,9 +1442,9 @@ shader = SubResource(1)
resource_name = ""
shader = SubResource(3)
shader_param/texture_0 = ExtResource(1)
shader_param/texture_1 = ExtResource(5)
shader_param/texture_2 = ExtResource(2)
shader_param/texture_3 = ExtResource(3)
shader_param/texture_1 = ExtResource(2)
shader_param/texture_2 = ExtResource(3)
shader_param/texture_3 = ExtResource(5)
shader_param/texture_4 = ExtResource(4)
[sub_resource id=71 type="ArrayMesh"]
@@ -1493,9 +1493,9 @@ shader = SubResource(1)
resource_name = ""
shader = SubResource(3)
shader_param/texture_0 = ExtResource(1)
shader_param/texture_1 = ExtResource(5)
shader_param/texture_2 = ExtResource(2)
shader_param/texture_3 = ExtResource(3)
shader_param/texture_1 = ExtResource(2)
shader_param/texture_2 = ExtResource(3)
shader_param/texture_3 = ExtResource(5)
shader_param/texture_4 = ExtResource(4)
[sub_resource id=74 type="ArrayMesh"]
@@ -1544,9 +1544,9 @@ shader = SubResource(1)
resource_name = ""
shader = SubResource(3)
shader_param/texture_0 = ExtResource(1)
shader_param/texture_1 = ExtResource(5)
shader_param/texture_2 = ExtResource(2)
shader_param/texture_3 = ExtResource(3)
shader_param/texture_1 = ExtResource(2)
shader_param/texture_2 = ExtResource(3)
shader_param/texture_3 = ExtResource(5)
shader_param/texture_4 = ExtResource(4)
[sub_resource id=77 type="ArrayMesh"]
@@ -1595,9 +1595,9 @@ shader = SubResource(1)
resource_name = ""
shader = SubResource(3)
shader_param/texture_0 = ExtResource(1)
shader_param/texture_1 = ExtResource(5)
shader_param/texture_2 = ExtResource(2)
shader_param/texture_3 = ExtResource(3)
shader_param/texture_1 = ExtResource(2)
shader_param/texture_2 = ExtResource(3)
shader_param/texture_3 = ExtResource(5)
shader_param/texture_4 = ExtResource(4)
[sub_resource id=80 type="ArrayMesh"]
@@ -1646,9 +1646,9 @@ shader = SubResource(1)
resource_name = ""
shader = SubResource(3)
shader_param/texture_0 = ExtResource(1)
shader_param/texture_1 = ExtResource(5)
shader_param/texture_2 = ExtResource(2)
shader_param/texture_3 = ExtResource(3)
shader_param/texture_1 = ExtResource(2)
shader_param/texture_2 = ExtResource(3)
shader_param/texture_3 = ExtResource(5)
shader_param/texture_4 = ExtResource(4)
[sub_resource id=83 type="ArrayMesh"]
@@ -1697,9 +1697,9 @@ shader = SubResource(1)
resource_name = ""
shader = SubResource(3)
shader_param/texture_0 = ExtResource(1)
shader_param/texture_1 = ExtResource(5)
shader_param/texture_2 = ExtResource(2)
shader_param/texture_3 = ExtResource(3)
shader_param/texture_1 = ExtResource(2)
shader_param/texture_2 = ExtResource(3)
shader_param/texture_3 = ExtResource(5)
shader_param/texture_4 = ExtResource(4)
[sub_resource id=86 type="ArrayMesh"]
@@ -1748,9 +1748,9 @@ shader = SubResource(1)
resource_name = ""
shader = SubResource(3)
shader_param/texture_0 = ExtResource(1)
shader_param/texture_1 = ExtResource(5)
shader_param/texture_2 = ExtResource(2)
shader_param/texture_3 = ExtResource(3)
shader_param/texture_1 = ExtResource(2)
shader_param/texture_2 = ExtResource(3)
shader_param/texture_3 = ExtResource(5)
shader_param/texture_4 = ExtResource(4)
[sub_resource id=89 type="ArrayMesh"]
@@ -1799,9 +1799,9 @@ shader = SubResource(1)
resource_name = ""
shader = SubResource(3)
shader_param/texture_0 = ExtResource(1)
shader_param/texture_1 = ExtResource(5)
shader_param/texture_2 = ExtResource(2)
shader_param/texture_3 = ExtResource(3)
shader_param/texture_1 = ExtResource(2)
shader_param/texture_2 = ExtResource(3)
shader_param/texture_3 = ExtResource(5)
shader_param/texture_4 = ExtResource(4)
[sub_resource id=92 type="ArrayMesh"]
@@ -1850,9 +1850,9 @@ shader = SubResource(1)
resource_name = ""
shader = SubResource(3)
shader_param/texture_0 = ExtResource(1)
shader_param/texture_1 = ExtResource(5)
shader_param/texture_2 = ExtResource(2)
shader_param/texture_3 = ExtResource(3)
shader_param/texture_1 = ExtResource(2)
shader_param/texture_2 = ExtResource(3)
shader_param/texture_3 = ExtResource(5)
shader_param/texture_4 = ExtResource(4)
[sub_resource id=95 type="ArrayMesh"]
@@ -1901,9 +1901,9 @@ shader = SubResource(1)
resource_name = ""
shader = SubResource(3)
shader_param/texture_0 = ExtResource(1)
shader_param/texture_1 = ExtResource(5)
shader_param/texture_2 = ExtResource(2)
shader_param/texture_3 = ExtResource(3)
shader_param/texture_1 = ExtResource(2)
shader_param/texture_2 = ExtResource(3)
shader_param/texture_3 = ExtResource(5)
shader_param/texture_4 = ExtResource(4)
[sub_resource id=98 type="ArrayMesh"]
@@ -1952,9 +1952,9 @@ shader = SubResource(1)
resource_name = ""
shader = SubResource(3)
shader_param/texture_0 = ExtResource(1)
shader_param/texture_1 = ExtResource(5)
shader_param/texture_2 = ExtResource(2)
shader_param/texture_3 = ExtResource(3)
shader_param/texture_1 = ExtResource(2)
shader_param/texture_2 = ExtResource(3)
shader_param/texture_3 = ExtResource(5)
shader_param/texture_4 = ExtResource(4)
[sub_resource id=101 type="ArrayMesh"]
@@ -2003,9 +2003,9 @@ shader = SubResource(1)
resource_name = ""
shader = SubResource(3)
shader_param/texture_0 = ExtResource(1)
shader_param/texture_1 = ExtResource(5)
shader_param/texture_2 = ExtResource(2)
shader_param/texture_3 = ExtResource(3)
shader_param/texture_1 = ExtResource(2)
shader_param/texture_2 = ExtResource(3)
shader_param/texture_3 = ExtResource(5)
shader_param/texture_4 = ExtResource(4)
[sub_resource id=104 type="ArrayMesh"]
@@ -2054,9 +2054,9 @@ shader = SubResource(1)
resource_name = ""
shader = SubResource(3)
shader_param/texture_0 = ExtResource(1)
shader_param/texture_1 = ExtResource(5)
shader_param/texture_2 = ExtResource(2)
shader_param/texture_3 = ExtResource(3)
shader_param/texture_1 = ExtResource(2)
shader_param/texture_2 = ExtResource(3)
shader_param/texture_3 = ExtResource(5)
shader_param/texture_4 = ExtResource(4)
[sub_resource id=107 type="ArrayMesh"]
@@ -2105,9 +2105,9 @@ shader = SubResource(1)
resource_name = ""
shader = SubResource(3)
shader_param/texture_0 = ExtResource(1)
shader_param/texture_1 = ExtResource(5)
shader_param/texture_2 = ExtResource(2)
shader_param/texture_3 = ExtResource(3)
shader_param/texture_1 = ExtResource(2)
shader_param/texture_2 = ExtResource(3)
shader_param/texture_3 = ExtResource(5)
shader_param/texture_4 = ExtResource(4)
[sub_resource id=110 type="ArrayMesh"]
@@ -2156,9 +2156,9 @@ shader = SubResource(1)
resource_name = ""
shader = SubResource(3)
shader_param/texture_0 = ExtResource(1)
shader_param/texture_1 = ExtResource(5)
shader_param/texture_2 = ExtResource(2)
shader_param/texture_3 = ExtResource(3)
shader_param/texture_1 = ExtResource(2)
shader_param/texture_2 = ExtResource(3)
shader_param/texture_3 = ExtResource(5)
shader_param/texture_4 = ExtResource(4)
[sub_resource id=113 type="ArrayMesh"]
@@ -2207,9 +2207,9 @@ shader = SubResource(1)
resource_name = ""
shader = SubResource(3)
shader_param/texture_0 = ExtResource(1)
shader_param/texture_1 = ExtResource(5)
shader_param/texture_2 = ExtResource(2)
shader_param/texture_3 = ExtResource(3)
shader_param/texture_1 = ExtResource(2)
shader_param/texture_2 = ExtResource(3)
shader_param/texture_3 = ExtResource(5)
shader_param/texture_4 = ExtResource(4)
[sub_resource id=116 type="ArrayMesh"]
@@ -2258,9 +2258,9 @@ shader = SubResource(1)
resource_name = ""
shader = SubResource(3)
shader_param/texture_0 = ExtResource(1)
shader_param/texture_1 = ExtResource(5)
shader_param/texture_2 = ExtResource(2)
shader_param/texture_3 = ExtResource(3)
shader_param/texture_1 = ExtResource(2)
shader_param/texture_2 = ExtResource(3)
shader_param/texture_3 = ExtResource(5)
shader_param/texture_4 = ExtResource(4)
[sub_resource id=119 type="ArrayMesh"]
@@ -2309,9 +2309,9 @@ shader = SubResource(1)
resource_name = ""
shader = SubResource(3)
shader_param/texture_0 = ExtResource(1)
shader_param/texture_1 = ExtResource(5)
shader_param/texture_2 = ExtResource(2)
shader_param/texture_3 = ExtResource(3)
shader_param/texture_1 = ExtResource(2)
shader_param/texture_2 = ExtResource(3)
shader_param/texture_3 = ExtResource(5)
shader_param/texture_4 = ExtResource(4)
[sub_resource id=122 type="ArrayMesh"]
@@ -2360,9 +2360,9 @@ shader = SubResource(1)
resource_name = ""
shader = SubResource(3)
shader_param/texture_0 = ExtResource(1)
shader_param/texture_1 = ExtResource(5)
shader_param/texture_2 = ExtResource(2)
shader_param/texture_3 = ExtResource(3)
shader_param/texture_1 = ExtResource(2)
shader_param/texture_2 = ExtResource(3)
shader_param/texture_3 = ExtResource(5)
shader_param/texture_4 = ExtResource(4)
[sub_resource id=125 type="ArrayMesh"]
@@ -2411,9 +2411,9 @@ shader = SubResource(1)
resource_name = ""
shader = SubResource(3)
shader_param/texture_0 = ExtResource(1)
shader_param/texture_1 = ExtResource(5)
shader_param/texture_2 = ExtResource(2)
shader_param/texture_3 = ExtResource(3)
shader_param/texture_1 = ExtResource(2)
shader_param/texture_2 = ExtResource(3)
shader_param/texture_3 = ExtResource(5)
shader_param/texture_4 = ExtResource(4)
[sub_resource id=128 type="ArrayMesh"]
@@ -2462,9 +2462,9 @@ shader = SubResource(1)
resource_name = ""
shader = SubResource(3)
shader_param/texture_0 = ExtResource(1)
shader_param/texture_1 = ExtResource(5)
shader_param/texture_2 = ExtResource(2)
shader_param/texture_3 = ExtResource(3)
shader_param/texture_1 = ExtResource(2)
shader_param/texture_2 = ExtResource(3)
shader_param/texture_3 = ExtResource(5)
shader_param/texture_4 = ExtResource(4)
[sub_resource id=131 type="ArrayMesh"]
@@ -2508,9 +2508,9 @@ surfaces/1 = {
resource_name = ""
shader = SubResource(3)
shader_param/texture_0 = ExtResource(1)
shader_param/texture_1 = ExtResource(5)
shader_param/texture_2 = ExtResource(2)
shader_param/texture_3 = ExtResource(3)
shader_param/texture_1 = ExtResource(2)
shader_param/texture_2 = ExtResource(3)
shader_param/texture_3 = ExtResource(5)
shader_param/texture_4 = ExtResource(4)
[sub_resource id=133 type="ShaderMaterial"]
@@ -2564,9 +2564,9 @@ shader = SubResource(1)
resource_name = ""
shader = SubResource(3)
shader_param/texture_0 = ExtResource(1)
shader_param/texture_1 = ExtResource(5)
shader_param/texture_2 = ExtResource(2)
shader_param/texture_3 = ExtResource(3)
shader_param/texture_1 = ExtResource(2)
shader_param/texture_2 = ExtResource(3)
shader_param/texture_3 = ExtResource(5)
shader_param/texture_4 = ExtResource(4)
[sub_resource id=137 type="ArrayMesh"]
@@ -2615,9 +2615,9 @@ shader = SubResource(1)
resource_name = ""
shader = SubResource(3)
shader_param/texture_0 = ExtResource(1)
shader_param/texture_1 = ExtResource(5)
shader_param/texture_2 = ExtResource(2)
shader_param/texture_3 = ExtResource(3)
shader_param/texture_1 = ExtResource(2)
shader_param/texture_2 = ExtResource(3)
shader_param/texture_3 = ExtResource(5)
shader_param/texture_4 = ExtResource(4)
[sub_resource id=140 type="ArrayMesh"]
@@ -2666,9 +2666,9 @@ shader = SubResource(1)
resource_name = ""
shader = SubResource(3)
shader_param/texture_0 = ExtResource(1)
shader_param/texture_1 = ExtResource(5)
shader_param/texture_2 = ExtResource(2)
shader_param/texture_3 = ExtResource(3)
shader_param/texture_1 = ExtResource(2)
shader_param/texture_2 = ExtResource(3)
shader_param/texture_3 = ExtResource(5)
shader_param/texture_4 = ExtResource(4)
[sub_resource id=143 type="ArrayMesh"]
@@ -2717,9 +2717,9 @@ shader = SubResource(1)
resource_name = ""
shader = SubResource(3)
shader_param/texture_0 = ExtResource(1)
shader_param/texture_1 = ExtResource(5)
shader_param/texture_2 = ExtResource(2)
shader_param/texture_3 = ExtResource(3)
shader_param/texture_1 = ExtResource(2)
shader_param/texture_2 = ExtResource(3)
shader_param/texture_3 = ExtResource(5)
shader_param/texture_4 = ExtResource(4)
[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_Nor_1k.jpg" type="Texture"]
[ext_resource id=2 path="concrete_floor_02_spec_1k.jpg" type="Texture"]
[ext_resource id=3 path="concrete_floor_02_rough_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_Disp_1k.jpg" type="Texture"]
[ext_resource id=5 path="concrete_floor_02_spec_1k.jpg" type="Texture"]
[ext_resource id=5 path="concrete_floor_02_rough_1k.jpg" type="Texture"]
[sub_resource id=1 type="Shader"]
@@ -320,9 +320,9 @@ void fragment () {
resource_name = ""
shader = SubResource(3)
shader_param/texture_0 = ExtResource(1)
shader_param/texture_1 = ExtResource(5)
shader_param/texture_2 = ExtResource(2)
shader_param/texture_3 = ExtResource(3)
shader_param/texture_1 = ExtResource(2)
shader_param/texture_2 = ExtResource(3)
shader_param/texture_3 = ExtResource(5)
shader_param/texture_4 = ExtResource(4)
[sub_resource id=5 type="ArrayMesh"]
@@ -371,9 +371,9 @@ shader = SubResource(1)
resource_name = ""
shader = SubResource(3)
shader_param/texture_0 = ExtResource(1)
shader_param/texture_1 = ExtResource(5)
shader_param/texture_2 = ExtResource(2)
shader_param/texture_3 = ExtResource(3)
shader_param/texture_1 = ExtResource(2)
shader_param/texture_2 = ExtResource(3)
shader_param/texture_3 = ExtResource(5)
shader_param/texture_4 = ExtResource(4)
[sub_resource id=8 type="ArrayMesh"]
@@ -422,9 +422,9 @@ shader = SubResource(1)
resource_name = ""
shader = SubResource(3)
shader_param/texture_0 = ExtResource(1)
shader_param/texture_1 = ExtResource(5)
shader_param/texture_2 = ExtResource(2)
shader_param/texture_3 = ExtResource(3)
shader_param/texture_1 = ExtResource(2)
shader_param/texture_2 = ExtResource(3)
shader_param/texture_3 = ExtResource(5)
shader_param/texture_4 = ExtResource(4)
[sub_resource id=11 type="ArrayMesh"]
@@ -473,9 +473,9 @@ shader = SubResource(1)
resource_name = ""
shader = SubResource(3)
shader_param/texture_0 = ExtResource(1)
shader_param/texture_1 = ExtResource(5)
shader_param/texture_2 = ExtResource(2)
shader_param/texture_3 = ExtResource(3)
shader_param/texture_1 = ExtResource(2)
shader_param/texture_2 = ExtResource(3)
shader_param/texture_3 = ExtResource(5)
shader_param/texture_4 = ExtResource(4)
[sub_resource id=14 type="ArrayMesh"]
@@ -524,9 +524,9 @@ shader = SubResource(1)
resource_name = ""
shader = SubResource(3)
shader_param/texture_0 = ExtResource(1)
shader_param/texture_1 = ExtResource(5)
shader_param/texture_2 = ExtResource(2)
shader_param/texture_3 = ExtResource(3)
shader_param/texture_1 = ExtResource(2)
shader_param/texture_2 = ExtResource(3)
shader_param/texture_3 = ExtResource(5)
shader_param/texture_4 = ExtResource(4)
[sub_resource id=17 type="ArrayMesh"]
@@ -575,9 +575,9 @@ shader = SubResource(1)
resource_name = ""
shader = SubResource(3)
shader_param/texture_0 = ExtResource(1)
shader_param/texture_1 = ExtResource(5)
shader_param/texture_2 = ExtResource(2)
shader_param/texture_3 = ExtResource(3)
shader_param/texture_1 = ExtResource(2)
shader_param/texture_2 = ExtResource(3)
shader_param/texture_3 = ExtResource(5)
shader_param/texture_4 = ExtResource(4)
[sub_resource id=20 type="ArrayMesh"]
@@ -626,9 +626,9 @@ shader = SubResource(1)
resource_name = ""
shader = SubResource(3)
shader_param/texture_0 = ExtResource(1)
shader_param/texture_1 = ExtResource(5)
shader_param/texture_2 = ExtResource(2)
shader_param/texture_3 = ExtResource(3)
shader_param/texture_1 = ExtResource(2)
shader_param/texture_2 = ExtResource(3)
shader_param/texture_3 = ExtResource(5)
shader_param/texture_4 = ExtResource(4)
[sub_resource id=23 type="ArrayMesh"]
@@ -677,9 +677,9 @@ shader = SubResource(1)
resource_name = ""
shader = SubResource(3)
shader_param/texture_0 = ExtResource(1)
shader_param/texture_1 = ExtResource(5)
shader_param/texture_2 = ExtResource(2)
shader_param/texture_3 = ExtResource(3)
shader_param/texture_1 = ExtResource(2)
shader_param/texture_2 = ExtResource(3)
shader_param/texture_3 = ExtResource(5)
shader_param/texture_4 = ExtResource(4)
[sub_resource id=26 type="ArrayMesh"]
@@ -728,9 +728,9 @@ shader = SubResource(1)
resource_name = ""
shader = SubResource(3)
shader_param/texture_0 = ExtResource(1)
shader_param/texture_1 = ExtResource(5)
shader_param/texture_2 = ExtResource(2)
shader_param/texture_3 = ExtResource(3)
shader_param/texture_1 = ExtResource(2)
shader_param/texture_2 = ExtResource(3)
shader_param/texture_3 = ExtResource(5)
shader_param/texture_4 = ExtResource(4)
[sub_resource id=29 type="ArrayMesh"]
@@ -779,9 +779,9 @@ shader = SubResource(1)
resource_name = ""
shader = SubResource(3)
shader_param/texture_0 = ExtResource(1)
shader_param/texture_1 = ExtResource(5)
shader_param/texture_2 = ExtResource(2)
shader_param/texture_3 = ExtResource(3)
shader_param/texture_1 = ExtResource(2)
shader_param/texture_2 = ExtResource(3)
shader_param/texture_3 = ExtResource(5)
shader_param/texture_4 = ExtResource(4)
[sub_resource id=32 type="ArrayMesh"]
@@ -830,9 +830,9 @@ shader = SubResource(1)
resource_name = ""
shader = SubResource(3)
shader_param/texture_0 = ExtResource(1)
shader_param/texture_1 = ExtResource(5)
shader_param/texture_2 = ExtResource(2)
shader_param/texture_3 = ExtResource(3)
shader_param/texture_1 = ExtResource(2)
shader_param/texture_2 = ExtResource(3)
shader_param/texture_3 = ExtResource(5)
shader_param/texture_4 = ExtResource(4)
[sub_resource id=35 type="ArrayMesh"]
@@ -881,9 +881,9 @@ shader = SubResource(1)
resource_name = ""
shader = SubResource(3)
shader_param/texture_0 = ExtResource(1)
shader_param/texture_1 = ExtResource(5)
shader_param/texture_2 = ExtResource(2)
shader_param/texture_3 = ExtResource(3)
shader_param/texture_1 = ExtResource(2)
shader_param/texture_2 = ExtResource(3)
shader_param/texture_3 = ExtResource(5)
shader_param/texture_4 = ExtResource(4)
[sub_resource id=38 type="ArrayMesh"]
@@ -932,9 +932,9 @@ shader = SubResource(1)
resource_name = ""
shader = SubResource(3)
shader_param/texture_0 = ExtResource(1)
shader_param/texture_1 = ExtResource(5)
shader_param/texture_2 = ExtResource(2)
shader_param/texture_3 = ExtResource(3)
shader_param/texture_1 = ExtResource(2)
shader_param/texture_2 = ExtResource(3)
shader_param/texture_3 = ExtResource(5)
shader_param/texture_4 = ExtResource(4)
[sub_resource id=41 type="ArrayMesh"]
@@ -983,9 +983,9 @@ shader = SubResource(1)
resource_name = ""
shader = SubResource(3)
shader_param/texture_0 = ExtResource(1)
shader_param/texture_1 = ExtResource(5)
shader_param/texture_2 = ExtResource(2)
shader_param/texture_3 = ExtResource(3)
shader_param/texture_1 = ExtResource(2)
shader_param/texture_2 = ExtResource(3)
shader_param/texture_3 = ExtResource(5)
shader_param/texture_4 = ExtResource(4)
[sub_resource id=44 type="ArrayMesh"]
@@ -1034,9 +1034,9 @@ shader = SubResource(1)
resource_name = ""
shader = SubResource(3)
shader_param/texture_0 = ExtResource(1)
shader_param/texture_1 = ExtResource(5)
shader_param/texture_2 = ExtResource(2)
shader_param/texture_3 = ExtResource(3)
shader_param/texture_1 = ExtResource(2)
shader_param/texture_2 = ExtResource(3)
shader_param/texture_3 = ExtResource(5)
shader_param/texture_4 = ExtResource(4)
[sub_resource id=47 type="ArrayMesh"]
@@ -1085,9 +1085,9 @@ shader = SubResource(1)
resource_name = ""
shader = SubResource(3)
shader_param/texture_0 = ExtResource(1)
shader_param/texture_1 = ExtResource(5)
shader_param/texture_2 = ExtResource(2)
shader_param/texture_3 = ExtResource(3)
shader_param/texture_1 = ExtResource(2)
shader_param/texture_2 = ExtResource(3)
shader_param/texture_3 = ExtResource(5)
shader_param/texture_4 = ExtResource(4)
[sub_resource id=50 type="ArrayMesh"]
@@ -1136,9 +1136,9 @@ shader = SubResource(1)
resource_name = ""
shader = SubResource(3)
shader_param/texture_0 = ExtResource(1)
shader_param/texture_1 = ExtResource(5)
shader_param/texture_2 = ExtResource(2)
shader_param/texture_3 = ExtResource(3)
shader_param/texture_1 = ExtResource(2)
shader_param/texture_2 = ExtResource(3)
shader_param/texture_3 = ExtResource(5)
shader_param/texture_4 = ExtResource(4)
[sub_resource id=53 type="ArrayMesh"]
@@ -1212,9 +1212,9 @@ shader = SubResource(1)
resource_name = ""
shader = SubResource(3)
shader_param/texture_0 = ExtResource(1)
shader_param/texture_1 = ExtResource(5)
shader_param/texture_2 = ExtResource(2)
shader_param/texture_3 = ExtResource(3)
shader_param/texture_1 = ExtResource(2)
shader_param/texture_2 = ExtResource(3)
shader_param/texture_3 = ExtResource(5)
shader_param/texture_4 = ExtResource(4)
[sub_resource id=58 type="ArrayMesh"]
@@ -1263,9 +1263,9 @@ shader = SubResource(1)
resource_name = ""
shader = SubResource(3)
shader_param/texture_0 = ExtResource(1)
shader_param/texture_1 = ExtResource(5)
shader_param/texture_2 = ExtResource(2)
shader_param/texture_3 = ExtResource(3)
shader_param/texture_1 = ExtResource(2)
shader_param/texture_2 = ExtResource(3)
shader_param/texture_3 = ExtResource(5)
shader_param/texture_4 = ExtResource(4)
[sub_resource id=61 type="ArrayMesh"]
@@ -1314,9 +1314,9 @@ shader = SubResource(1)
resource_name = ""
shader = SubResource(3)
shader_param/texture_0 = ExtResource(1)
shader_param/texture_1 = ExtResource(5)
shader_param/texture_2 = ExtResource(2)
shader_param/texture_3 = ExtResource(3)
shader_param/texture_1 = ExtResource(2)
shader_param/texture_2 = ExtResource(3)
shader_param/texture_3 = ExtResource(5)
shader_param/texture_4 = ExtResource(4)
[sub_resource id=64 type="ArrayMesh"]
@@ -1365,9 +1365,9 @@ shader = SubResource(1)
resource_name = ""
shader = SubResource(3)
shader_param/texture_0 = ExtResource(1)
shader_param/texture_1 = ExtResource(5)
shader_param/texture_2 = ExtResource(2)
shader_param/texture_3 = ExtResource(3)
shader_param/texture_1 = ExtResource(2)
shader_param/texture_2 = ExtResource(3)
shader_param/texture_3 = ExtResource(5)
shader_param/texture_4 = ExtResource(4)
[sub_resource id=67 type="ArrayMesh"]
@@ -1416,9 +1416,9 @@ shader = SubResource(1)
resource_name = ""
shader = SubResource(3)
shader_param/texture_0 = ExtResource(1)
shader_param/texture_1 = ExtResource(5)
shader_param/texture_2 = ExtResource(2)
shader_param/texture_3 = ExtResource(3)
shader_param/texture_1 = ExtResource(2)
shader_param/texture_2 = ExtResource(3)
shader_param/texture_3 = ExtResource(5)
shader_param/texture_4 = ExtResource(4)
[sub_resource id=70 type="ArrayMesh"]
@@ -1467,9 +1467,9 @@ shader = SubResource(1)
resource_name = ""
shader = SubResource(3)
shader_param/texture_0 = ExtResource(1)
shader_param/texture_1 = ExtResource(5)
shader_param/texture_2 = ExtResource(2)
shader_param/texture_3 = ExtResource(3)
shader_param/texture_1 = ExtResource(2)
shader_param/texture_2 = ExtResource(3)
shader_param/texture_3 = ExtResource(5)
shader_param/texture_4 = ExtResource(4)
[sub_resource id=73 type="ArrayMesh"]
@@ -1518,9 +1518,9 @@ shader = SubResource(1)
resource_name = ""
shader = SubResource(3)
shader_param/texture_0 = ExtResource(1)
shader_param/texture_1 = ExtResource(5)
shader_param/texture_2 = ExtResource(2)
shader_param/texture_3 = ExtResource(3)
shader_param/texture_1 = ExtResource(2)
shader_param/texture_2 = ExtResource(3)
shader_param/texture_3 = ExtResource(5)
shader_param/texture_4 = ExtResource(4)
[sub_resource id=76 type="ArrayMesh"]
@@ -1569,9 +1569,9 @@ shader = SubResource(1)
resource_name = ""
shader = SubResource(3)
shader_param/texture_0 = ExtResource(1)
shader_param/texture_1 = ExtResource(5)
shader_param/texture_2 = ExtResource(2)
shader_param/texture_3 = ExtResource(3)
shader_param/texture_1 = ExtResource(2)
shader_param/texture_2 = ExtResource(3)
shader_param/texture_3 = ExtResource(5)
shader_param/texture_4 = ExtResource(4)
[sub_resource id=79 type="ArrayMesh"]
@@ -1620,9 +1620,9 @@ shader = SubResource(1)
resource_name = ""
shader = SubResource(3)
shader_param/texture_0 = ExtResource(1)
shader_param/texture_1 = ExtResource(5)
shader_param/texture_2 = ExtResource(2)
shader_param/texture_3 = ExtResource(3)
shader_param/texture_1 = ExtResource(2)
shader_param/texture_2 = ExtResource(3)
shader_param/texture_3 = ExtResource(5)
shader_param/texture_4 = ExtResource(4)
[sub_resource id=82 type="ArrayMesh"]
@@ -1671,9 +1671,9 @@ shader = SubResource(1)
resource_name = ""
shader = SubResource(3)
shader_param/texture_0 = ExtResource(1)
shader_param/texture_1 = ExtResource(5)
shader_param/texture_2 = ExtResource(2)
shader_param/texture_3 = ExtResource(3)
shader_param/texture_1 = ExtResource(2)
shader_param/texture_2 = ExtResource(3)
shader_param/texture_3 = ExtResource(5)
shader_param/texture_4 = ExtResource(4)
[sub_resource id=85 type="ArrayMesh"]
@@ -1722,9 +1722,9 @@ shader = SubResource(1)
resource_name = ""
shader = SubResource(3)
shader_param/texture_0 = ExtResource(1)
shader_param/texture_1 = ExtResource(5)
shader_param/texture_2 = ExtResource(2)
shader_param/texture_3 = ExtResource(3)
shader_param/texture_1 = ExtResource(2)
shader_param/texture_2 = ExtResource(3)
shader_param/texture_3 = ExtResource(5)
shader_param/texture_4 = ExtResource(4)
[sub_resource id=88 type="ArrayMesh"]
@@ -1773,9 +1773,9 @@ shader = SubResource(1)
resource_name = ""
shader = SubResource(3)
shader_param/texture_0 = ExtResource(1)
shader_param/texture_1 = ExtResource(5)
shader_param/texture_2 = ExtResource(2)
shader_param/texture_3 = ExtResource(3)
shader_param/texture_1 = ExtResource(2)
shader_param/texture_2 = ExtResource(3)
shader_param/texture_3 = ExtResource(5)
shader_param/texture_4 = ExtResource(4)
[sub_resource id=91 type="ArrayMesh"]
@@ -1824,9 +1824,9 @@ shader = SubResource(1)
resource_name = ""
shader = SubResource(3)
shader_param/texture_0 = ExtResource(1)
shader_param/texture_1 = ExtResource(5)
shader_param/texture_2 = ExtResource(2)
shader_param/texture_3 = ExtResource(3)
shader_param/texture_1 = ExtResource(2)
shader_param/texture_2 = ExtResource(3)
shader_param/texture_3 = ExtResource(5)
shader_param/texture_4 = ExtResource(4)
[sub_resource id=94 type="ArrayMesh"]
@@ -1875,9 +1875,9 @@ shader = SubResource(1)
resource_name = ""
shader = SubResource(3)
shader_param/texture_0 = ExtResource(1)
shader_param/texture_1 = ExtResource(5)
shader_param/texture_2 = ExtResource(2)
shader_param/texture_3 = ExtResource(3)
shader_param/texture_1 = ExtResource(2)
shader_param/texture_2 = ExtResource(3)
shader_param/texture_3 = ExtResource(5)
shader_param/texture_4 = ExtResource(4)
[sub_resource id=97 type="ArrayMesh"]
@@ -1926,9 +1926,9 @@ shader = SubResource(1)
resource_name = ""
shader = SubResource(3)
shader_param/texture_0 = ExtResource(1)
shader_param/texture_1 = ExtResource(5)
shader_param/texture_2 = ExtResource(2)
shader_param/texture_3 = ExtResource(3)
shader_param/texture_1 = ExtResource(2)
shader_param/texture_2 = ExtResource(3)
shader_param/texture_3 = ExtResource(5)
shader_param/texture_4 = ExtResource(4)
[sub_resource id=100 type="ArrayMesh"]
@@ -1977,9 +1977,9 @@ shader = SubResource(1)
resource_name = ""
shader = SubResource(3)
shader_param/texture_0 = ExtResource(1)
shader_param/texture_1 = ExtResource(5)
shader_param/texture_2 = ExtResource(2)
shader_param/texture_3 = ExtResource(3)
shader_param/texture_1 = ExtResource(2)
shader_param/texture_2 = ExtResource(3)
shader_param/texture_3 = ExtResource(5)
shader_param/texture_4 = ExtResource(4)
[sub_resource id=103 type="ArrayMesh"]
@@ -2028,9 +2028,9 @@ shader = SubResource(1)
resource_name = ""
shader = SubResource(3)
shader_param/texture_0 = ExtResource(1)
shader_param/texture_1 = ExtResource(5)
shader_param/texture_2 = ExtResource(2)
shader_param/texture_3 = ExtResource(3)
shader_param/texture_1 = ExtResource(2)
shader_param/texture_2 = ExtResource(3)
shader_param/texture_3 = ExtResource(5)
shader_param/texture_4 = ExtResource(4)
[sub_resource id=106 type="ArrayMesh"]
@@ -2079,9 +2079,9 @@ shader = SubResource(1)
resource_name = ""
shader = SubResource(3)
shader_param/texture_0 = ExtResource(1)
shader_param/texture_1 = ExtResource(5)
shader_param/texture_2 = ExtResource(2)
shader_param/texture_3 = ExtResource(3)
shader_param/texture_1 = ExtResource(2)
shader_param/texture_2 = ExtResource(3)
shader_param/texture_3 = ExtResource(5)
shader_param/texture_4 = ExtResource(4)
[sub_resource id=109 type="ArrayMesh"]
@@ -2130,9 +2130,9 @@ shader = SubResource(1)
resource_name = ""
shader = SubResource(3)
shader_param/texture_0 = ExtResource(1)
shader_param/texture_1 = ExtResource(5)
shader_param/texture_2 = ExtResource(2)
shader_param/texture_3 = ExtResource(3)
shader_param/texture_1 = ExtResource(2)
shader_param/texture_2 = ExtResource(3)
shader_param/texture_3 = ExtResource(5)
shader_param/texture_4 = ExtResource(4)
[sub_resource id=112 type="ArrayMesh"]
@@ -2181,9 +2181,9 @@ shader = SubResource(1)
resource_name = ""
shader = SubResource(3)
shader_param/texture_0 = ExtResource(1)
shader_param/texture_1 = ExtResource(5)
shader_param/texture_2 = ExtResource(2)
shader_param/texture_3 = ExtResource(3)
shader_param/texture_1 = ExtResource(2)
shader_param/texture_2 = ExtResource(3)
shader_param/texture_3 = ExtResource(5)
shader_param/texture_4 = ExtResource(4)
[sub_resource id=115 type="ArrayMesh"]
@@ -2232,9 +2232,9 @@ shader = SubResource(1)
resource_name = ""
shader = SubResource(3)
shader_param/texture_0 = ExtResource(1)
shader_param/texture_1 = ExtResource(5)
shader_param/texture_2 = ExtResource(2)
shader_param/texture_3 = ExtResource(3)
shader_param/texture_1 = ExtResource(2)
shader_param/texture_2 = ExtResource(3)
shader_param/texture_3 = ExtResource(5)
shader_param/texture_4 = ExtResource(4)
[sub_resource id=118 type="ArrayMesh"]
@@ -2283,9 +2283,9 @@ shader = SubResource(1)
resource_name = ""
shader = SubResource(3)
shader_param/texture_0 = ExtResource(1)
shader_param/texture_1 = ExtResource(5)
shader_param/texture_2 = ExtResource(2)
shader_param/texture_3 = ExtResource(3)
shader_param/texture_1 = ExtResource(2)
shader_param/texture_2 = ExtResource(3)
shader_param/texture_3 = ExtResource(5)
shader_param/texture_4 = ExtResource(4)
[sub_resource id=121 type="ArrayMesh"]
@@ -2334,9 +2334,9 @@ shader = SubResource(1)
resource_name = ""
shader = SubResource(3)
shader_param/texture_0 = ExtResource(1)
shader_param/texture_1 = ExtResource(5)
shader_param/texture_2 = ExtResource(2)
shader_param/texture_3 = ExtResource(3)
shader_param/texture_1 = ExtResource(2)
shader_param/texture_2 = ExtResource(3)
shader_param/texture_3 = ExtResource(5)
shader_param/texture_4 = ExtResource(4)
[sub_resource id=124 type="ArrayMesh"]
@@ -2385,9 +2385,9 @@ shader = SubResource(1)
resource_name = ""
shader = SubResource(3)
shader_param/texture_0 = ExtResource(1)
shader_param/texture_1 = ExtResource(5)
shader_param/texture_2 = ExtResource(2)
shader_param/texture_3 = ExtResource(3)
shader_param/texture_1 = ExtResource(2)
shader_param/texture_2 = ExtResource(3)
shader_param/texture_3 = ExtResource(5)
shader_param/texture_4 = ExtResource(4)
[sub_resource id=127 type="ArrayMesh"]
@@ -2436,9 +2436,9 @@ shader = SubResource(1)
resource_name = ""
shader = SubResource(3)
shader_param/texture_0 = ExtResource(1)
shader_param/texture_1 = ExtResource(5)
shader_param/texture_2 = ExtResource(2)
shader_param/texture_3 = ExtResource(3)
shader_param/texture_1 = ExtResource(2)
shader_param/texture_2 = ExtResource(3)
shader_param/texture_3 = ExtResource(5)
shader_param/texture_4 = ExtResource(4)
[sub_resource id=130 type="ArrayMesh"]
@@ -2487,9 +2487,9 @@ shader = SubResource(1)
resource_name = ""
shader = SubResource(3)
shader_param/texture_0 = ExtResource(1)
shader_param/texture_1 = ExtResource(5)
shader_param/texture_2 = ExtResource(2)
shader_param/texture_3 = ExtResource(3)
shader_param/texture_1 = ExtResource(2)
shader_param/texture_2 = ExtResource(3)
shader_param/texture_3 = ExtResource(5)
shader_param/texture_4 = ExtResource(4)
[sub_resource id=133 type="ArrayMesh"]
@@ -2538,9 +2538,9 @@ shader = SubResource(1)
resource_name = ""
shader = SubResource(3)
shader_param/texture_0 = ExtResource(1)
shader_param/texture_1 = ExtResource(5)
shader_param/texture_2 = ExtResource(2)
shader_param/texture_3 = ExtResource(3)
shader_param/texture_1 = ExtResource(2)
shader_param/texture_2 = ExtResource(3)
shader_param/texture_3 = ExtResource(5)
shader_param/texture_4 = ExtResource(4)
[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_Nor_1k.jpg" type="Texture"]
[ext_resource id=2 path="concrete_floor_02_spec_1k.jpg" type="Texture"]
[ext_resource id=3 path="concrete_floor_02_rough_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_Disp_1k.jpg" type="Texture"]
[ext_resource id=5 path="concrete_floor_02_spec_1k.jpg" type="Texture"]
[ext_resource id=5 path="concrete_floor_02_rough_1k.jpg" type="Texture"]
[sub_resource id=1 type="Shader"]
@@ -320,9 +320,9 @@ void fragment () {
resource_name = ""
shader = SubResource(3)
shader_param/texture_0 = ExtResource(1)
shader_param/texture_1 = ExtResource(5)
shader_param/texture_2 = ExtResource(2)
shader_param/texture_3 = ExtResource(3)
shader_param/texture_1 = ExtResource(2)
shader_param/texture_2 = ExtResource(3)
shader_param/texture_3 = ExtResource(5)
shader_param/texture_4 = ExtResource(4)
[sub_resource id=5 type="ArrayMesh"]
@@ -371,9 +371,9 @@ shader = SubResource(1)
resource_name = ""
shader = SubResource(3)
shader_param/texture_0 = ExtResource(1)
shader_param/texture_1 = ExtResource(5)
shader_param/texture_2 = ExtResource(2)
shader_param/texture_3 = ExtResource(3)
shader_param/texture_1 = ExtResource(2)
shader_param/texture_2 = ExtResource(3)
shader_param/texture_3 = ExtResource(5)
shader_param/texture_4 = ExtResource(4)
[sub_resource id=8 type="ArrayMesh"]
@@ -422,9 +422,9 @@ shader = SubResource(1)
resource_name = ""
shader = SubResource(3)
shader_param/texture_0 = ExtResource(1)
shader_param/texture_1 = ExtResource(5)
shader_param/texture_2 = ExtResource(2)
shader_param/texture_3 = ExtResource(3)
shader_param/texture_1 = ExtResource(2)
shader_param/texture_2 = ExtResource(3)
shader_param/texture_3 = ExtResource(5)
shader_param/texture_4 = ExtResource(4)
[sub_resource id=11 type="ArrayMesh"]
@@ -473,9 +473,9 @@ shader = SubResource(1)
resource_name = ""
shader = SubResource(3)
shader_param/texture_0 = ExtResource(1)
shader_param/texture_1 = ExtResource(5)
shader_param/texture_2 = ExtResource(2)
shader_param/texture_3 = ExtResource(3)
shader_param/texture_1 = ExtResource(2)
shader_param/texture_2 = ExtResource(3)
shader_param/texture_3 = ExtResource(5)
shader_param/texture_4 = ExtResource(4)
[sub_resource id=14 type="ArrayMesh"]
@@ -524,9 +524,9 @@ shader = SubResource(1)
resource_name = ""
shader = SubResource(3)
shader_param/texture_0 = ExtResource(1)
shader_param/texture_1 = ExtResource(5)
shader_param/texture_2 = ExtResource(2)
shader_param/texture_3 = ExtResource(3)
shader_param/texture_1 = ExtResource(2)
shader_param/texture_2 = ExtResource(3)
shader_param/texture_3 = ExtResource(5)
shader_param/texture_4 = ExtResource(4)
[sub_resource id=17 type="ArrayMesh"]
@@ -575,9 +575,9 @@ shader = SubResource(1)
resource_name = ""
shader = SubResource(3)
shader_param/texture_0 = ExtResource(1)
shader_param/texture_1 = ExtResource(5)
shader_param/texture_2 = ExtResource(2)
shader_param/texture_3 = ExtResource(3)
shader_param/texture_1 = ExtResource(2)
shader_param/texture_2 = ExtResource(3)
shader_param/texture_3 = ExtResource(5)
shader_param/texture_4 = ExtResource(4)
[sub_resource id=20 type="ArrayMesh"]
@@ -626,9 +626,9 @@ shader = SubResource(1)
resource_name = ""
shader = SubResource(3)
shader_param/texture_0 = ExtResource(1)
shader_param/texture_1 = ExtResource(5)
shader_param/texture_2 = ExtResource(2)
shader_param/texture_3 = ExtResource(3)
shader_param/texture_1 = ExtResource(2)
shader_param/texture_2 = ExtResource(3)
shader_param/texture_3 = ExtResource(5)
shader_param/texture_4 = ExtResource(4)
[sub_resource id=23 type="ArrayMesh"]
@@ -677,9 +677,9 @@ shader = SubResource(1)
resource_name = ""
shader = SubResource(3)
shader_param/texture_0 = ExtResource(1)
shader_param/texture_1 = ExtResource(5)
shader_param/texture_2 = ExtResource(2)
shader_param/texture_3 = ExtResource(3)
shader_param/texture_1 = ExtResource(2)
shader_param/texture_2 = ExtResource(3)
shader_param/texture_3 = ExtResource(5)
shader_param/texture_4 = ExtResource(4)
[sub_resource id=26 type="ArrayMesh"]
@@ -728,9 +728,9 @@ shader = SubResource(1)
resource_name = ""
shader = SubResource(3)
shader_param/texture_0 = ExtResource(1)
shader_param/texture_1 = ExtResource(5)
shader_param/texture_2 = ExtResource(2)
shader_param/texture_3 = ExtResource(3)
shader_param/texture_1 = ExtResource(2)
shader_param/texture_2 = ExtResource(3)
shader_param/texture_3 = ExtResource(5)
shader_param/texture_4 = ExtResource(4)
[sub_resource id=29 type="ArrayMesh"]
@@ -779,9 +779,9 @@ shader = SubResource(1)
resource_name = ""
shader = SubResource(3)
shader_param/texture_0 = ExtResource(1)
shader_param/texture_1 = ExtResource(5)
shader_param/texture_2 = ExtResource(2)
shader_param/texture_3 = ExtResource(3)
shader_param/texture_1 = ExtResource(2)
shader_param/texture_2 = ExtResource(3)
shader_param/texture_3 = ExtResource(5)
shader_param/texture_4 = ExtResource(4)
[sub_resource id=32 type="ArrayMesh"]
@@ -830,9 +830,9 @@ shader = SubResource(1)
resource_name = ""
shader = SubResource(3)
shader_param/texture_0 = ExtResource(1)
shader_param/texture_1 = ExtResource(5)
shader_param/texture_2 = ExtResource(2)
shader_param/texture_3 = ExtResource(3)
shader_param/texture_1 = ExtResource(2)
shader_param/texture_2 = ExtResource(3)
shader_param/texture_3 = ExtResource(5)
shader_param/texture_4 = ExtResource(4)
[sub_resource id=35 type="ArrayMesh"]
@@ -881,9 +881,9 @@ shader = SubResource(1)
resource_name = ""
shader = SubResource(3)
shader_param/texture_0 = ExtResource(1)
shader_param/texture_1 = ExtResource(5)
shader_param/texture_2 = ExtResource(2)
shader_param/texture_3 = ExtResource(3)
shader_param/texture_1 = ExtResource(2)
shader_param/texture_2 = ExtResource(3)
shader_param/texture_3 = ExtResource(5)
shader_param/texture_4 = ExtResource(4)
[sub_resource id=38 type="ArrayMesh"]
@@ -932,9 +932,9 @@ shader = SubResource(1)
resource_name = ""
shader = SubResource(3)
shader_param/texture_0 = ExtResource(1)
shader_param/texture_1 = ExtResource(5)
shader_param/texture_2 = ExtResource(2)
shader_param/texture_3 = ExtResource(3)
shader_param/texture_1 = ExtResource(2)
shader_param/texture_2 = ExtResource(3)
shader_param/texture_3 = ExtResource(5)
shader_param/texture_4 = ExtResource(4)
[sub_resource id=41 type="ArrayMesh"]
@@ -983,9 +983,9 @@ shader = SubResource(1)
resource_name = ""
shader = SubResource(3)
shader_param/texture_0 = ExtResource(1)
shader_param/texture_1 = ExtResource(5)
shader_param/texture_2 = ExtResource(2)
shader_param/texture_3 = ExtResource(3)
shader_param/texture_1 = ExtResource(2)
shader_param/texture_2 = ExtResource(3)
shader_param/texture_3 = ExtResource(5)
shader_param/texture_4 = ExtResource(4)
[sub_resource id=44 type="ArrayMesh"]
@@ -1034,9 +1034,9 @@ shader = SubResource(1)
resource_name = ""
shader = SubResource(3)
shader_param/texture_0 = ExtResource(1)
shader_param/texture_1 = ExtResource(5)
shader_param/texture_2 = ExtResource(2)
shader_param/texture_3 = ExtResource(3)
shader_param/texture_1 = ExtResource(2)
shader_param/texture_2 = ExtResource(3)
shader_param/texture_3 = ExtResource(5)
shader_param/texture_4 = ExtResource(4)
[sub_resource id=47 type="ArrayMesh"]
@@ -1085,9 +1085,9 @@ shader = SubResource(1)
resource_name = ""
shader = SubResource(3)
shader_param/texture_0 = ExtResource(1)
shader_param/texture_1 = ExtResource(5)
shader_param/texture_2 = ExtResource(2)
shader_param/texture_3 = ExtResource(3)
shader_param/texture_1 = ExtResource(2)
shader_param/texture_2 = ExtResource(3)
shader_param/texture_3 = ExtResource(5)
shader_param/texture_4 = ExtResource(4)
[sub_resource id=50 type="ArrayMesh"]
@@ -1136,9 +1136,9 @@ shader = SubResource(1)
resource_name = ""
shader = SubResource(3)
shader_param/texture_0 = ExtResource(1)
shader_param/texture_1 = ExtResource(5)
shader_param/texture_2 = ExtResource(2)
shader_param/texture_3 = ExtResource(3)
shader_param/texture_1 = ExtResource(2)
shader_param/texture_2 = ExtResource(3)
shader_param/texture_3 = ExtResource(5)
shader_param/texture_4 = ExtResource(4)
[sub_resource id=53 type="ArrayMesh"]
@@ -1187,9 +1187,9 @@ shader = SubResource(1)
resource_name = ""
shader = SubResource(3)
shader_param/texture_0 = ExtResource(1)
shader_param/texture_1 = ExtResource(5)
shader_param/texture_2 = ExtResource(2)
shader_param/texture_3 = ExtResource(3)
shader_param/texture_1 = ExtResource(2)
shader_param/texture_2 = ExtResource(3)
shader_param/texture_3 = ExtResource(5)
shader_param/texture_4 = ExtResource(4)
[sub_resource id=56 type="ArrayMesh"]
@@ -1238,9 +1238,9 @@ shader = SubResource(1)
resource_name = ""
shader = SubResource(3)
shader_param/texture_0 = ExtResource(1)
shader_param/texture_1 = ExtResource(5)
shader_param/texture_2 = ExtResource(2)
shader_param/texture_3 = ExtResource(3)
shader_param/texture_1 = ExtResource(2)
shader_param/texture_2 = ExtResource(3)
shader_param/texture_3 = ExtResource(5)
shader_param/texture_4 = ExtResource(4)
[sub_resource id=59 type="ArrayMesh"]
@@ -1289,9 +1289,9 @@ shader = SubResource(1)
resource_name = ""
shader = SubResource(3)
shader_param/texture_0 = ExtResource(1)
shader_param/texture_1 = ExtResource(5)
shader_param/texture_2 = ExtResource(2)
shader_param/texture_3 = ExtResource(3)
shader_param/texture_1 = ExtResource(2)
shader_param/texture_2 = ExtResource(3)
shader_param/texture_3 = ExtResource(5)
shader_param/texture_4 = ExtResource(4)
[sub_resource id=62 type="ArrayMesh"]
@@ -1340,9 +1340,9 @@ shader = SubResource(1)
resource_name = ""
shader = SubResource(3)
shader_param/texture_0 = ExtResource(1)
shader_param/texture_1 = ExtResource(5)
shader_param/texture_2 = ExtResource(2)
shader_param/texture_3 = ExtResource(3)
shader_param/texture_1 = ExtResource(2)
shader_param/texture_2 = ExtResource(3)
shader_param/texture_3 = ExtResource(5)
shader_param/texture_4 = ExtResource(4)
[sub_resource id=65 type="ArrayMesh"]
@@ -1391,9 +1391,9 @@ shader = SubResource(1)
resource_name = ""
shader = SubResource(3)
shader_param/texture_0 = ExtResource(1)
shader_param/texture_1 = ExtResource(5)
shader_param/texture_2 = ExtResource(2)
shader_param/texture_3 = ExtResource(3)
shader_param/texture_1 = ExtResource(2)
shader_param/texture_2 = ExtResource(3)
shader_param/texture_3 = ExtResource(5)
shader_param/texture_4 = ExtResource(4)
[sub_resource id=68 type="ArrayMesh"]
@@ -1442,9 +1442,9 @@ shader = SubResource(1)
resource_name = ""
shader = SubResource(3)
shader_param/texture_0 = ExtResource(1)
shader_param/texture_1 = ExtResource(5)
shader_param/texture_2 = ExtResource(2)
shader_param/texture_3 = ExtResource(3)
shader_param/texture_1 = ExtResource(2)
shader_param/texture_2 = ExtResource(3)
shader_param/texture_3 = ExtResource(5)
shader_param/texture_4 = ExtResource(4)
[sub_resource id=71 type="ArrayMesh"]
@@ -1493,9 +1493,9 @@ shader = SubResource(1)
resource_name = ""
shader = SubResource(3)
shader_param/texture_0 = ExtResource(1)
shader_param/texture_1 = ExtResource(5)
shader_param/texture_2 = ExtResource(2)
shader_param/texture_3 = ExtResource(3)
shader_param/texture_1 = ExtResource(2)
shader_param/texture_2 = ExtResource(3)
shader_param/texture_3 = ExtResource(5)
shader_param/texture_4 = ExtResource(4)
[sub_resource id=74 type="ArrayMesh"]
@@ -1544,9 +1544,9 @@ shader = SubResource(1)
resource_name = ""
shader = SubResource(3)
shader_param/texture_0 = ExtResource(1)
shader_param/texture_1 = ExtResource(5)
shader_param/texture_2 = ExtResource(2)
shader_param/texture_3 = ExtResource(3)
shader_param/texture_1 = ExtResource(2)
shader_param/texture_2 = ExtResource(3)
shader_param/texture_3 = ExtResource(5)
shader_param/texture_4 = ExtResource(4)
[sub_resource id=77 type="ArrayMesh"]
@@ -1595,9 +1595,9 @@ shader = SubResource(1)
resource_name = ""
shader = SubResource(3)
shader_param/texture_0 = ExtResource(1)
shader_param/texture_1 = ExtResource(5)
shader_param/texture_2 = ExtResource(2)
shader_param/texture_3 = ExtResource(3)
shader_param/texture_1 = ExtResource(2)
shader_param/texture_2 = ExtResource(3)
shader_param/texture_3 = ExtResource(5)
shader_param/texture_4 = ExtResource(4)
[sub_resource id=80 type="ArrayMesh"]
@@ -1646,9 +1646,9 @@ shader = SubResource(1)
resource_name = ""
shader = SubResource(3)
shader_param/texture_0 = ExtResource(1)
shader_param/texture_1 = ExtResource(5)
shader_param/texture_2 = ExtResource(2)
shader_param/texture_3 = ExtResource(3)
shader_param/texture_1 = ExtResource(2)
shader_param/texture_2 = ExtResource(3)
shader_param/texture_3 = ExtResource(5)
shader_param/texture_4 = ExtResource(4)
[sub_resource id=83 type="ArrayMesh"]
@@ -1697,9 +1697,9 @@ shader = SubResource(1)
resource_name = ""
shader = SubResource(3)
shader_param/texture_0 = ExtResource(1)
shader_param/texture_1 = ExtResource(5)
shader_param/texture_2 = ExtResource(2)
shader_param/texture_3 = ExtResource(3)
shader_param/texture_1 = ExtResource(2)
shader_param/texture_2 = ExtResource(3)
shader_param/texture_3 = ExtResource(5)
shader_param/texture_4 = ExtResource(4)
[sub_resource id=86 type="ArrayMesh"]
@@ -1748,9 +1748,9 @@ shader = SubResource(1)
resource_name = ""
shader = SubResource(3)
shader_param/texture_0 = ExtResource(1)
shader_param/texture_1 = ExtResource(5)
shader_param/texture_2 = ExtResource(2)
shader_param/texture_3 = ExtResource(3)
shader_param/texture_1 = ExtResource(2)
shader_param/texture_2 = ExtResource(3)
shader_param/texture_3 = ExtResource(5)
shader_param/texture_4 = ExtResource(4)
[sub_resource id=89 type="ArrayMesh"]
@@ -1799,9 +1799,9 @@ shader = SubResource(1)
resource_name = ""
shader = SubResource(3)
shader_param/texture_0 = ExtResource(1)
shader_param/texture_1 = ExtResource(5)
shader_param/texture_2 = ExtResource(2)
shader_param/texture_3 = ExtResource(3)
shader_param/texture_1 = ExtResource(2)
shader_param/texture_2 = ExtResource(3)
shader_param/texture_3 = ExtResource(5)
shader_param/texture_4 = ExtResource(4)
[sub_resource id=92 type="ArrayMesh"]
@@ -1850,9 +1850,9 @@ shader = SubResource(1)
resource_name = ""
shader = SubResource(3)
shader_param/texture_0 = ExtResource(1)
shader_param/texture_1 = ExtResource(5)
shader_param/texture_2 = ExtResource(2)
shader_param/texture_3 = ExtResource(3)
shader_param/texture_1 = ExtResource(2)
shader_param/texture_2 = ExtResource(3)
shader_param/texture_3 = ExtResource(5)
shader_param/texture_4 = ExtResource(4)
[sub_resource id=95 type="ArrayMesh"]
@@ -1901,9 +1901,9 @@ shader = SubResource(1)
resource_name = ""
shader = SubResource(3)
shader_param/texture_0 = ExtResource(1)
shader_param/texture_1 = ExtResource(5)
shader_param/texture_2 = ExtResource(2)
shader_param/texture_3 = ExtResource(3)
shader_param/texture_1 = ExtResource(2)
shader_param/texture_2 = ExtResource(3)
shader_param/texture_3 = ExtResource(5)
shader_param/texture_4 = ExtResource(4)
[sub_resource id=98 type="ArrayMesh"]
@@ -1952,9 +1952,9 @@ shader = SubResource(1)
resource_name = ""
shader = SubResource(3)
shader_param/texture_0 = ExtResource(1)
shader_param/texture_1 = ExtResource(5)
shader_param/texture_2 = ExtResource(2)
shader_param/texture_3 = ExtResource(3)
shader_param/texture_1 = ExtResource(2)
shader_param/texture_2 = ExtResource(3)
shader_param/texture_3 = ExtResource(5)
shader_param/texture_4 = ExtResource(4)
[sub_resource id=101 type="ArrayMesh"]
@@ -2003,9 +2003,9 @@ shader = SubResource(1)
resource_name = ""
shader = SubResource(3)
shader_param/texture_0 = ExtResource(1)
shader_param/texture_1 = ExtResource(5)
shader_param/texture_2 = ExtResource(2)
shader_param/texture_3 = ExtResource(3)
shader_param/texture_1 = ExtResource(2)
shader_param/texture_2 = ExtResource(3)
shader_param/texture_3 = ExtResource(5)
shader_param/texture_4 = ExtResource(4)
[sub_resource id=104 type="ArrayMesh"]

View File

@@ -4,9 +4,9 @@
[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_spec_1k.jpg" type="Texture"]
[ext_resource id=4 path="concrete_floor_02_spec_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"]
@@ -209,8 +209,8 @@ void fragment () {
resource_name = ""
shader = SubResource(1)
shader_param/texture_0 = ExtResource(1)
shader_param/texture_1 = ExtResource(4)
shader_param/texture_2 = ExtResource(3)
shader_param/texture_1 = ExtResource(3)
shader_param/texture_2 = ExtResource(4)
shader_param/texture_3 = ExtResource(5)
shader_param/texture_4 = ExtResource(2)
@@ -366,8 +366,8 @@ surfaces/1 = {
resource_name = ""
shader = SubResource(1)
shader_param/texture_0 = ExtResource(1)
shader_param/texture_1 = ExtResource(4)
shader_param/texture_2 = ExtResource(3)
shader_param/texture_1 = ExtResource(3)
shader_param/texture_2 = ExtResource(4)
shader_param/texture_3 = ExtResource(5)
shader_param/texture_4 = ExtResource(2)
@@ -417,8 +417,8 @@ surfaces/1 = {
resource_name = ""
shader = SubResource(1)
shader_param/texture_0 = ExtResource(1)
shader_param/texture_1 = ExtResource(4)
shader_param/texture_2 = ExtResource(3)
shader_param/texture_1 = ExtResource(3)
shader_param/texture_2 = ExtResource(4)
shader_param/texture_3 = ExtResource(5)
shader_param/texture_4 = ExtResource(2)
@@ -468,8 +468,8 @@ surfaces/1 = {
resource_name = ""
shader = SubResource(1)
shader_param/texture_0 = ExtResource(1)
shader_param/texture_1 = ExtResource(4)
shader_param/texture_2 = ExtResource(3)
shader_param/texture_1 = ExtResource(3)
shader_param/texture_2 = ExtResource(4)
shader_param/texture_3 = ExtResource(5)
shader_param/texture_4 = ExtResource(2)
@@ -519,8 +519,8 @@ surfaces/1 = {
resource_name = ""
shader = SubResource(1)
shader_param/texture_0 = ExtResource(1)
shader_param/texture_1 = ExtResource(4)
shader_param/texture_2 = ExtResource(3)
shader_param/texture_1 = ExtResource(3)
shader_param/texture_2 = ExtResource(4)
shader_param/texture_3 = ExtResource(5)
shader_param/texture_4 = ExtResource(2)
@@ -570,8 +570,8 @@ surfaces/1 = {
resource_name = ""
shader = SubResource(1)
shader_param/texture_0 = ExtResource(1)
shader_param/texture_1 = ExtResource(4)
shader_param/texture_2 = ExtResource(3)
shader_param/texture_1 = ExtResource(3)
shader_param/texture_2 = ExtResource(4)
shader_param/texture_3 = ExtResource(5)
shader_param/texture_4 = ExtResource(2)
@@ -621,8 +621,8 @@ surfaces/1 = {
resource_name = ""
shader = SubResource(1)
shader_param/texture_0 = ExtResource(1)
shader_param/texture_1 = ExtResource(4)
shader_param/texture_2 = ExtResource(3)
shader_param/texture_1 = ExtResource(3)
shader_param/texture_2 = ExtResource(4)
shader_param/texture_3 = ExtResource(5)
shader_param/texture_4 = ExtResource(2)