diff --git a/blends/ClockFace.png b/blends/ClockFace.png new file mode 100644 index 0000000..ca643b7 --- /dev/null +++ b/blends/ClockFace.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f4f3983f582b09019f5b0899a6e19429357be80a56d754858459a48329fc842c +size 3312 diff --git a/blends/environment.blend b/blends/environment.blend index 973508a..d60fc8c 100644 --- a/blends/environment.blend +++ b/blends/environment.blend @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:4348205b68099f38bc37ee4d52dde213f36577fce327b79a5428db2a9e7b97b0 -size 1131968 +oid sha256:130c4ea0e790ea4136b96607757dd5ccab2c4a42968563f326c1147032c5c19a +size 1202696 diff --git a/blends/environment.blend1 b/blends/environment.blend1 index 13f985f..74ae4f8 100644 Binary files a/blends/environment.blend1 and b/blends/environment.blend1 differ diff --git a/godot/.import/bookcase_collisions.glb-c9e205a2dfd04441e63bfb0f908d2c03.md5 b/godot/.import/bookcase_collisions.glb-c9e205a2dfd04441e63bfb0f908d2c03.md5 new file mode 100644 index 0000000..f3beeab --- /dev/null +++ b/godot/.import/bookcase_collisions.glb-c9e205a2dfd04441e63bfb0f908d2c03.md5 @@ -0,0 +1,3 @@ +source_md5="1a2157e17e42b67ca431928a838f25a0" +dest_md5="0acb7d4ab9df4ee97de4f86cf92dd6bb" + diff --git a/godot/.import/bookcase_collisions.glb-c9e205a2dfd04441e63bfb0f908d2c03.scn b/godot/.import/bookcase_collisions.glb-c9e205a2dfd04441e63bfb0f908d2c03.scn new file mode 100644 index 0000000..398d812 Binary files /dev/null and b/godot/.import/bookcase_collisions.glb-c9e205a2dfd04441e63bfb0f908d2c03.scn differ diff --git a/godot/.import/click.ogg-cb6f8e57848df8181589839958189a7f.md5 b/godot/.import/click.ogg-cb6f8e57848df8181589839958189a7f.md5 new file mode 100644 index 0000000..21def64 --- /dev/null +++ b/godot/.import/click.ogg-cb6f8e57848df8181589839958189a7f.md5 @@ -0,0 +1,3 @@ +source_md5="ba9e2a6bbe74c141e57bd390bc76be4a" +dest_md5="36d0ef68b96423efc09191a3cce23970" + diff --git a/godot/.import/click.ogg-cb6f8e57848df8181589839958189a7f.oggstr b/godot/.import/click.ogg-cb6f8e57848df8181589839958189a7f.oggstr new file mode 100644 index 0000000..e9c8a5b Binary files /dev/null and b/godot/.import/click.ogg-cb6f8e57848df8181589839958189a7f.oggstr differ diff --git a/godot/.import/clock.glb-602dce00dbbeb99db8323f883c6bedf8.md5 b/godot/.import/clock.glb-602dce00dbbeb99db8323f883c6bedf8.md5 new file mode 100644 index 0000000..8aeede6 --- /dev/null +++ b/godot/.import/clock.glb-602dce00dbbeb99db8323f883c6bedf8.md5 @@ -0,0 +1,3 @@ +source_md5="6a35a976dd0d5125361dc88f07ca5e51" +dest_md5="c754a1af232a755c32293ae1e6075eae" + diff --git a/godot/.import/clock.glb-602dce00dbbeb99db8323f883c6bedf8.scn b/godot/.import/clock.glb-602dce00dbbeb99db8323f883c6bedf8.scn new file mode 100644 index 0000000..6d601f5 Binary files /dev/null and b/godot/.import/clock.glb-602dce00dbbeb99db8323f883c6bedf8.scn differ diff --git a/godot/3DCursor.gd b/godot/3DCursor.gd index ee17e3b..e1fffc0 100644 --- a/godot/3DCursor.gd +++ b/godot/3DCursor.gd @@ -75,6 +75,14 @@ func sound_color(): if $Color.playing: return $Color.play() + +func sound_click(): + $Move.play() + +func sound_bump(): + if $Bump.playing: + return + $Bump.play() func _input(_event): if Input.is_action_just_pressed("cursor_interact"): @@ -89,10 +97,6 @@ func _input(_event): func _process(_delta): set_color() -func bump(): - if $Bump.playing: - return - $Bump.play() var locked = false func _physics_process(delta): @@ -104,7 +108,9 @@ func _physics_process(delta): var velocity = Vector3(speed, speed, speed) * dir var result = move_and_slide(velocity, Vector3.UP) if velocity != result: - bump() + sound_bump() + elif speed != 0.0: + sound_click() diff --git a/godot/3DCursor.tscn b/godot/3DCursor.tscn index fc8af47..35d66fc 100644 --- a/godot/3DCursor.tscn +++ b/godot/3DCursor.tscn @@ -1,10 +1,11 @@ -[gd_scene load_steps=9 format=2] +[gd_scene load_steps=10 format=2] [ext_resource path="res://3DCursor.gd" type="Script" id=1] [ext_resource path="res://3DCursorLight.tscn" type="PackedScene" id=2] [ext_resource path="res://assets/audio/bassy_bump.ogg" type="AudioStream" id=3] [ext_resource path="res://assets/audio/beep.ogg" type="AudioStream" id=4] [ext_resource path="res://assets/audio/color.ogg" type="AudioStream" id=5] +[ext_resource path="res://assets/audio/click.ogg" type="AudioStream" id=6] [sub_resource type="SpatialMaterial" id=5] params_diffuse_mode = 4 @@ -54,3 +55,7 @@ stream = ExtResource( 4 ) [node name="Color" type="AudioStreamPlayer" parent="."] stream = ExtResource( 5 ) volume_db = 10.0 + +[node name="Move" type="AudioStreamPlayer" parent="."] +stream = ExtResource( 6 ) +volume_db = 10.0 diff --git a/godot/StartLineReader.gd b/godot/StartLineReader.gd new file mode 100644 index 0000000..73f7f45 --- /dev/null +++ b/godot/StartLineReader.gd @@ -0,0 +1,4 @@ +extends Node + +func _ready(): + LineReader.start() diff --git a/godot/assets/audio/click.ogg b/godot/assets/audio/click.ogg new file mode 100644 index 0000000..5b7b5e9 --- /dev/null +++ b/godot/assets/audio/click.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0d1f25a47596fc1d007dc1ff1e45b28254a6901acbf383332becdb90118fb476 +size 7239 diff --git a/godot/assets/audio/click.ogg.import b/godot/assets/audio/click.ogg.import new file mode 100644 index 0000000..09efa2c --- /dev/null +++ b/godot/assets/audio/click.ogg.import @@ -0,0 +1,15 @@ +[remap] + +importer="ogg_vorbis" +type="AudioStreamOGGVorbis" +path="res://.import/click.ogg-cb6f8e57848df8181589839958189a7f.oggstr" + +[deps] + +source_file="res://assets/audio/click.ogg" +dest_files=[ "res://.import/click.ogg-cb6f8e57848df8181589839958189a7f.oggstr" ] + +[params] + +loop=false +loop_offset=0 diff --git a/godot/assets/audio/voice_lines/LineReader.gd b/godot/assets/audio/voice_lines/LineReader.gd index 3f423b9..83a17f9 100644 --- a/godot/assets/audio/voice_lines/LineReader.gd +++ b/godot/assets/audio/voice_lines/LineReader.gd @@ -16,24 +16,42 @@ var voice_script = [ ["behind_the_bookshelf"], ] -export var impatience: float = 5.0 +export var impatience: float = 10.0 +func _ready(): + yield(get_tree().create_timer(5.0), "timeout") + script_loop() func read_line(line): - pass + $Sounds/show_me.play() + yield($Sounds/show_me, "finished") + for phrase in line: + var sound = get_node("Sounds/" + phrase) + sound.play() + yield(sound, "finished") -var loop = null -func start(): - if loop != null: - return - loop = script_loop() +signal advance(did_time_out) func script_loop(): for line in voice_script: - read_line(line) - while not yield(): - read_line(line) + completed = false + $ImpatienceTimer.stop() + yield(read_line(line), "completed") + $ImpatienceTimer.start(impatience) + while not completed and yield(self, "advance"): + yield(read_line(line), "completed") + $ImpatienceTimer.start(impatience) + + var _err = get_tree().change_scene("res://screens/finished.tscn") +var completed = false +func advance(): + completed = true + emit_signal("advance", false) +func _input(_event): + if Input.is_action_just_pressed("cheat"): + advance() + func _on_ImpatienceTimer_timeout(): - script_loop().resume(false) + emit_signal("advance", true) diff --git a/godot/assets/audio/voice_lines/LineReader.tscn b/godot/assets/audio/voice_lines/LineReader.tscn index 5d87aac..03bcfc1 100644 --- a/godot/assets/audio/voice_lines/LineReader.tscn +++ b/godot/assets/audio/voice_lines/LineReader.tscn @@ -17,42 +17,45 @@ [node name="LineReader" type="Node"] script = ExtResource( 1 ) -[node name="book" type="AudioStreamPlayer" parent="."] +[node name="ImpatienceTimer" type="Timer" parent="."] +one_shot = true + +[node name="Sounds" type="Node" parent="."] + +[node name="book" type="AudioStreamPlayer" parent="Sounds"] stream = ExtResource( 3 ) -[node name="frog" type="AudioStreamPlayer" parent="."] +[node name="frog" type="AudioStreamPlayer" parent="Sounds"] stream = ExtResource( 4 ) -[node name="show_me" type="AudioStreamPlayer" parent="."] +[node name="show_me" type="AudioStreamPlayer" parent="Sounds"] stream = ExtResource( 5 ) -[node name="squirrel" type="AudioStreamPlayer" parent="."] +[node name="squirrel" type="AudioStreamPlayer" parent="Sounds"] stream = ExtResource( 6 ) -[node name="the_attic" type="AudioStreamPlayer" parent="."] +[node name="the_attic" type="AudioStreamPlayer" parent="Sounds"] stream = ExtResource( 7 ) -[node name="the_clock" type="AudioStreamPlayer" parent="."] +[node name="the_clock" type="AudioStreamPlayer" parent="Sounds"] stream = ExtResource( 8 ) -[node name="the_door" type="AudioStreamPlayer" parent="."] +[node name="the_door" type="AudioStreamPlayer" parent="Sounds"] stream = ExtResource( 9 ) -[node name="the_fridge" type="AudioStreamPlayer" parent="."] +[node name="the_fridge" type="AudioStreamPlayer" parent="Sounds"] stream = ExtResource( 10 ) -[node name="the_long" type="AudioStreamPlayer" parent="."] +[node name="the_long" type="AudioStreamPlayer" parent="Sounds"] stream = ExtResource( 11 ) -[node name="the_tall" type="AudioStreamPlayer" parent="."] +[node name="the_tall" type="AudioStreamPlayer" parent="Sounds"] stream = ExtResource( 12 ) -[node name="under_the_bed" type="AudioStreamPlayer" parent="."] +[node name="under_the_bed" type="AudioStreamPlayer" parent="Sounds"] stream = ExtResource( 13 ) -[node name="behind_the_bookshelf" type="AudioStreamPlayer" parent="."] +[node name="behind_the_bookshelf" type="AudioStreamPlayer" parent="Sounds"] stream = ExtResource( 2 ) -[node name="ImpatienceTimer" type="Timer" parent="."] - [connection signal="timeout" from="ImpatienceTimer" to="." method="_on_ImpatienceTimer_timeout"] diff --git a/godot/assets/room/ClockFace.material b/godot/assets/room/ClockFace.material new file mode 100644 index 0000000..e10fef4 --- /dev/null +++ b/godot/assets/room/ClockFace.material @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0ec3cefe99cd7f55736f137b7c1c30ce2864910abd7286866a468978013101dc +size 264119 diff --git a/godot/assets/room/Door.material b/godot/assets/room/Door.material index 509de4e..3b7c270 100644 --- a/godot/assets/room/Door.material +++ b/godot/assets/room/Door.material @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:cd579f67243b900b39b14ec6ccc7497e22ae02c58cca32e72f1be41029975c56 -size 1653 +oid sha256:42897ecd87a91ef7bbd52ef692b30541b6a7666a747b500f8d3483a8525c9acc +size 753 diff --git a/godot/assets/room/bookcase_collisions.glb b/godot/assets/room/bookcase_collisions.glb new file mode 100644 index 0000000..aef35b1 --- /dev/null +++ b/godot/assets/room/bookcase_collisions.glb @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:891b70db6905c28c0c9788ed595dd21cace8e13a5dcafa441c30c784b21cd194 +size 5296 diff --git a/godot/assets/room/bookcase_collisions.glb.import b/godot/assets/room/bookcase_collisions.glb.import new file mode 100644 index 0000000..77cfbeb --- /dev/null +++ b/godot/assets/room/bookcase_collisions.glb.import @@ -0,0 +1,1065 @@ +[remap] + +importer="scene" +type="PackedScene" +path="res://.import/bookcase_collisions.glb-c9e205a2dfd04441e63bfb0f908d2c03.scn" + +[deps] + +source_file="res://assets/room/bookcase_collisions.glb" +dest_files=[ "res://.import/bookcase_collisions.glb-c9e205a2dfd04441e63bfb0f908d2c03.scn" ] + +[params] + +nodes/root_type="Spatial" +nodes/root_name="Scene Root" +nodes/root_scale=1.0 +nodes/custom_script="" +nodes/storage=0 +nodes/use_legacy_names=false +materials/location=1 +materials/storage=1 +materials/keep_on_reimport=true +meshes/octahedral_compression=true +meshes/compress=4286 +meshes/ensure_tangents=true +meshes/storage=0 +meshes/light_baking=0 +meshes/lightmap_texel_size=0.1 +skins/use_named_skins=true +external_files/store_in_subdir=false +animation/import=true +animation/fps=15 +animation/filter_script="" +animation/storage=false +animation/keep_custom_tracks=false +animation/optimizer/enabled=true +animation/optimizer/max_linear_error=0.05 +animation/optimizer/max_angular_error=0.01 +animation/optimizer/max_angle=22 +animation/optimizer/remove_unused_tracks=true +animation/clips/amount=0 +animation/clip_1/name="" +animation/clip_1/start_frame=0 +animation/clip_1/end_frame=0 +animation/clip_1/loops=false +animation/clip_2/name="" +animation/clip_2/start_frame=0 +animation/clip_2/end_frame=0 +animation/clip_2/loops=false +animation/clip_3/name="" +animation/clip_3/start_frame=0 +animation/clip_3/end_frame=0 +animation/clip_3/loops=false +animation/clip_4/name="" +animation/clip_4/start_frame=0 +animation/clip_4/end_frame=0 +animation/clip_4/loops=false +animation/clip_5/name="" +animation/clip_5/start_frame=0 +animation/clip_5/end_frame=0 +animation/clip_5/loops=false +animation/clip_6/name="" +animation/clip_6/start_frame=0 +animation/clip_6/end_frame=0 +animation/clip_6/loops=false +animation/clip_7/name="" +animation/clip_7/start_frame=0 +animation/clip_7/end_frame=0 +animation/clip_7/loops=false +animation/clip_8/name="" +animation/clip_8/start_frame=0 +animation/clip_8/end_frame=0 +animation/clip_8/loops=false +animation/clip_9/name="" +animation/clip_9/start_frame=0 +animation/clip_9/end_frame=0 +animation/clip_9/loops=false +animation/clip_10/name="" +animation/clip_10/start_frame=0 +animation/clip_10/end_frame=0 +animation/clip_10/loops=false +animation/clip_11/name="" +animation/clip_11/start_frame=0 +animation/clip_11/end_frame=0 +animation/clip_11/loops=false +animation/clip_12/name="" +animation/clip_12/start_frame=0 +animation/clip_12/end_frame=0 +animation/clip_12/loops=false +animation/clip_13/name="" +animation/clip_13/start_frame=0 +animation/clip_13/end_frame=0 +animation/clip_13/loops=false +animation/clip_14/name="" +animation/clip_14/start_frame=0 +animation/clip_14/end_frame=0 +animation/clip_14/loops=false +animation/clip_15/name="" +animation/clip_15/start_frame=0 +animation/clip_15/end_frame=0 +animation/clip_15/loops=false +animation/clip_16/name="" +animation/clip_16/start_frame=0 +animation/clip_16/end_frame=0 +animation/clip_16/loops=false +animation/clip_17/name="" +animation/clip_17/start_frame=0 +animation/clip_17/end_frame=0 +animation/clip_17/loops=false +animation/clip_18/name="" +animation/clip_18/start_frame=0 +animation/clip_18/end_frame=0 +animation/clip_18/loops=false +animation/clip_19/name="" +animation/clip_19/start_frame=0 +animation/clip_19/end_frame=0 +animation/clip_19/loops=false +animation/clip_20/name="" +animation/clip_20/start_frame=0 +animation/clip_20/end_frame=0 +animation/clip_20/loops=false +animation/clip_21/name="" +animation/clip_21/start_frame=0 +animation/clip_21/end_frame=0 +animation/clip_21/loops=false +animation/clip_22/name="" +animation/clip_22/start_frame=0 +animation/clip_22/end_frame=0 +animation/clip_22/loops=false +animation/clip_23/name="" +animation/clip_23/start_frame=0 +animation/clip_23/end_frame=0 +animation/clip_23/loops=false +animation/clip_24/name="" +animation/clip_24/start_frame=0 +animation/clip_24/end_frame=0 +animation/clip_24/loops=false +animation/clip_25/name="" +animation/clip_25/start_frame=0 +animation/clip_25/end_frame=0 +animation/clip_25/loops=false +animation/clip_26/name="" +animation/clip_26/start_frame=0 +animation/clip_26/end_frame=0 +animation/clip_26/loops=false +animation/clip_27/name="" +animation/clip_27/start_frame=0 +animation/clip_27/end_frame=0 +animation/clip_27/loops=false +animation/clip_28/name="" +animation/clip_28/start_frame=0 +animation/clip_28/end_frame=0 +animation/clip_28/loops=false +animation/clip_29/name="" +animation/clip_29/start_frame=0 +animation/clip_29/end_frame=0 +animation/clip_29/loops=false +animation/clip_30/name="" +animation/clip_30/start_frame=0 +animation/clip_30/end_frame=0 +animation/clip_30/loops=false +animation/clip_31/name="" +animation/clip_31/start_frame=0 +animation/clip_31/end_frame=0 +animation/clip_31/loops=false +animation/clip_32/name="" +animation/clip_32/start_frame=0 +animation/clip_32/end_frame=0 +animation/clip_32/loops=false +animation/clip_33/name="" +animation/clip_33/start_frame=0 +animation/clip_33/end_frame=0 +animation/clip_33/loops=false +animation/clip_34/name="" +animation/clip_34/start_frame=0 +animation/clip_34/end_frame=0 +animation/clip_34/loops=false +animation/clip_35/name="" +animation/clip_35/start_frame=0 +animation/clip_35/end_frame=0 +animation/clip_35/loops=false +animation/clip_36/name="" +animation/clip_36/start_frame=0 +animation/clip_36/end_frame=0 +animation/clip_36/loops=false +animation/clip_37/name="" +animation/clip_37/start_frame=0 +animation/clip_37/end_frame=0 +animation/clip_37/loops=false +animation/clip_38/name="" +animation/clip_38/start_frame=0 +animation/clip_38/end_frame=0 +animation/clip_38/loops=false +animation/clip_39/name="" +animation/clip_39/start_frame=0 +animation/clip_39/end_frame=0 +animation/clip_39/loops=false +animation/clip_40/name="" +animation/clip_40/start_frame=0 +animation/clip_40/end_frame=0 +animation/clip_40/loops=false +animation/clip_41/name="" +animation/clip_41/start_frame=0 +animation/clip_41/end_frame=0 +animation/clip_41/loops=false +animation/clip_42/name="" +animation/clip_42/start_frame=0 +animation/clip_42/end_frame=0 +animation/clip_42/loops=false +animation/clip_43/name="" +animation/clip_43/start_frame=0 +animation/clip_43/end_frame=0 +animation/clip_43/loops=false +animation/clip_44/name="" +animation/clip_44/start_frame=0 +animation/clip_44/end_frame=0 +animation/clip_44/loops=false +animation/clip_45/name="" +animation/clip_45/start_frame=0 +animation/clip_45/end_frame=0 +animation/clip_45/loops=false +animation/clip_46/name="" +animation/clip_46/start_frame=0 +animation/clip_46/end_frame=0 +animation/clip_46/loops=false +animation/clip_47/name="" +animation/clip_47/start_frame=0 +animation/clip_47/end_frame=0 +animation/clip_47/loops=false +animation/clip_48/name="" +animation/clip_48/start_frame=0 +animation/clip_48/end_frame=0 +animation/clip_48/loops=false +animation/clip_49/name="" +animation/clip_49/start_frame=0 +animation/clip_49/end_frame=0 +animation/clip_49/loops=false +animation/clip_50/name="" +animation/clip_50/start_frame=0 +animation/clip_50/end_frame=0 +animation/clip_50/loops=false +animation/clip_51/name="" +animation/clip_51/start_frame=0 +animation/clip_51/end_frame=0 +animation/clip_51/loops=false +animation/clip_52/name="" +animation/clip_52/start_frame=0 +animation/clip_52/end_frame=0 +animation/clip_52/loops=false +animation/clip_53/name="" +animation/clip_53/start_frame=0 +animation/clip_53/end_frame=0 +animation/clip_53/loops=false +animation/clip_54/name="" +animation/clip_54/start_frame=0 +animation/clip_54/end_frame=0 +animation/clip_54/loops=false +animation/clip_55/name="" +animation/clip_55/start_frame=0 +animation/clip_55/end_frame=0 +animation/clip_55/loops=false +animation/clip_56/name="" +animation/clip_56/start_frame=0 +animation/clip_56/end_frame=0 +animation/clip_56/loops=false +animation/clip_57/name="" +animation/clip_57/start_frame=0 +animation/clip_57/end_frame=0 +animation/clip_57/loops=false +animation/clip_58/name="" +animation/clip_58/start_frame=0 +animation/clip_58/end_frame=0 +animation/clip_58/loops=false +animation/clip_59/name="" +animation/clip_59/start_frame=0 +animation/clip_59/end_frame=0 +animation/clip_59/loops=false +animation/clip_60/name="" +animation/clip_60/start_frame=0 +animation/clip_60/end_frame=0 +animation/clip_60/loops=false +animation/clip_61/name="" +animation/clip_61/start_frame=0 +animation/clip_61/end_frame=0 +animation/clip_61/loops=false +animation/clip_62/name="" +animation/clip_62/start_frame=0 +animation/clip_62/end_frame=0 +animation/clip_62/loops=false +animation/clip_63/name="" +animation/clip_63/start_frame=0 +animation/clip_63/end_frame=0 +animation/clip_63/loops=false +animation/clip_64/name="" +animation/clip_64/start_frame=0 +animation/clip_64/end_frame=0 +animation/clip_64/loops=false +animation/clip_65/name="" +animation/clip_65/start_frame=0 +animation/clip_65/end_frame=0 +animation/clip_65/loops=false +animation/clip_66/name="" +animation/clip_66/start_frame=0 +animation/clip_66/end_frame=0 +animation/clip_66/loops=false +animation/clip_67/name="" +animation/clip_67/start_frame=0 +animation/clip_67/end_frame=0 +animation/clip_67/loops=false +animation/clip_68/name="" +animation/clip_68/start_frame=0 +animation/clip_68/end_frame=0 +animation/clip_68/loops=false +animation/clip_69/name="" +animation/clip_69/start_frame=0 +animation/clip_69/end_frame=0 +animation/clip_69/loops=false +animation/clip_70/name="" +animation/clip_70/start_frame=0 +animation/clip_70/end_frame=0 +animation/clip_70/loops=false +animation/clip_71/name="" +animation/clip_71/start_frame=0 +animation/clip_71/end_frame=0 +animation/clip_71/loops=false +animation/clip_72/name="" +animation/clip_72/start_frame=0 +animation/clip_72/end_frame=0 +animation/clip_72/loops=false +animation/clip_73/name="" +animation/clip_73/start_frame=0 +animation/clip_73/end_frame=0 +animation/clip_73/loops=false +animation/clip_74/name="" +animation/clip_74/start_frame=0 +animation/clip_74/end_frame=0 +animation/clip_74/loops=false +animation/clip_75/name="" +animation/clip_75/start_frame=0 +animation/clip_75/end_frame=0 +animation/clip_75/loops=false +animation/clip_76/name="" +animation/clip_76/start_frame=0 +animation/clip_76/end_frame=0 +animation/clip_76/loops=false +animation/clip_77/name="" +animation/clip_77/start_frame=0 +animation/clip_77/end_frame=0 +animation/clip_77/loops=false +animation/clip_78/name="" +animation/clip_78/start_frame=0 +animation/clip_78/end_frame=0 +animation/clip_78/loops=false +animation/clip_79/name="" +animation/clip_79/start_frame=0 +animation/clip_79/end_frame=0 +animation/clip_79/loops=false +animation/clip_80/name="" +animation/clip_80/start_frame=0 +animation/clip_80/end_frame=0 +animation/clip_80/loops=false +animation/clip_81/name="" +animation/clip_81/start_frame=0 +animation/clip_81/end_frame=0 +animation/clip_81/loops=false +animation/clip_82/name="" +animation/clip_82/start_frame=0 +animation/clip_82/end_frame=0 +animation/clip_82/loops=false +animation/clip_83/name="" +animation/clip_83/start_frame=0 +animation/clip_83/end_frame=0 +animation/clip_83/loops=false +animation/clip_84/name="" +animation/clip_84/start_frame=0 +animation/clip_84/end_frame=0 +animation/clip_84/loops=false +animation/clip_85/name="" +animation/clip_85/start_frame=0 +animation/clip_85/end_frame=0 +animation/clip_85/loops=false +animation/clip_86/name="" +animation/clip_86/start_frame=0 +animation/clip_86/end_frame=0 +animation/clip_86/loops=false +animation/clip_87/name="" +animation/clip_87/start_frame=0 +animation/clip_87/end_frame=0 +animation/clip_87/loops=false +animation/clip_88/name="" +animation/clip_88/start_frame=0 +animation/clip_88/end_frame=0 +animation/clip_88/loops=false +animation/clip_89/name="" +animation/clip_89/start_frame=0 +animation/clip_89/end_frame=0 +animation/clip_89/loops=false +animation/clip_90/name="" +animation/clip_90/start_frame=0 +animation/clip_90/end_frame=0 +animation/clip_90/loops=false +animation/clip_91/name="" +animation/clip_91/start_frame=0 +animation/clip_91/end_frame=0 +animation/clip_91/loops=false +animation/clip_92/name="" +animation/clip_92/start_frame=0 +animation/clip_92/end_frame=0 +animation/clip_92/loops=false +animation/clip_93/name="" +animation/clip_93/start_frame=0 +animation/clip_93/end_frame=0 +animation/clip_93/loops=false +animation/clip_94/name="" +animation/clip_94/start_frame=0 +animation/clip_94/end_frame=0 +animation/clip_94/loops=false +animation/clip_95/name="" +animation/clip_95/start_frame=0 +animation/clip_95/end_frame=0 +animation/clip_95/loops=false +animation/clip_96/name="" +animation/clip_96/start_frame=0 +animation/clip_96/end_frame=0 +animation/clip_96/loops=false +animation/clip_97/name="" +animation/clip_97/start_frame=0 +animation/clip_97/end_frame=0 +animation/clip_97/loops=false +animation/clip_98/name="" +animation/clip_98/start_frame=0 +animation/clip_98/end_frame=0 +animation/clip_98/loops=false +animation/clip_99/name="" +animation/clip_99/start_frame=0 +animation/clip_99/end_frame=0 +animation/clip_99/loops=false +animation/clip_100/name="" +animation/clip_100/start_frame=0 +animation/clip_100/end_frame=0 +animation/clip_100/loops=false +animation/clip_101/name="" +animation/clip_101/start_frame=0 +animation/clip_101/end_frame=0 +animation/clip_101/loops=false +animation/clip_102/name="" +animation/clip_102/start_frame=0 +animation/clip_102/end_frame=0 +animation/clip_102/loops=false +animation/clip_103/name="" +animation/clip_103/start_frame=0 +animation/clip_103/end_frame=0 +animation/clip_103/loops=false +animation/clip_104/name="" +animation/clip_104/start_frame=0 +animation/clip_104/end_frame=0 +animation/clip_104/loops=false +animation/clip_105/name="" +animation/clip_105/start_frame=0 +animation/clip_105/end_frame=0 +animation/clip_105/loops=false +animation/clip_106/name="" +animation/clip_106/start_frame=0 +animation/clip_106/end_frame=0 +animation/clip_106/loops=false +animation/clip_107/name="" +animation/clip_107/start_frame=0 +animation/clip_107/end_frame=0 +animation/clip_107/loops=false +animation/clip_108/name="" +animation/clip_108/start_frame=0 +animation/clip_108/end_frame=0 +animation/clip_108/loops=false +animation/clip_109/name="" +animation/clip_109/start_frame=0 +animation/clip_109/end_frame=0 +animation/clip_109/loops=false +animation/clip_110/name="" +animation/clip_110/start_frame=0 +animation/clip_110/end_frame=0 +animation/clip_110/loops=false +animation/clip_111/name="" +animation/clip_111/start_frame=0 +animation/clip_111/end_frame=0 +animation/clip_111/loops=false +animation/clip_112/name="" +animation/clip_112/start_frame=0 +animation/clip_112/end_frame=0 +animation/clip_112/loops=false +animation/clip_113/name="" +animation/clip_113/start_frame=0 +animation/clip_113/end_frame=0 +animation/clip_113/loops=false +animation/clip_114/name="" +animation/clip_114/start_frame=0 +animation/clip_114/end_frame=0 +animation/clip_114/loops=false +animation/clip_115/name="" +animation/clip_115/start_frame=0 +animation/clip_115/end_frame=0 +animation/clip_115/loops=false +animation/clip_116/name="" +animation/clip_116/start_frame=0 +animation/clip_116/end_frame=0 +animation/clip_116/loops=false +animation/clip_117/name="" +animation/clip_117/start_frame=0 +animation/clip_117/end_frame=0 +animation/clip_117/loops=false +animation/clip_118/name="" +animation/clip_118/start_frame=0 +animation/clip_118/end_frame=0 +animation/clip_118/loops=false +animation/clip_119/name="" +animation/clip_119/start_frame=0 +animation/clip_119/end_frame=0 +animation/clip_119/loops=false +animation/clip_120/name="" +animation/clip_120/start_frame=0 +animation/clip_120/end_frame=0 +animation/clip_120/loops=false +animation/clip_121/name="" +animation/clip_121/start_frame=0 +animation/clip_121/end_frame=0 +animation/clip_121/loops=false +animation/clip_122/name="" +animation/clip_122/start_frame=0 +animation/clip_122/end_frame=0 +animation/clip_122/loops=false +animation/clip_123/name="" +animation/clip_123/start_frame=0 +animation/clip_123/end_frame=0 +animation/clip_123/loops=false +animation/clip_124/name="" +animation/clip_124/start_frame=0 +animation/clip_124/end_frame=0 +animation/clip_124/loops=false +animation/clip_125/name="" +animation/clip_125/start_frame=0 +animation/clip_125/end_frame=0 +animation/clip_125/loops=false +animation/clip_126/name="" +animation/clip_126/start_frame=0 +animation/clip_126/end_frame=0 +animation/clip_126/loops=false +animation/clip_127/name="" +animation/clip_127/start_frame=0 +animation/clip_127/end_frame=0 +animation/clip_127/loops=false +animation/clip_128/name="" +animation/clip_128/start_frame=0 +animation/clip_128/end_frame=0 +animation/clip_128/loops=false +animation/clip_129/name="" +animation/clip_129/start_frame=0 +animation/clip_129/end_frame=0 +animation/clip_129/loops=false +animation/clip_130/name="" +animation/clip_130/start_frame=0 +animation/clip_130/end_frame=0 +animation/clip_130/loops=false +animation/clip_131/name="" +animation/clip_131/start_frame=0 +animation/clip_131/end_frame=0 +animation/clip_131/loops=false +animation/clip_132/name="" +animation/clip_132/start_frame=0 +animation/clip_132/end_frame=0 +animation/clip_132/loops=false +animation/clip_133/name="" +animation/clip_133/start_frame=0 +animation/clip_133/end_frame=0 +animation/clip_133/loops=false +animation/clip_134/name="" +animation/clip_134/start_frame=0 +animation/clip_134/end_frame=0 +animation/clip_134/loops=false +animation/clip_135/name="" +animation/clip_135/start_frame=0 +animation/clip_135/end_frame=0 +animation/clip_135/loops=false +animation/clip_136/name="" +animation/clip_136/start_frame=0 +animation/clip_136/end_frame=0 +animation/clip_136/loops=false +animation/clip_137/name="" +animation/clip_137/start_frame=0 +animation/clip_137/end_frame=0 +animation/clip_137/loops=false +animation/clip_138/name="" +animation/clip_138/start_frame=0 +animation/clip_138/end_frame=0 +animation/clip_138/loops=false +animation/clip_139/name="" +animation/clip_139/start_frame=0 +animation/clip_139/end_frame=0 +animation/clip_139/loops=false +animation/clip_140/name="" +animation/clip_140/start_frame=0 +animation/clip_140/end_frame=0 +animation/clip_140/loops=false +animation/clip_141/name="" +animation/clip_141/start_frame=0 +animation/clip_141/end_frame=0 +animation/clip_141/loops=false +animation/clip_142/name="" +animation/clip_142/start_frame=0 +animation/clip_142/end_frame=0 +animation/clip_142/loops=false +animation/clip_143/name="" +animation/clip_143/start_frame=0 +animation/clip_143/end_frame=0 +animation/clip_143/loops=false +animation/clip_144/name="" +animation/clip_144/start_frame=0 +animation/clip_144/end_frame=0 +animation/clip_144/loops=false +animation/clip_145/name="" +animation/clip_145/start_frame=0 +animation/clip_145/end_frame=0 +animation/clip_145/loops=false +animation/clip_146/name="" +animation/clip_146/start_frame=0 +animation/clip_146/end_frame=0 +animation/clip_146/loops=false +animation/clip_147/name="" +animation/clip_147/start_frame=0 +animation/clip_147/end_frame=0 +animation/clip_147/loops=false +animation/clip_148/name="" +animation/clip_148/start_frame=0 +animation/clip_148/end_frame=0 +animation/clip_148/loops=false +animation/clip_149/name="" +animation/clip_149/start_frame=0 +animation/clip_149/end_frame=0 +animation/clip_149/loops=false +animation/clip_150/name="" +animation/clip_150/start_frame=0 +animation/clip_150/end_frame=0 +animation/clip_150/loops=false +animation/clip_151/name="" +animation/clip_151/start_frame=0 +animation/clip_151/end_frame=0 +animation/clip_151/loops=false +animation/clip_152/name="" +animation/clip_152/start_frame=0 +animation/clip_152/end_frame=0 +animation/clip_152/loops=false +animation/clip_153/name="" +animation/clip_153/start_frame=0 +animation/clip_153/end_frame=0 +animation/clip_153/loops=false +animation/clip_154/name="" +animation/clip_154/start_frame=0 +animation/clip_154/end_frame=0 +animation/clip_154/loops=false +animation/clip_155/name="" +animation/clip_155/start_frame=0 +animation/clip_155/end_frame=0 +animation/clip_155/loops=false +animation/clip_156/name="" +animation/clip_156/start_frame=0 +animation/clip_156/end_frame=0 +animation/clip_156/loops=false +animation/clip_157/name="" +animation/clip_157/start_frame=0 +animation/clip_157/end_frame=0 +animation/clip_157/loops=false +animation/clip_158/name="" +animation/clip_158/start_frame=0 +animation/clip_158/end_frame=0 +animation/clip_158/loops=false +animation/clip_159/name="" +animation/clip_159/start_frame=0 +animation/clip_159/end_frame=0 +animation/clip_159/loops=false +animation/clip_160/name="" +animation/clip_160/start_frame=0 +animation/clip_160/end_frame=0 +animation/clip_160/loops=false +animation/clip_161/name="" +animation/clip_161/start_frame=0 +animation/clip_161/end_frame=0 +animation/clip_161/loops=false +animation/clip_162/name="" +animation/clip_162/start_frame=0 +animation/clip_162/end_frame=0 +animation/clip_162/loops=false +animation/clip_163/name="" +animation/clip_163/start_frame=0 +animation/clip_163/end_frame=0 +animation/clip_163/loops=false +animation/clip_164/name="" +animation/clip_164/start_frame=0 +animation/clip_164/end_frame=0 +animation/clip_164/loops=false +animation/clip_165/name="" +animation/clip_165/start_frame=0 +animation/clip_165/end_frame=0 +animation/clip_165/loops=false +animation/clip_166/name="" +animation/clip_166/start_frame=0 +animation/clip_166/end_frame=0 +animation/clip_166/loops=false +animation/clip_167/name="" +animation/clip_167/start_frame=0 +animation/clip_167/end_frame=0 +animation/clip_167/loops=false +animation/clip_168/name="" +animation/clip_168/start_frame=0 +animation/clip_168/end_frame=0 +animation/clip_168/loops=false +animation/clip_169/name="" +animation/clip_169/start_frame=0 +animation/clip_169/end_frame=0 +animation/clip_169/loops=false +animation/clip_170/name="" +animation/clip_170/start_frame=0 +animation/clip_170/end_frame=0 +animation/clip_170/loops=false +animation/clip_171/name="" +animation/clip_171/start_frame=0 +animation/clip_171/end_frame=0 +animation/clip_171/loops=false +animation/clip_172/name="" +animation/clip_172/start_frame=0 +animation/clip_172/end_frame=0 +animation/clip_172/loops=false +animation/clip_173/name="" +animation/clip_173/start_frame=0 +animation/clip_173/end_frame=0 +animation/clip_173/loops=false +animation/clip_174/name="" +animation/clip_174/start_frame=0 +animation/clip_174/end_frame=0 +animation/clip_174/loops=false +animation/clip_175/name="" +animation/clip_175/start_frame=0 +animation/clip_175/end_frame=0 +animation/clip_175/loops=false +animation/clip_176/name="" +animation/clip_176/start_frame=0 +animation/clip_176/end_frame=0 +animation/clip_176/loops=false +animation/clip_177/name="" +animation/clip_177/start_frame=0 +animation/clip_177/end_frame=0 +animation/clip_177/loops=false +animation/clip_178/name="" +animation/clip_178/start_frame=0 +animation/clip_178/end_frame=0 +animation/clip_178/loops=false +animation/clip_179/name="" +animation/clip_179/start_frame=0 +animation/clip_179/end_frame=0 +animation/clip_179/loops=false +animation/clip_180/name="" +animation/clip_180/start_frame=0 +animation/clip_180/end_frame=0 +animation/clip_180/loops=false +animation/clip_181/name="" +animation/clip_181/start_frame=0 +animation/clip_181/end_frame=0 +animation/clip_181/loops=false +animation/clip_182/name="" +animation/clip_182/start_frame=0 +animation/clip_182/end_frame=0 +animation/clip_182/loops=false +animation/clip_183/name="" +animation/clip_183/start_frame=0 +animation/clip_183/end_frame=0 +animation/clip_183/loops=false +animation/clip_184/name="" +animation/clip_184/start_frame=0 +animation/clip_184/end_frame=0 +animation/clip_184/loops=false +animation/clip_185/name="" +animation/clip_185/start_frame=0 +animation/clip_185/end_frame=0 +animation/clip_185/loops=false +animation/clip_186/name="" +animation/clip_186/start_frame=0 +animation/clip_186/end_frame=0 +animation/clip_186/loops=false +animation/clip_187/name="" +animation/clip_187/start_frame=0 +animation/clip_187/end_frame=0 +animation/clip_187/loops=false +animation/clip_188/name="" +animation/clip_188/start_frame=0 +animation/clip_188/end_frame=0 +animation/clip_188/loops=false +animation/clip_189/name="" +animation/clip_189/start_frame=0 +animation/clip_189/end_frame=0 +animation/clip_189/loops=false +animation/clip_190/name="" +animation/clip_190/start_frame=0 +animation/clip_190/end_frame=0 +animation/clip_190/loops=false +animation/clip_191/name="" +animation/clip_191/start_frame=0 +animation/clip_191/end_frame=0 +animation/clip_191/loops=false +animation/clip_192/name="" +animation/clip_192/start_frame=0 +animation/clip_192/end_frame=0 +animation/clip_192/loops=false +animation/clip_193/name="" +animation/clip_193/start_frame=0 +animation/clip_193/end_frame=0 +animation/clip_193/loops=false +animation/clip_194/name="" +animation/clip_194/start_frame=0 +animation/clip_194/end_frame=0 +animation/clip_194/loops=false +animation/clip_195/name="" +animation/clip_195/start_frame=0 +animation/clip_195/end_frame=0 +animation/clip_195/loops=false +animation/clip_196/name="" +animation/clip_196/start_frame=0 +animation/clip_196/end_frame=0 +animation/clip_196/loops=false +animation/clip_197/name="" +animation/clip_197/start_frame=0 +animation/clip_197/end_frame=0 +animation/clip_197/loops=false +animation/clip_198/name="" +animation/clip_198/start_frame=0 +animation/clip_198/end_frame=0 +animation/clip_198/loops=false +animation/clip_199/name="" +animation/clip_199/start_frame=0 +animation/clip_199/end_frame=0 +animation/clip_199/loops=false +animation/clip_200/name="" +animation/clip_200/start_frame=0 +animation/clip_200/end_frame=0 +animation/clip_200/loops=false +animation/clip_201/name="" +animation/clip_201/start_frame=0 +animation/clip_201/end_frame=0 +animation/clip_201/loops=false +animation/clip_202/name="" +animation/clip_202/start_frame=0 +animation/clip_202/end_frame=0 +animation/clip_202/loops=false +animation/clip_203/name="" +animation/clip_203/start_frame=0 +animation/clip_203/end_frame=0 +animation/clip_203/loops=false +animation/clip_204/name="" +animation/clip_204/start_frame=0 +animation/clip_204/end_frame=0 +animation/clip_204/loops=false +animation/clip_205/name="" +animation/clip_205/start_frame=0 +animation/clip_205/end_frame=0 +animation/clip_205/loops=false +animation/clip_206/name="" +animation/clip_206/start_frame=0 +animation/clip_206/end_frame=0 +animation/clip_206/loops=false +animation/clip_207/name="" +animation/clip_207/start_frame=0 +animation/clip_207/end_frame=0 +animation/clip_207/loops=false +animation/clip_208/name="" +animation/clip_208/start_frame=0 +animation/clip_208/end_frame=0 +animation/clip_208/loops=false +animation/clip_209/name="" +animation/clip_209/start_frame=0 +animation/clip_209/end_frame=0 +animation/clip_209/loops=false +animation/clip_210/name="" +animation/clip_210/start_frame=0 +animation/clip_210/end_frame=0 +animation/clip_210/loops=false +animation/clip_211/name="" +animation/clip_211/start_frame=0 +animation/clip_211/end_frame=0 +animation/clip_211/loops=false +animation/clip_212/name="" +animation/clip_212/start_frame=0 +animation/clip_212/end_frame=0 +animation/clip_212/loops=false +animation/clip_213/name="" +animation/clip_213/start_frame=0 +animation/clip_213/end_frame=0 +animation/clip_213/loops=false +animation/clip_214/name="" +animation/clip_214/start_frame=0 +animation/clip_214/end_frame=0 +animation/clip_214/loops=false +animation/clip_215/name="" +animation/clip_215/start_frame=0 +animation/clip_215/end_frame=0 +animation/clip_215/loops=false +animation/clip_216/name="" +animation/clip_216/start_frame=0 +animation/clip_216/end_frame=0 +animation/clip_216/loops=false +animation/clip_217/name="" +animation/clip_217/start_frame=0 +animation/clip_217/end_frame=0 +animation/clip_217/loops=false +animation/clip_218/name="" +animation/clip_218/start_frame=0 +animation/clip_218/end_frame=0 +animation/clip_218/loops=false +animation/clip_219/name="" +animation/clip_219/start_frame=0 +animation/clip_219/end_frame=0 +animation/clip_219/loops=false +animation/clip_220/name="" +animation/clip_220/start_frame=0 +animation/clip_220/end_frame=0 +animation/clip_220/loops=false +animation/clip_221/name="" +animation/clip_221/start_frame=0 +animation/clip_221/end_frame=0 +animation/clip_221/loops=false +animation/clip_222/name="" +animation/clip_222/start_frame=0 +animation/clip_222/end_frame=0 +animation/clip_222/loops=false +animation/clip_223/name="" +animation/clip_223/start_frame=0 +animation/clip_223/end_frame=0 +animation/clip_223/loops=false +animation/clip_224/name="" +animation/clip_224/start_frame=0 +animation/clip_224/end_frame=0 +animation/clip_224/loops=false +animation/clip_225/name="" +animation/clip_225/start_frame=0 +animation/clip_225/end_frame=0 +animation/clip_225/loops=false +animation/clip_226/name="" +animation/clip_226/start_frame=0 +animation/clip_226/end_frame=0 +animation/clip_226/loops=false +animation/clip_227/name="" +animation/clip_227/start_frame=0 +animation/clip_227/end_frame=0 +animation/clip_227/loops=false +animation/clip_228/name="" +animation/clip_228/start_frame=0 +animation/clip_228/end_frame=0 +animation/clip_228/loops=false +animation/clip_229/name="" +animation/clip_229/start_frame=0 +animation/clip_229/end_frame=0 +animation/clip_229/loops=false +animation/clip_230/name="" +animation/clip_230/start_frame=0 +animation/clip_230/end_frame=0 +animation/clip_230/loops=false +animation/clip_231/name="" +animation/clip_231/start_frame=0 +animation/clip_231/end_frame=0 +animation/clip_231/loops=false +animation/clip_232/name="" +animation/clip_232/start_frame=0 +animation/clip_232/end_frame=0 +animation/clip_232/loops=false +animation/clip_233/name="" +animation/clip_233/start_frame=0 +animation/clip_233/end_frame=0 +animation/clip_233/loops=false +animation/clip_234/name="" +animation/clip_234/start_frame=0 +animation/clip_234/end_frame=0 +animation/clip_234/loops=false +animation/clip_235/name="" +animation/clip_235/start_frame=0 +animation/clip_235/end_frame=0 +animation/clip_235/loops=false +animation/clip_236/name="" +animation/clip_236/start_frame=0 +animation/clip_236/end_frame=0 +animation/clip_236/loops=false +animation/clip_237/name="" +animation/clip_237/start_frame=0 +animation/clip_237/end_frame=0 +animation/clip_237/loops=false +animation/clip_238/name="" +animation/clip_238/start_frame=0 +animation/clip_238/end_frame=0 +animation/clip_238/loops=false +animation/clip_239/name="" +animation/clip_239/start_frame=0 +animation/clip_239/end_frame=0 +animation/clip_239/loops=false +animation/clip_240/name="" +animation/clip_240/start_frame=0 +animation/clip_240/end_frame=0 +animation/clip_240/loops=false +animation/clip_241/name="" +animation/clip_241/start_frame=0 +animation/clip_241/end_frame=0 +animation/clip_241/loops=false +animation/clip_242/name="" +animation/clip_242/start_frame=0 +animation/clip_242/end_frame=0 +animation/clip_242/loops=false +animation/clip_243/name="" +animation/clip_243/start_frame=0 +animation/clip_243/end_frame=0 +animation/clip_243/loops=false +animation/clip_244/name="" +animation/clip_244/start_frame=0 +animation/clip_244/end_frame=0 +animation/clip_244/loops=false +animation/clip_245/name="" +animation/clip_245/start_frame=0 +animation/clip_245/end_frame=0 +animation/clip_245/loops=false +animation/clip_246/name="" +animation/clip_246/start_frame=0 +animation/clip_246/end_frame=0 +animation/clip_246/loops=false +animation/clip_247/name="" +animation/clip_247/start_frame=0 +animation/clip_247/end_frame=0 +animation/clip_247/loops=false +animation/clip_248/name="" +animation/clip_248/start_frame=0 +animation/clip_248/end_frame=0 +animation/clip_248/loops=false +animation/clip_249/name="" +animation/clip_249/start_frame=0 +animation/clip_249/end_frame=0 +animation/clip_249/loops=false +animation/clip_250/name="" +animation/clip_250/start_frame=0 +animation/clip_250/end_frame=0 +animation/clip_250/loops=false +animation/clip_251/name="" +animation/clip_251/start_frame=0 +animation/clip_251/end_frame=0 +animation/clip_251/loops=false +animation/clip_252/name="" +animation/clip_252/start_frame=0 +animation/clip_252/end_frame=0 +animation/clip_252/loops=false +animation/clip_253/name="" +animation/clip_253/start_frame=0 +animation/clip_253/end_frame=0 +animation/clip_253/loops=false +animation/clip_254/name="" +animation/clip_254/start_frame=0 +animation/clip_254/end_frame=0 +animation/clip_254/loops=false +animation/clip_255/name="" +animation/clip_255/start_frame=0 +animation/clip_255/end_frame=0 +animation/clip_255/loops=false +animation/clip_256/name="" +animation/clip_256/start_frame=0 +animation/clip_256/end_frame=0 +animation/clip_256/loops=false diff --git a/godot/assets/room/clock.glb b/godot/assets/room/clock.glb new file mode 100644 index 0000000..fc6db87 --- /dev/null +++ b/godot/assets/room/clock.glb @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cb5f32a60237d871ae223cb3bc65ce716e23c74b43a685d9594d3718160f4900 +size 6416 diff --git a/godot/assets/room/clock.glb.import b/godot/assets/room/clock.glb.import new file mode 100644 index 0000000..b187a56 --- /dev/null +++ b/godot/assets/room/clock.glb.import @@ -0,0 +1,1065 @@ +[remap] + +importer="scene" +type="PackedScene" +path="res://.import/clock.glb-602dce00dbbeb99db8323f883c6bedf8.scn" + +[deps] + +source_file="res://assets/room/clock.glb" +dest_files=[ "res://.import/clock.glb-602dce00dbbeb99db8323f883c6bedf8.scn" ] + +[params] + +nodes/root_type="Spatial" +nodes/root_name="Scene Root" +nodes/root_scale=1.0 +nodes/custom_script="" +nodes/storage=0 +nodes/use_legacy_names=false +materials/location=1 +materials/storage=1 +materials/keep_on_reimport=true +meshes/octahedral_compression=true +meshes/compress=4286 +meshes/ensure_tangents=true +meshes/storage=0 +meshes/light_baking=0 +meshes/lightmap_texel_size=0.1 +skins/use_named_skins=true +external_files/store_in_subdir=false +animation/import=true +animation/fps=15 +animation/filter_script="" +animation/storage=false +animation/keep_custom_tracks=false +animation/optimizer/enabled=true +animation/optimizer/max_linear_error=0.05 +animation/optimizer/max_angular_error=0.01 +animation/optimizer/max_angle=22 +animation/optimizer/remove_unused_tracks=true +animation/clips/amount=0 +animation/clip_1/name="" +animation/clip_1/start_frame=0 +animation/clip_1/end_frame=0 +animation/clip_1/loops=false +animation/clip_2/name="" +animation/clip_2/start_frame=0 +animation/clip_2/end_frame=0 +animation/clip_2/loops=false +animation/clip_3/name="" +animation/clip_3/start_frame=0 +animation/clip_3/end_frame=0 +animation/clip_3/loops=false +animation/clip_4/name="" +animation/clip_4/start_frame=0 +animation/clip_4/end_frame=0 +animation/clip_4/loops=false +animation/clip_5/name="" +animation/clip_5/start_frame=0 +animation/clip_5/end_frame=0 +animation/clip_5/loops=false +animation/clip_6/name="" +animation/clip_6/start_frame=0 +animation/clip_6/end_frame=0 +animation/clip_6/loops=false +animation/clip_7/name="" +animation/clip_7/start_frame=0 +animation/clip_7/end_frame=0 +animation/clip_7/loops=false +animation/clip_8/name="" +animation/clip_8/start_frame=0 +animation/clip_8/end_frame=0 +animation/clip_8/loops=false +animation/clip_9/name="" +animation/clip_9/start_frame=0 +animation/clip_9/end_frame=0 +animation/clip_9/loops=false +animation/clip_10/name="" +animation/clip_10/start_frame=0 +animation/clip_10/end_frame=0 +animation/clip_10/loops=false +animation/clip_11/name="" +animation/clip_11/start_frame=0 +animation/clip_11/end_frame=0 +animation/clip_11/loops=false +animation/clip_12/name="" +animation/clip_12/start_frame=0 +animation/clip_12/end_frame=0 +animation/clip_12/loops=false +animation/clip_13/name="" +animation/clip_13/start_frame=0 +animation/clip_13/end_frame=0 +animation/clip_13/loops=false +animation/clip_14/name="" +animation/clip_14/start_frame=0 +animation/clip_14/end_frame=0 +animation/clip_14/loops=false +animation/clip_15/name="" +animation/clip_15/start_frame=0 +animation/clip_15/end_frame=0 +animation/clip_15/loops=false +animation/clip_16/name="" +animation/clip_16/start_frame=0 +animation/clip_16/end_frame=0 +animation/clip_16/loops=false +animation/clip_17/name="" +animation/clip_17/start_frame=0 +animation/clip_17/end_frame=0 +animation/clip_17/loops=false +animation/clip_18/name="" +animation/clip_18/start_frame=0 +animation/clip_18/end_frame=0 +animation/clip_18/loops=false +animation/clip_19/name="" +animation/clip_19/start_frame=0 +animation/clip_19/end_frame=0 +animation/clip_19/loops=false +animation/clip_20/name="" +animation/clip_20/start_frame=0 +animation/clip_20/end_frame=0 +animation/clip_20/loops=false +animation/clip_21/name="" +animation/clip_21/start_frame=0 +animation/clip_21/end_frame=0 +animation/clip_21/loops=false +animation/clip_22/name="" +animation/clip_22/start_frame=0 +animation/clip_22/end_frame=0 +animation/clip_22/loops=false +animation/clip_23/name="" +animation/clip_23/start_frame=0 +animation/clip_23/end_frame=0 +animation/clip_23/loops=false +animation/clip_24/name="" +animation/clip_24/start_frame=0 +animation/clip_24/end_frame=0 +animation/clip_24/loops=false +animation/clip_25/name="" +animation/clip_25/start_frame=0 +animation/clip_25/end_frame=0 +animation/clip_25/loops=false +animation/clip_26/name="" +animation/clip_26/start_frame=0 +animation/clip_26/end_frame=0 +animation/clip_26/loops=false +animation/clip_27/name="" +animation/clip_27/start_frame=0 +animation/clip_27/end_frame=0 +animation/clip_27/loops=false +animation/clip_28/name="" +animation/clip_28/start_frame=0 +animation/clip_28/end_frame=0 +animation/clip_28/loops=false +animation/clip_29/name="" +animation/clip_29/start_frame=0 +animation/clip_29/end_frame=0 +animation/clip_29/loops=false +animation/clip_30/name="" +animation/clip_30/start_frame=0 +animation/clip_30/end_frame=0 +animation/clip_30/loops=false +animation/clip_31/name="" +animation/clip_31/start_frame=0 +animation/clip_31/end_frame=0 +animation/clip_31/loops=false +animation/clip_32/name="" +animation/clip_32/start_frame=0 +animation/clip_32/end_frame=0 +animation/clip_32/loops=false +animation/clip_33/name="" +animation/clip_33/start_frame=0 +animation/clip_33/end_frame=0 +animation/clip_33/loops=false +animation/clip_34/name="" +animation/clip_34/start_frame=0 +animation/clip_34/end_frame=0 +animation/clip_34/loops=false +animation/clip_35/name="" +animation/clip_35/start_frame=0 +animation/clip_35/end_frame=0 +animation/clip_35/loops=false +animation/clip_36/name="" +animation/clip_36/start_frame=0 +animation/clip_36/end_frame=0 +animation/clip_36/loops=false +animation/clip_37/name="" +animation/clip_37/start_frame=0 +animation/clip_37/end_frame=0 +animation/clip_37/loops=false +animation/clip_38/name="" +animation/clip_38/start_frame=0 +animation/clip_38/end_frame=0 +animation/clip_38/loops=false +animation/clip_39/name="" +animation/clip_39/start_frame=0 +animation/clip_39/end_frame=0 +animation/clip_39/loops=false +animation/clip_40/name="" +animation/clip_40/start_frame=0 +animation/clip_40/end_frame=0 +animation/clip_40/loops=false +animation/clip_41/name="" +animation/clip_41/start_frame=0 +animation/clip_41/end_frame=0 +animation/clip_41/loops=false +animation/clip_42/name="" +animation/clip_42/start_frame=0 +animation/clip_42/end_frame=0 +animation/clip_42/loops=false +animation/clip_43/name="" +animation/clip_43/start_frame=0 +animation/clip_43/end_frame=0 +animation/clip_43/loops=false +animation/clip_44/name="" +animation/clip_44/start_frame=0 +animation/clip_44/end_frame=0 +animation/clip_44/loops=false +animation/clip_45/name="" +animation/clip_45/start_frame=0 +animation/clip_45/end_frame=0 +animation/clip_45/loops=false +animation/clip_46/name="" +animation/clip_46/start_frame=0 +animation/clip_46/end_frame=0 +animation/clip_46/loops=false +animation/clip_47/name="" +animation/clip_47/start_frame=0 +animation/clip_47/end_frame=0 +animation/clip_47/loops=false +animation/clip_48/name="" +animation/clip_48/start_frame=0 +animation/clip_48/end_frame=0 +animation/clip_48/loops=false +animation/clip_49/name="" +animation/clip_49/start_frame=0 +animation/clip_49/end_frame=0 +animation/clip_49/loops=false +animation/clip_50/name="" +animation/clip_50/start_frame=0 +animation/clip_50/end_frame=0 +animation/clip_50/loops=false +animation/clip_51/name="" +animation/clip_51/start_frame=0 +animation/clip_51/end_frame=0 +animation/clip_51/loops=false +animation/clip_52/name="" +animation/clip_52/start_frame=0 +animation/clip_52/end_frame=0 +animation/clip_52/loops=false +animation/clip_53/name="" +animation/clip_53/start_frame=0 +animation/clip_53/end_frame=0 +animation/clip_53/loops=false +animation/clip_54/name="" +animation/clip_54/start_frame=0 +animation/clip_54/end_frame=0 +animation/clip_54/loops=false +animation/clip_55/name="" +animation/clip_55/start_frame=0 +animation/clip_55/end_frame=0 +animation/clip_55/loops=false +animation/clip_56/name="" +animation/clip_56/start_frame=0 +animation/clip_56/end_frame=0 +animation/clip_56/loops=false +animation/clip_57/name="" +animation/clip_57/start_frame=0 +animation/clip_57/end_frame=0 +animation/clip_57/loops=false +animation/clip_58/name="" +animation/clip_58/start_frame=0 +animation/clip_58/end_frame=0 +animation/clip_58/loops=false +animation/clip_59/name="" +animation/clip_59/start_frame=0 +animation/clip_59/end_frame=0 +animation/clip_59/loops=false +animation/clip_60/name="" +animation/clip_60/start_frame=0 +animation/clip_60/end_frame=0 +animation/clip_60/loops=false +animation/clip_61/name="" +animation/clip_61/start_frame=0 +animation/clip_61/end_frame=0 +animation/clip_61/loops=false +animation/clip_62/name="" +animation/clip_62/start_frame=0 +animation/clip_62/end_frame=0 +animation/clip_62/loops=false +animation/clip_63/name="" +animation/clip_63/start_frame=0 +animation/clip_63/end_frame=0 +animation/clip_63/loops=false +animation/clip_64/name="" +animation/clip_64/start_frame=0 +animation/clip_64/end_frame=0 +animation/clip_64/loops=false +animation/clip_65/name="" +animation/clip_65/start_frame=0 +animation/clip_65/end_frame=0 +animation/clip_65/loops=false +animation/clip_66/name="" +animation/clip_66/start_frame=0 +animation/clip_66/end_frame=0 +animation/clip_66/loops=false +animation/clip_67/name="" +animation/clip_67/start_frame=0 +animation/clip_67/end_frame=0 +animation/clip_67/loops=false +animation/clip_68/name="" +animation/clip_68/start_frame=0 +animation/clip_68/end_frame=0 +animation/clip_68/loops=false +animation/clip_69/name="" +animation/clip_69/start_frame=0 +animation/clip_69/end_frame=0 +animation/clip_69/loops=false +animation/clip_70/name="" +animation/clip_70/start_frame=0 +animation/clip_70/end_frame=0 +animation/clip_70/loops=false +animation/clip_71/name="" +animation/clip_71/start_frame=0 +animation/clip_71/end_frame=0 +animation/clip_71/loops=false +animation/clip_72/name="" +animation/clip_72/start_frame=0 +animation/clip_72/end_frame=0 +animation/clip_72/loops=false +animation/clip_73/name="" +animation/clip_73/start_frame=0 +animation/clip_73/end_frame=0 +animation/clip_73/loops=false +animation/clip_74/name="" +animation/clip_74/start_frame=0 +animation/clip_74/end_frame=0 +animation/clip_74/loops=false +animation/clip_75/name="" +animation/clip_75/start_frame=0 +animation/clip_75/end_frame=0 +animation/clip_75/loops=false +animation/clip_76/name="" +animation/clip_76/start_frame=0 +animation/clip_76/end_frame=0 +animation/clip_76/loops=false +animation/clip_77/name="" +animation/clip_77/start_frame=0 +animation/clip_77/end_frame=0 +animation/clip_77/loops=false +animation/clip_78/name="" +animation/clip_78/start_frame=0 +animation/clip_78/end_frame=0 +animation/clip_78/loops=false +animation/clip_79/name="" +animation/clip_79/start_frame=0 +animation/clip_79/end_frame=0 +animation/clip_79/loops=false +animation/clip_80/name="" +animation/clip_80/start_frame=0 +animation/clip_80/end_frame=0 +animation/clip_80/loops=false +animation/clip_81/name="" +animation/clip_81/start_frame=0 +animation/clip_81/end_frame=0 +animation/clip_81/loops=false +animation/clip_82/name="" +animation/clip_82/start_frame=0 +animation/clip_82/end_frame=0 +animation/clip_82/loops=false +animation/clip_83/name="" +animation/clip_83/start_frame=0 +animation/clip_83/end_frame=0 +animation/clip_83/loops=false +animation/clip_84/name="" +animation/clip_84/start_frame=0 +animation/clip_84/end_frame=0 +animation/clip_84/loops=false +animation/clip_85/name="" +animation/clip_85/start_frame=0 +animation/clip_85/end_frame=0 +animation/clip_85/loops=false +animation/clip_86/name="" +animation/clip_86/start_frame=0 +animation/clip_86/end_frame=0 +animation/clip_86/loops=false +animation/clip_87/name="" +animation/clip_87/start_frame=0 +animation/clip_87/end_frame=0 +animation/clip_87/loops=false +animation/clip_88/name="" +animation/clip_88/start_frame=0 +animation/clip_88/end_frame=0 +animation/clip_88/loops=false +animation/clip_89/name="" +animation/clip_89/start_frame=0 +animation/clip_89/end_frame=0 +animation/clip_89/loops=false +animation/clip_90/name="" +animation/clip_90/start_frame=0 +animation/clip_90/end_frame=0 +animation/clip_90/loops=false +animation/clip_91/name="" +animation/clip_91/start_frame=0 +animation/clip_91/end_frame=0 +animation/clip_91/loops=false +animation/clip_92/name="" +animation/clip_92/start_frame=0 +animation/clip_92/end_frame=0 +animation/clip_92/loops=false +animation/clip_93/name="" +animation/clip_93/start_frame=0 +animation/clip_93/end_frame=0 +animation/clip_93/loops=false +animation/clip_94/name="" +animation/clip_94/start_frame=0 +animation/clip_94/end_frame=0 +animation/clip_94/loops=false +animation/clip_95/name="" +animation/clip_95/start_frame=0 +animation/clip_95/end_frame=0 +animation/clip_95/loops=false +animation/clip_96/name="" +animation/clip_96/start_frame=0 +animation/clip_96/end_frame=0 +animation/clip_96/loops=false +animation/clip_97/name="" +animation/clip_97/start_frame=0 +animation/clip_97/end_frame=0 +animation/clip_97/loops=false +animation/clip_98/name="" +animation/clip_98/start_frame=0 +animation/clip_98/end_frame=0 +animation/clip_98/loops=false +animation/clip_99/name="" +animation/clip_99/start_frame=0 +animation/clip_99/end_frame=0 +animation/clip_99/loops=false +animation/clip_100/name="" +animation/clip_100/start_frame=0 +animation/clip_100/end_frame=0 +animation/clip_100/loops=false +animation/clip_101/name="" +animation/clip_101/start_frame=0 +animation/clip_101/end_frame=0 +animation/clip_101/loops=false +animation/clip_102/name="" +animation/clip_102/start_frame=0 +animation/clip_102/end_frame=0 +animation/clip_102/loops=false +animation/clip_103/name="" +animation/clip_103/start_frame=0 +animation/clip_103/end_frame=0 +animation/clip_103/loops=false +animation/clip_104/name="" +animation/clip_104/start_frame=0 +animation/clip_104/end_frame=0 +animation/clip_104/loops=false +animation/clip_105/name="" +animation/clip_105/start_frame=0 +animation/clip_105/end_frame=0 +animation/clip_105/loops=false +animation/clip_106/name="" +animation/clip_106/start_frame=0 +animation/clip_106/end_frame=0 +animation/clip_106/loops=false +animation/clip_107/name="" +animation/clip_107/start_frame=0 +animation/clip_107/end_frame=0 +animation/clip_107/loops=false +animation/clip_108/name="" +animation/clip_108/start_frame=0 +animation/clip_108/end_frame=0 +animation/clip_108/loops=false +animation/clip_109/name="" +animation/clip_109/start_frame=0 +animation/clip_109/end_frame=0 +animation/clip_109/loops=false +animation/clip_110/name="" +animation/clip_110/start_frame=0 +animation/clip_110/end_frame=0 +animation/clip_110/loops=false +animation/clip_111/name="" +animation/clip_111/start_frame=0 +animation/clip_111/end_frame=0 +animation/clip_111/loops=false +animation/clip_112/name="" +animation/clip_112/start_frame=0 +animation/clip_112/end_frame=0 +animation/clip_112/loops=false +animation/clip_113/name="" +animation/clip_113/start_frame=0 +animation/clip_113/end_frame=0 +animation/clip_113/loops=false +animation/clip_114/name="" +animation/clip_114/start_frame=0 +animation/clip_114/end_frame=0 +animation/clip_114/loops=false +animation/clip_115/name="" +animation/clip_115/start_frame=0 +animation/clip_115/end_frame=0 +animation/clip_115/loops=false +animation/clip_116/name="" +animation/clip_116/start_frame=0 +animation/clip_116/end_frame=0 +animation/clip_116/loops=false +animation/clip_117/name="" +animation/clip_117/start_frame=0 +animation/clip_117/end_frame=0 +animation/clip_117/loops=false +animation/clip_118/name="" +animation/clip_118/start_frame=0 +animation/clip_118/end_frame=0 +animation/clip_118/loops=false +animation/clip_119/name="" +animation/clip_119/start_frame=0 +animation/clip_119/end_frame=0 +animation/clip_119/loops=false +animation/clip_120/name="" +animation/clip_120/start_frame=0 +animation/clip_120/end_frame=0 +animation/clip_120/loops=false +animation/clip_121/name="" +animation/clip_121/start_frame=0 +animation/clip_121/end_frame=0 +animation/clip_121/loops=false +animation/clip_122/name="" +animation/clip_122/start_frame=0 +animation/clip_122/end_frame=0 +animation/clip_122/loops=false +animation/clip_123/name="" +animation/clip_123/start_frame=0 +animation/clip_123/end_frame=0 +animation/clip_123/loops=false +animation/clip_124/name="" +animation/clip_124/start_frame=0 +animation/clip_124/end_frame=0 +animation/clip_124/loops=false +animation/clip_125/name="" +animation/clip_125/start_frame=0 +animation/clip_125/end_frame=0 +animation/clip_125/loops=false +animation/clip_126/name="" +animation/clip_126/start_frame=0 +animation/clip_126/end_frame=0 +animation/clip_126/loops=false +animation/clip_127/name="" +animation/clip_127/start_frame=0 +animation/clip_127/end_frame=0 +animation/clip_127/loops=false +animation/clip_128/name="" +animation/clip_128/start_frame=0 +animation/clip_128/end_frame=0 +animation/clip_128/loops=false +animation/clip_129/name="" +animation/clip_129/start_frame=0 +animation/clip_129/end_frame=0 +animation/clip_129/loops=false +animation/clip_130/name="" +animation/clip_130/start_frame=0 +animation/clip_130/end_frame=0 +animation/clip_130/loops=false +animation/clip_131/name="" +animation/clip_131/start_frame=0 +animation/clip_131/end_frame=0 +animation/clip_131/loops=false +animation/clip_132/name="" +animation/clip_132/start_frame=0 +animation/clip_132/end_frame=0 +animation/clip_132/loops=false +animation/clip_133/name="" +animation/clip_133/start_frame=0 +animation/clip_133/end_frame=0 +animation/clip_133/loops=false +animation/clip_134/name="" +animation/clip_134/start_frame=0 +animation/clip_134/end_frame=0 +animation/clip_134/loops=false +animation/clip_135/name="" +animation/clip_135/start_frame=0 +animation/clip_135/end_frame=0 +animation/clip_135/loops=false +animation/clip_136/name="" +animation/clip_136/start_frame=0 +animation/clip_136/end_frame=0 +animation/clip_136/loops=false +animation/clip_137/name="" +animation/clip_137/start_frame=0 +animation/clip_137/end_frame=0 +animation/clip_137/loops=false +animation/clip_138/name="" +animation/clip_138/start_frame=0 +animation/clip_138/end_frame=0 +animation/clip_138/loops=false +animation/clip_139/name="" +animation/clip_139/start_frame=0 +animation/clip_139/end_frame=0 +animation/clip_139/loops=false +animation/clip_140/name="" +animation/clip_140/start_frame=0 +animation/clip_140/end_frame=0 +animation/clip_140/loops=false +animation/clip_141/name="" +animation/clip_141/start_frame=0 +animation/clip_141/end_frame=0 +animation/clip_141/loops=false +animation/clip_142/name="" +animation/clip_142/start_frame=0 +animation/clip_142/end_frame=0 +animation/clip_142/loops=false +animation/clip_143/name="" +animation/clip_143/start_frame=0 +animation/clip_143/end_frame=0 +animation/clip_143/loops=false +animation/clip_144/name="" +animation/clip_144/start_frame=0 +animation/clip_144/end_frame=0 +animation/clip_144/loops=false +animation/clip_145/name="" +animation/clip_145/start_frame=0 +animation/clip_145/end_frame=0 +animation/clip_145/loops=false +animation/clip_146/name="" +animation/clip_146/start_frame=0 +animation/clip_146/end_frame=0 +animation/clip_146/loops=false +animation/clip_147/name="" +animation/clip_147/start_frame=0 +animation/clip_147/end_frame=0 +animation/clip_147/loops=false +animation/clip_148/name="" +animation/clip_148/start_frame=0 +animation/clip_148/end_frame=0 +animation/clip_148/loops=false +animation/clip_149/name="" +animation/clip_149/start_frame=0 +animation/clip_149/end_frame=0 +animation/clip_149/loops=false +animation/clip_150/name="" +animation/clip_150/start_frame=0 +animation/clip_150/end_frame=0 +animation/clip_150/loops=false +animation/clip_151/name="" +animation/clip_151/start_frame=0 +animation/clip_151/end_frame=0 +animation/clip_151/loops=false +animation/clip_152/name="" +animation/clip_152/start_frame=0 +animation/clip_152/end_frame=0 +animation/clip_152/loops=false +animation/clip_153/name="" +animation/clip_153/start_frame=0 +animation/clip_153/end_frame=0 +animation/clip_153/loops=false +animation/clip_154/name="" +animation/clip_154/start_frame=0 +animation/clip_154/end_frame=0 +animation/clip_154/loops=false +animation/clip_155/name="" +animation/clip_155/start_frame=0 +animation/clip_155/end_frame=0 +animation/clip_155/loops=false +animation/clip_156/name="" +animation/clip_156/start_frame=0 +animation/clip_156/end_frame=0 +animation/clip_156/loops=false +animation/clip_157/name="" +animation/clip_157/start_frame=0 +animation/clip_157/end_frame=0 +animation/clip_157/loops=false +animation/clip_158/name="" +animation/clip_158/start_frame=0 +animation/clip_158/end_frame=0 +animation/clip_158/loops=false +animation/clip_159/name="" +animation/clip_159/start_frame=0 +animation/clip_159/end_frame=0 +animation/clip_159/loops=false +animation/clip_160/name="" +animation/clip_160/start_frame=0 +animation/clip_160/end_frame=0 +animation/clip_160/loops=false +animation/clip_161/name="" +animation/clip_161/start_frame=0 +animation/clip_161/end_frame=0 +animation/clip_161/loops=false +animation/clip_162/name="" +animation/clip_162/start_frame=0 +animation/clip_162/end_frame=0 +animation/clip_162/loops=false +animation/clip_163/name="" +animation/clip_163/start_frame=0 +animation/clip_163/end_frame=0 +animation/clip_163/loops=false +animation/clip_164/name="" +animation/clip_164/start_frame=0 +animation/clip_164/end_frame=0 +animation/clip_164/loops=false +animation/clip_165/name="" +animation/clip_165/start_frame=0 +animation/clip_165/end_frame=0 +animation/clip_165/loops=false +animation/clip_166/name="" +animation/clip_166/start_frame=0 +animation/clip_166/end_frame=0 +animation/clip_166/loops=false +animation/clip_167/name="" +animation/clip_167/start_frame=0 +animation/clip_167/end_frame=0 +animation/clip_167/loops=false +animation/clip_168/name="" +animation/clip_168/start_frame=0 +animation/clip_168/end_frame=0 +animation/clip_168/loops=false +animation/clip_169/name="" +animation/clip_169/start_frame=0 +animation/clip_169/end_frame=0 +animation/clip_169/loops=false +animation/clip_170/name="" +animation/clip_170/start_frame=0 +animation/clip_170/end_frame=0 +animation/clip_170/loops=false +animation/clip_171/name="" +animation/clip_171/start_frame=0 +animation/clip_171/end_frame=0 +animation/clip_171/loops=false +animation/clip_172/name="" +animation/clip_172/start_frame=0 +animation/clip_172/end_frame=0 +animation/clip_172/loops=false +animation/clip_173/name="" +animation/clip_173/start_frame=0 +animation/clip_173/end_frame=0 +animation/clip_173/loops=false +animation/clip_174/name="" +animation/clip_174/start_frame=0 +animation/clip_174/end_frame=0 +animation/clip_174/loops=false +animation/clip_175/name="" +animation/clip_175/start_frame=0 +animation/clip_175/end_frame=0 +animation/clip_175/loops=false +animation/clip_176/name="" +animation/clip_176/start_frame=0 +animation/clip_176/end_frame=0 +animation/clip_176/loops=false +animation/clip_177/name="" +animation/clip_177/start_frame=0 +animation/clip_177/end_frame=0 +animation/clip_177/loops=false +animation/clip_178/name="" +animation/clip_178/start_frame=0 +animation/clip_178/end_frame=0 +animation/clip_178/loops=false +animation/clip_179/name="" +animation/clip_179/start_frame=0 +animation/clip_179/end_frame=0 +animation/clip_179/loops=false +animation/clip_180/name="" +animation/clip_180/start_frame=0 +animation/clip_180/end_frame=0 +animation/clip_180/loops=false +animation/clip_181/name="" +animation/clip_181/start_frame=0 +animation/clip_181/end_frame=0 +animation/clip_181/loops=false +animation/clip_182/name="" +animation/clip_182/start_frame=0 +animation/clip_182/end_frame=0 +animation/clip_182/loops=false +animation/clip_183/name="" +animation/clip_183/start_frame=0 +animation/clip_183/end_frame=0 +animation/clip_183/loops=false +animation/clip_184/name="" +animation/clip_184/start_frame=0 +animation/clip_184/end_frame=0 +animation/clip_184/loops=false +animation/clip_185/name="" +animation/clip_185/start_frame=0 +animation/clip_185/end_frame=0 +animation/clip_185/loops=false +animation/clip_186/name="" +animation/clip_186/start_frame=0 +animation/clip_186/end_frame=0 +animation/clip_186/loops=false +animation/clip_187/name="" +animation/clip_187/start_frame=0 +animation/clip_187/end_frame=0 +animation/clip_187/loops=false +animation/clip_188/name="" +animation/clip_188/start_frame=0 +animation/clip_188/end_frame=0 +animation/clip_188/loops=false +animation/clip_189/name="" +animation/clip_189/start_frame=0 +animation/clip_189/end_frame=0 +animation/clip_189/loops=false +animation/clip_190/name="" +animation/clip_190/start_frame=0 +animation/clip_190/end_frame=0 +animation/clip_190/loops=false +animation/clip_191/name="" +animation/clip_191/start_frame=0 +animation/clip_191/end_frame=0 +animation/clip_191/loops=false +animation/clip_192/name="" +animation/clip_192/start_frame=0 +animation/clip_192/end_frame=0 +animation/clip_192/loops=false +animation/clip_193/name="" +animation/clip_193/start_frame=0 +animation/clip_193/end_frame=0 +animation/clip_193/loops=false +animation/clip_194/name="" +animation/clip_194/start_frame=0 +animation/clip_194/end_frame=0 +animation/clip_194/loops=false +animation/clip_195/name="" +animation/clip_195/start_frame=0 +animation/clip_195/end_frame=0 +animation/clip_195/loops=false +animation/clip_196/name="" +animation/clip_196/start_frame=0 +animation/clip_196/end_frame=0 +animation/clip_196/loops=false +animation/clip_197/name="" +animation/clip_197/start_frame=0 +animation/clip_197/end_frame=0 +animation/clip_197/loops=false +animation/clip_198/name="" +animation/clip_198/start_frame=0 +animation/clip_198/end_frame=0 +animation/clip_198/loops=false +animation/clip_199/name="" +animation/clip_199/start_frame=0 +animation/clip_199/end_frame=0 +animation/clip_199/loops=false +animation/clip_200/name="" +animation/clip_200/start_frame=0 +animation/clip_200/end_frame=0 +animation/clip_200/loops=false +animation/clip_201/name="" +animation/clip_201/start_frame=0 +animation/clip_201/end_frame=0 +animation/clip_201/loops=false +animation/clip_202/name="" +animation/clip_202/start_frame=0 +animation/clip_202/end_frame=0 +animation/clip_202/loops=false +animation/clip_203/name="" +animation/clip_203/start_frame=0 +animation/clip_203/end_frame=0 +animation/clip_203/loops=false +animation/clip_204/name="" +animation/clip_204/start_frame=0 +animation/clip_204/end_frame=0 +animation/clip_204/loops=false +animation/clip_205/name="" +animation/clip_205/start_frame=0 +animation/clip_205/end_frame=0 +animation/clip_205/loops=false +animation/clip_206/name="" +animation/clip_206/start_frame=0 +animation/clip_206/end_frame=0 +animation/clip_206/loops=false +animation/clip_207/name="" +animation/clip_207/start_frame=0 +animation/clip_207/end_frame=0 +animation/clip_207/loops=false +animation/clip_208/name="" +animation/clip_208/start_frame=0 +animation/clip_208/end_frame=0 +animation/clip_208/loops=false +animation/clip_209/name="" +animation/clip_209/start_frame=0 +animation/clip_209/end_frame=0 +animation/clip_209/loops=false +animation/clip_210/name="" +animation/clip_210/start_frame=0 +animation/clip_210/end_frame=0 +animation/clip_210/loops=false +animation/clip_211/name="" +animation/clip_211/start_frame=0 +animation/clip_211/end_frame=0 +animation/clip_211/loops=false +animation/clip_212/name="" +animation/clip_212/start_frame=0 +animation/clip_212/end_frame=0 +animation/clip_212/loops=false +animation/clip_213/name="" +animation/clip_213/start_frame=0 +animation/clip_213/end_frame=0 +animation/clip_213/loops=false +animation/clip_214/name="" +animation/clip_214/start_frame=0 +animation/clip_214/end_frame=0 +animation/clip_214/loops=false +animation/clip_215/name="" +animation/clip_215/start_frame=0 +animation/clip_215/end_frame=0 +animation/clip_215/loops=false +animation/clip_216/name="" +animation/clip_216/start_frame=0 +animation/clip_216/end_frame=0 +animation/clip_216/loops=false +animation/clip_217/name="" +animation/clip_217/start_frame=0 +animation/clip_217/end_frame=0 +animation/clip_217/loops=false +animation/clip_218/name="" +animation/clip_218/start_frame=0 +animation/clip_218/end_frame=0 +animation/clip_218/loops=false +animation/clip_219/name="" +animation/clip_219/start_frame=0 +animation/clip_219/end_frame=0 +animation/clip_219/loops=false +animation/clip_220/name="" +animation/clip_220/start_frame=0 +animation/clip_220/end_frame=0 +animation/clip_220/loops=false +animation/clip_221/name="" +animation/clip_221/start_frame=0 +animation/clip_221/end_frame=0 +animation/clip_221/loops=false +animation/clip_222/name="" +animation/clip_222/start_frame=0 +animation/clip_222/end_frame=0 +animation/clip_222/loops=false +animation/clip_223/name="" +animation/clip_223/start_frame=0 +animation/clip_223/end_frame=0 +animation/clip_223/loops=false +animation/clip_224/name="" +animation/clip_224/start_frame=0 +animation/clip_224/end_frame=0 +animation/clip_224/loops=false +animation/clip_225/name="" +animation/clip_225/start_frame=0 +animation/clip_225/end_frame=0 +animation/clip_225/loops=false +animation/clip_226/name="" +animation/clip_226/start_frame=0 +animation/clip_226/end_frame=0 +animation/clip_226/loops=false +animation/clip_227/name="" +animation/clip_227/start_frame=0 +animation/clip_227/end_frame=0 +animation/clip_227/loops=false +animation/clip_228/name="" +animation/clip_228/start_frame=0 +animation/clip_228/end_frame=0 +animation/clip_228/loops=false +animation/clip_229/name="" +animation/clip_229/start_frame=0 +animation/clip_229/end_frame=0 +animation/clip_229/loops=false +animation/clip_230/name="" +animation/clip_230/start_frame=0 +animation/clip_230/end_frame=0 +animation/clip_230/loops=false +animation/clip_231/name="" +animation/clip_231/start_frame=0 +animation/clip_231/end_frame=0 +animation/clip_231/loops=false +animation/clip_232/name="" +animation/clip_232/start_frame=0 +animation/clip_232/end_frame=0 +animation/clip_232/loops=false +animation/clip_233/name="" +animation/clip_233/start_frame=0 +animation/clip_233/end_frame=0 +animation/clip_233/loops=false +animation/clip_234/name="" +animation/clip_234/start_frame=0 +animation/clip_234/end_frame=0 +animation/clip_234/loops=false +animation/clip_235/name="" +animation/clip_235/start_frame=0 +animation/clip_235/end_frame=0 +animation/clip_235/loops=false +animation/clip_236/name="" +animation/clip_236/start_frame=0 +animation/clip_236/end_frame=0 +animation/clip_236/loops=false +animation/clip_237/name="" +animation/clip_237/start_frame=0 +animation/clip_237/end_frame=0 +animation/clip_237/loops=false +animation/clip_238/name="" +animation/clip_238/start_frame=0 +animation/clip_238/end_frame=0 +animation/clip_238/loops=false +animation/clip_239/name="" +animation/clip_239/start_frame=0 +animation/clip_239/end_frame=0 +animation/clip_239/loops=false +animation/clip_240/name="" +animation/clip_240/start_frame=0 +animation/clip_240/end_frame=0 +animation/clip_240/loops=false +animation/clip_241/name="" +animation/clip_241/start_frame=0 +animation/clip_241/end_frame=0 +animation/clip_241/loops=false +animation/clip_242/name="" +animation/clip_242/start_frame=0 +animation/clip_242/end_frame=0 +animation/clip_242/loops=false +animation/clip_243/name="" +animation/clip_243/start_frame=0 +animation/clip_243/end_frame=0 +animation/clip_243/loops=false +animation/clip_244/name="" +animation/clip_244/start_frame=0 +animation/clip_244/end_frame=0 +animation/clip_244/loops=false +animation/clip_245/name="" +animation/clip_245/start_frame=0 +animation/clip_245/end_frame=0 +animation/clip_245/loops=false +animation/clip_246/name="" +animation/clip_246/start_frame=0 +animation/clip_246/end_frame=0 +animation/clip_246/loops=false +animation/clip_247/name="" +animation/clip_247/start_frame=0 +animation/clip_247/end_frame=0 +animation/clip_247/loops=false +animation/clip_248/name="" +animation/clip_248/start_frame=0 +animation/clip_248/end_frame=0 +animation/clip_248/loops=false +animation/clip_249/name="" +animation/clip_249/start_frame=0 +animation/clip_249/end_frame=0 +animation/clip_249/loops=false +animation/clip_250/name="" +animation/clip_250/start_frame=0 +animation/clip_250/end_frame=0 +animation/clip_250/loops=false +animation/clip_251/name="" +animation/clip_251/start_frame=0 +animation/clip_251/end_frame=0 +animation/clip_251/loops=false +animation/clip_252/name="" +animation/clip_252/start_frame=0 +animation/clip_252/end_frame=0 +animation/clip_252/loops=false +animation/clip_253/name="" +animation/clip_253/start_frame=0 +animation/clip_253/end_frame=0 +animation/clip_253/loops=false +animation/clip_254/name="" +animation/clip_254/start_frame=0 +animation/clip_254/end_frame=0 +animation/clip_254/loops=false +animation/clip_255/name="" +animation/clip_255/start_frame=0 +animation/clip_255/end_frame=0 +animation/clip_255/loops=false +animation/clip_256/name="" +animation/clip_256/start_frame=0 +animation/clip_256/end_frame=0 +animation/clip_256/loops=false diff --git a/godot/assets/room/environment.tscn b/godot/assets/room/environment.tscn index 6687681..9edf1da 100644 --- a/godot/assets/room/environment.tscn +++ b/godot/assets/room/environment.tscn @@ -1,6 +1,7 @@ -[gd_scene load_steps=9 format=2] +[gd_scene load_steps=12 format=2] [ext_resource path="res://assets/room/environment.glb" type="PackedScene" id=1] +[ext_resource path="res://assets/room/ClockFace.material" type="Material" id=2] [sub_resource type="ConcavePolygonShape" id=1] data = PoolVector3Array( -1, 1.7922, -0.5551, -1, 2, -1, -1, 1.7922, -1, -1, 1.7922, -0.5551, -1, 2, -0.5551, -1, 2, -1, 0, 1.7922, -1, 1, 2, -1, 1, 1.7922, -1, 0, 1.7922, -1, 0, 2, -1, 1, 2, -1, 1, 1.7664, 0.7589, 1, 2, 1, 1, 1.7592, 1, 1, 1.7664, 0.7589, 1, 2, 0.7589, 1, 2, 1, -0.4957, 1.7592, 1, -1, 2, 1, -1, 1.7592, 1, -0.4957, 1.7592, 1, -0.5, 2, 1, -1, 2, 1, 0.2293, 0, 0.7589, 1, 0, 1, 0.2929, 0, 1, 0.2293, 0, 0.7589, 1, 0, 0.7589, 1, 0, 1, -0.5503, 2, 0.6886, -1, 2, 1, -0.5, 2, 1, -0.5503, 2, 0.6886, -1, 2, 0.7589, -1, 2, 1, -0.7318, 2, -0.879, -1, 2, -0.1102, -0.7318, 2, -0.4341, -0.7318, 2, -0.879, -1, 2, -0.5551, -1, 2, -0.1102, 0, 0, -0.5551, 1, 0, -0.1102, 0, 0, -0.1102, 0, 0, -0.5551, 1, 0, -0.5551, 1, 0, -0.1102, 1, 1.7922, -0.5551, 1, 2, -0.1102, 1, 1.7922, -0.1102, 1, 1.7922, -0.5551, 1, 2, -0.5551, 1, 2, -0.1102, -1, 1.7664, 0.7589, -1, 2, -0.1102, -1, 1.7922, -0.1102, -1, 1.7664, 0.7589, -1, 2, 0.7589, -1, 2, -0.1102, 1, 1.7922, -1, 1, 2, -0.5551, 1, 1.7922, -0.5551, 1, 1.7922, -1, 1, 2, -1, 1, 2, -0.5551, 0, 0, -1, 1, 0, -0.5551, 0, 0, -0.5551, 0, 0, -1, 1, 0, -1, 1, 0, -0.5551, -0.5, 2, -1, -1, 2, -1, -0.7318, 2, -0.879, -0.7318, 2, -0.879, -1, 2, -1, -1, 2, -0.5551, -1, 1.7922, -0.1102, -1, 2, -0.5551, -1, 1.7922, -0.5551, -1, 1.7922, -0.1102, -1, 2, -0.1102, -1, 2, -0.5551, 1, 2, -1, -0.2318, 2, -0.879, 1, 2, -0.5551, 1, 2, -1, 0, 2, -1, -0.2318, 2, -0.879, -0.5, 0, -1, 0, 0, -0.5551, -0.5, 0, -0.5551, -0.5, 0, -1, 0, 0, -1, 0, 0, -0.5551, -0.5, 0, -0.5551, 0, 0, -0.1102, -0.5, 0, -0.1102, -0.5, 0, -0.5551, 0, 0, -0.5551, 0, 0, -0.1102, 1, 2, -0.5551, -0.2318, 2, -0.4341, 1, 2, -0.1102, 1, 2, -0.5551, -0.2318, 2, -0.879, -0.2318, 2, -0.4341, 1, 2, 0.7589, 0.3588, 2, 1, 1, 2, 1, 1, 2, 0.7589, 0.2306, 2, 0.6886, 0.3588, 2, 1, -0.4966, 0, 0.7589, 0.2929, 0, 1, -0.4957, 0, 1, -0.4966, 0, 0.7589, 0.2293, 0, 0.7589, 0.2929, 0, 1, 1, 1.7592, 1, 0.3588, 2, 1, 0.2929, 1.7592, 1, 1, 1.7592, 1, 1, 2, 1, 0.3588, 2, 1, -0.5, 1.7922, -1, 0, 2, -1, 0, 1.7922, -1, -0.5, 1.7922, -1, -0.5, 2, -1, 0, 2, -1, -1, 1.7922, -1, -0.5, 2, -1, -0.5, 1.7922, -1, -1, 1.7922, -1, -1, 2, -1, -0.5, 2, -1, -1, 0, 0.7589, -0.4957, 0, 1, -1, 0, 1, -1, 0, 0.7589, -0.4966, 0, 0.7589, -0.4957, 0, 1, -1, 0, -0.5551, -0.5, 0, -0.1102, -1, 0, -0.1102, -1, 0, -0.5551, -0.5, 0, -0.5551, -0.5, 0, -0.1102, -1, 0, -1, -0.5, 0, -0.5551, -1, 0, -0.5551, -1, 0, -1, -0.5, 0, -1, -0.5, 0, -0.5551, 0, 2, -1, -0.7318, 2, -0.879, -0.2318, 2, -0.879, 0, 2, -1, -0.5, 2, -1, -0.7318, 2, -0.879, 0, 2.5197, -0.1894, 0, 3.0394, -0.1102, 0, 2.5197, 0.2554, 0, 2.5197, -0.1894, 0, 3.0394, -0.5551, 0, 3.0394, -0.1102, 0.2306, 2, 0.6886, -0.5, 2, 1, 0.3588, 2, 1, 0.2306, 2, 0.6886, -0.5503, 2, 0.6886, -0.5, 2, 1, 0.2929, 1.7592, 1, -0.5, 2, 1, -0.4957, 1.7592, 1, 0.2929, 1.7592, 1, 0.3588, 2, 1, -0.5, 2, 1, 0, 3.0394, -0.5551, -0.5, 3.0394, -0.1102, 0, 3.0394, -0.1102, 0, 3.0394, -0.5551, -0.5, 3.0394, -0.5551, -0.5, 3.0394, -0.1102, 0, 2.5197, 0.2554, -0.5, 3.0394, -0.1102, -0.5, 2.5197, 0.2554, 0, 2.5197, 0.2554, 0, 3.0394, -0.1102, -0.5, 3.0394, -0.1102, -0.5, 2.5197, -0.1894, 0, 3.0394, -0.5551, 0, 2.5197, -0.1894, -0.5, 2.5197, -0.1894, -0.5, 3.0394, -0.5551, 0, 3.0394, -0.5551, -0.7318, 2, -0.879, 0, 2.5197, -0.1894, -0.2318, 2, -0.879, -0.7318, 2, -0.879, -0.5, 2.5197, -0.1894, 0, 2.5197, -0.1894, -0.7318, 2, -0.4341, -0.5, 2.5197, -0.1894, -0.7318, 2, -0.879, -0.7318, 2, -0.4341, -0.5, 2.5197, 0.2554, -0.5, 2.5197, -0.1894, -0.2318, 2, -0.4341, -0.5, 2.5197, 0.2554, -0.7318, 2, -0.4341, -0.2318, 2, -0.4341, 0, 2.5197, 0.2554, -0.5, 2.5197, 0.2554, -0.2318, 2, -0.879, 0, 2.5197, 0.2554, -0.2318, 2, -0.4341, -0.2318, 2, -0.879, 0, 2.5197, -0.1894, 0, 2.5197, 0.2554, -0.5, 2.5197, 0.2554, -3.8663, 2.4134, -1.1306, -0.5, 2.5197, -0.1894, -0.5, 2.5197, 0.2554, -3.8663, 2.4134, 0.4652, -3.8663, 2.4134, -1.1306, -0.5, 3.0394, -0.5551, -6.8227, 3.1737, 0.6164, -0.5, 3.0394, -0.1102, -0.5, 3.0394, -0.5551, -6.8227, 3.1737, -1.2817, -6.8227, 3.1737, 0.6164, -5.5769, 2.6998, 0.6164, -6.8227, 3.1737, -1.2817, -5.5769, 2.6998, -1.2817, -5.5769, 2.6998, 0.6164, -6.8227, 3.1737, 0.6164, -6.8227, 3.1737, -1.2817, -3.8663, 2.4134, -1.1306, -0.5, 3.0394, -0.5551, -0.5, 2.5197, -0.1894, -0.5, 3.0394, -0.5551, -5.5769, 2.6998, -1.2817, -6.8227, 3.1737, -1.2817, -5.5769, 2.6998, -1.2817, -5.2782, 2.6041, -1.2743, -5.4367, 2.651, -1.2798, -5.2782, 2.6041, -1.2743, -4.9222, 2.5204, -1.2528, -5.1053, 2.5602, -1.2652, -4.9222, 2.5204, -1.2528, -4.5438, 2.457, -1.2194, -4.7335, 2.4857, -1.2374, -4.5438, 2.457, -1.2194, -4.1799, 2.4201, -1.1773, -4.3577, 2.435, -1.1992, -4.1799, 2.4201, -1.1773, -3.8663, 2.4134, -1.1306, -4.0148, 2.4129, -1.1542, -3.8663, 2.4134, -1.1306, -5.5769, 2.6998, -1.2817, -0.5, 3.0394, -0.5551, -5.5769, 2.6998, -1.2817, -4.9222, 2.5204, -1.2528, -5.2782, 2.6041, -1.2743, -4.9222, 2.5204, -1.2528, -4.1799, 2.4201, -1.1773, -4.5438, 2.457, -1.2194, -4.1799, 2.4201, -1.1773, -5.5769, 2.6998, -1.2817, -3.8663, 2.4134, -1.1306, -5.5769, 2.6998, -1.2817, -4.1799, 2.4201, -1.1773, -4.9222, 2.5204, -1.2528, -5.5769, 2.6998, -1.2817, -5.4367, 2.651, 0.6145, -5.5769, 2.6998, 0.6164, -5.5769, 2.6998, -1.2817, -5.4367, 2.651, -1.2798, -5.4367, 2.651, 0.6145, -5.4367, 2.651, -1.2798, -5.2782, 2.6041, 0.609, -5.4367, 2.651, 0.6145, -5.4367, 2.651, -1.2798, -5.2782, 2.6041, -1.2743, -5.2782, 2.6041, 0.609, -5.2782, 2.6041, -1.2743, -5.1053, 2.5602, 0.5999, -5.2782, 2.6041, 0.609, -5.2782, 2.6041, -1.2743, -5.1053, 2.5602, -1.2652, -5.1053, 2.5602, 0.5999, -5.1053, 2.5602, -1.2652, -4.9222, 2.5204, 0.5875, -5.1053, 2.5602, 0.5999, -5.1053, 2.5602, -1.2652, -4.9222, 2.5204, -1.2528, -4.9222, 2.5204, 0.5875, -4.9222, 2.5204, -1.2528, -4.7335, 2.4857, 0.5721, -4.9222, 2.5204, 0.5875, -4.9222, 2.5204, -1.2528, -4.7335, 2.4857, -1.2374, -4.7335, 2.4857, 0.5721, -4.7335, 2.4857, -1.2374, -4.5438, 2.457, 0.5541, -4.7335, 2.4857, 0.5721, -4.7335, 2.4857, -1.2374, -4.5438, 2.457, -1.2194, -4.5438, 2.457, 0.5541, -4.5438, 2.457, -1.2194, -4.3577, 2.435, 0.5339, -4.5438, 2.457, 0.5541, -4.5438, 2.457, -1.2194, -4.3577, 2.435, -1.1992, -4.3577, 2.435, 0.5339, -4.3577, 2.435, -1.1992, -4.1799, 2.4201, 0.5119, -4.3577, 2.435, 0.5339, -4.3577, 2.435, -1.1992, -4.1799, 2.4201, -1.1773, -4.1799, 2.4201, 0.5119, -4.1799, 2.4201, -1.1773, -4.0148, 2.4129, 0.4889, -4.1799, 2.4201, 0.5119, -4.1799, 2.4201, -1.1773, -4.0148, 2.4129, -1.1542, -4.0148, 2.4129, 0.4889, -4.0148, 2.4129, -1.1542, -3.8663, 2.4134, 0.4652, -4.0148, 2.4129, 0.4889, -4.0148, 2.4129, -1.1542, -3.8663, 2.4134, -1.1306, -3.8663, 2.4134, 0.4652, -6.8227, 3.1737, 0.6164, -0.5, 2.5197, 0.2554, -0.5, 3.0394, -0.1102, -3.8663, 2.4134, 0.4652, -4.1799, 2.4201, 0.5119, -4.0148, 2.4129, 0.4889, -6.8227, 3.1737, 0.6164, -3.8663, 2.4134, 0.4652, -0.5, 2.5197, 0.2554, -5.4367, 2.651, 0.6145, -6.8227, 3.1737, 0.6164, -5.5769, 2.6998, 0.6164, -5.1053, 2.5602, 0.5999, -5.4367, 2.651, 0.6145, -5.2782, 2.6041, 0.609, -4.7335, 2.4857, 0.5721, -5.1053, 2.5602, 0.5999, -4.9222, 2.5204, 0.5875, -4.3577, 2.435, 0.5339, -4.7335, 2.4857, 0.5721, -4.5438, 2.457, 0.5541, -3.8663, 2.4134, 0.4652, -4.3577, 2.435, 0.5339, -4.1799, 2.4201, 0.5119, -5.4367, 2.651, 0.6145, -3.8663, 2.4134, 0.4652, -6.8227, 3.1737, 0.6164, -4.7335, 2.4857, 0.5721, -5.4367, 2.651, 0.6145, -5.1053, 2.5602, 0.5999, -3.8663, 2.4134, 0.4652, -4.7335, 2.4857, 0.5721, -4.3577, 2.435, 0.5339, -3.8663, 2.4134, 0.4652, -5.4367, 2.651, 0.6145, -4.7335, 2.4857, 0.5721, 0.2929, 0, 1, -0.9594, -0.9586, 3.4434, -0.4957, 0, 1, 0.2929, 0, 1, 0.8182, -0.9586, 3.4434, -0.9594, -0.9586, 3.4434, -1, 0, -1, -0.5, 1.7922, -1, -0.5, 0, -1, -1, 0, -1, -1, 1.7922, -1, -0.5, 1.7922, -1, -0.5, 0, -1, 0, 1.7922, -1, 0, 0, -1, -0.5, 0, -1, -0.5, 1.7922, -1, 0, 1.7922, -1, 1, 0, 1, 0.2929, 1.7592, 1, 0.2929, 0, 1, 1, 0, 1, 1, 1.7592, 1, 0.2929, 1.7592, 1, -1, 0, -0.1102, -1, 1.7922, -0.5551, -1, 0, -0.5551, -1, 0, -0.1102, -1, 1.7922, -0.1102, -1, 1.7922, -0.5551, 1, 0, -1, 1, 1.7922, -0.5551, 1, 0, -0.5551, 1, 0, -1, 1, 1.7922, -1, 1, 1.7922, -0.5551, -1, 0, -0.1102, -2.2818, 1.7922, -0.1102, -1, 1.7922, -0.1102, -1, 0, -0.1102, -2.2818, 0, -0.1102, -2.2818, 1.7922, -0.1102, 1, 0, -0.5551, 1, 1.7922, -0.1102, 1, 0, -0.1102, 1, 0, -0.5551, 1, 1.7922, -0.5551, 1, 1.7922, -0.1102, -0.4957, 0, 1, -1, 1.7592, 1, -1, 0, 1, -0.4957, 0, 1, -0.4957, 1.7592, 1, -1, 1.7592, 1, 1, 0, 0.7589, 1, 1.7592, 1, 1, 0, 1, 1, 0, 0.7589, 1, 1.7664, 0.7589, 1, 1.7592, 1, 0, 0, -1, 1, 1.7922, -1, 1, 0, -1, 0, 0, -1, 0, 1.7922, -1, 1, 1.7922, -1, -1, 0, -0.5551, -1, 1.7922, -1, -1, 0, -1, -1, 0, -0.5551, -1, 1.7922, -0.5551, -1, 1.7922, -1, 0.8182, -0.9586, 3.4434, -0.9594, 2.7508, 3.4434, -0.9594, -0.9586, 3.4434, 0.8182, -0.9586, 3.4434, 0.8182, 2.7508, 3.4434, -0.9594, 2.7508, 3.4434, -0.4957, 0, 1, -0.9594, 2.7508, 3.4434, -0.4957, 1.7592, 1, -0.4957, 0, 1, -0.9594, -0.9586, 3.4434, -0.9594, 2.7508, 3.4434, -0.4957, 1.7592, 1, 0.8182, 2.7508, 3.4434, 0.2929, 1.7592, 1, -0.4957, 1.7592, 1, -0.9594, 2.7508, 3.4434, 0.8182, 2.7508, 3.4434, 0.2929, 1.7592, 1, 0.8182, -0.9586, 3.4434, 0.2929, 0, 1, 0.2929, 1.7592, 1, 0.8182, 2.7508, 3.4434, 0.8182, -0.9586, 3.4434, 1, 0, -0.1102, 1, 1.7664, 0.7589, 1, 0, 0.7589, 1, 0, -0.1102, 1, 1.7922, -0.1102, 1, 1.7664, 0.7589, -1, 0, 1, -1, 1.7664, 0.7589, -1, 0, 0.7589, -1, 0, 1, -1, 1.7592, 1, -1, 1.7664, 0.7589, -0.2318, 2, -0.4341, -0.5503, 2, 0.6886, 0.2306, 2, 0.6886, -0.2318, 2, -0.4341, -0.7318, 2, -0.4341, -0.5503, 2, 0.6886, -1, 0, -0.1102, -0.4966, 0, 0.7589, -1, 0, 0.7589, -1, 0, -0.1102, -0.5, 0, -0.1102, -0.4966, 0, 0.7589, -0.5, 0, -0.1102, 0.2293, 0, 0.7589, -0.4966, 0, 0.7589, -0.5, 0, -0.1102, 0, 0, -0.1102, 0.2293, 0, 0.7589, 1, 2, -0.1102, 0.2306, 2, 0.6886, 1, 2, 0.7589, 1, 2, -0.1102, -0.2318, 2, -0.4341, 0.2306, 2, 0.6886, -1, 1.7592, 1, -1, 2, 0.7589, -1, 1.7664, 0.7589, -1, 1.7592, 1, -1, 2, 1, -1, 2, 0.7589, -0.7318, 2, -0.4341, -1, 2, 0.7589, -0.5503, 2, 0.6886, -0.7318, 2, -0.4341, -1, 2, -0.1102, -1, 2, 0.7589, 0, 0, -0.1102, 1, 0, 0.7589, 0.2293, 0, 0.7589, 0, 0, -0.1102, 1, 0, -0.1102, 1, 0, 0.7589, 1, 1.7922, -0.1102, 1, 2, 0.7589, 1, 1.7664, 0.7589, 1, 1.7922, -0.1102, 1, 2, -0.1102, 1, 2, 0.7589, -2.2818, 0, 0.7589, -2.2818, 1.7922, -0.1102, -2.2818, 0, -0.1102, -2.2818, 0, 0.7589, -2.2818, 1.7664, 0.7589, -2.2818, 1.7922, -0.1102, -1, 0, 0.7589, -2.2818, 0, -0.1102, -1, 0, -0.1102, -1, 0, 0.7589, -2.2818, 0, 0.7589, -2.2818, 0, -0.1102, -1, 1.7664, 0.7589, -2.2818, 0, 0.7589, -1, 0, 0.7589, -1, 1.7664, 0.7589, -2.2818, 1.7664, 0.7589, -2.2818, 0, 0.7589, -1, 1.7922, -0.1102, -2.2818, 1.7664, 0.7589, -1, 1.7664, 0.7589, -1, 1.7922, -0.1102, -2.2818, 1.7922, -0.1102, -2.2818, 1.7664, 0.7589 ) @@ -11,8 +12,8 @@ data = PoolVector3Array( 0, -0.2986, -1, 0.7071, 1.8458, -0.7071, 0, 1.8458, -1, [sub_resource type="ConcavePolygonShape" id=3] data = PoolVector3Array( 0.8629, -1, 1, -0.8027, 1, 1, 0.8629, 1, 1, 0.8629, -1, 1, -0.8027, -1, 1, -0.8027, 1, 1, -1, -1, -1, 1, 1, -1, -1, 1, -1, -1, -1, -1, 1, -1, -1, 1, 1, -1, 1, 1, 0.8629, -1, 1, -1, 1, 1, -1, -1, 1, -1, -0.9903, 1, 0.8637, -1, 1, 0.8027, -0.9903, 1, 0.8637, -0.9187, 1, 0.9623, -0.9623, 1, 0.9187, -0.9187, 1, 0.9623, -0.8027, 1, 1, -0.8637, 1, 0.9903, -0.8027, 1, 1, 0.9053, 1, 0.9933, 0.8629, 1, 1, 0.9053, 1, 0.9933, 0.9738, 1, 0.9435, 0.9435, 1, 0.9738, 0.9738, 1, 0.9435, 1, 1, 0.8629, 0.9933, 1, 0.9053, 1, 1, 0.8629, -0.9903, 1, 0.8637, -1, 1, -1, -0.9903, 1, 0.8637, -0.8027, 1, 1, -0.9187, 1, 0.9623, -0.8027, 1, 1, 0.9738, 1, 0.9435, 0.9053, 1, 0.9933, 0.9738, 1, 0.9435, -0.9903, 1, 0.8637, 1, 1, 0.8629, -0.9903, 1, 0.8637, 0.9738, 1, 0.9435, -0.8027, 1, 1, 1, -1, -1, 1, 1, 0.8629, 1, 1, -1, 1, -1, -1, 1, -1, 0.8629, 1, 1, 0.8629, 0.5918, 0.211, 1.261, 0.5918, 0.2439, 0.8502, 0.5918, 0.2439, 1.2605, 0.5918, 0.211, 1.261, 0.5918, 0.211, 0.8736, 0.5918, 0.2439, 0.8502, 0.7172, 0.211, 0.8736, 0.7799, 0.2439, 0.8502, 0.7172, 0.2439, 0.8502, 0.7172, 0.211, 0.8736, 0.7799, 0.211, 0.8736, 0.7799, 0.2439, 0.8502, 0.7799, 0.211, 0.8736, 0.7799, 0.2439, 1.2605, 0.7799, 0.2439, 0.8502, 0.7799, 0.211, 0.8736, 0.7799, 0.211, 1.261, 0.7799, 0.2439, 1.2605, 0.6545, 0.211, 1.3349, 0.5918, 0.2439, 1.2605, 0.6545, 0.2439, 1.3349, 0.6545, 0.211, 1.3349, 0.5918, 0.211, 1.261, 0.5918, 0.2439, 1.2605, 0.7172, -0.0517, 0.8502, 0.7799, -0.0517, 1.2605, 0.7799, -0.0517, 0.8502, 0.7172, -0.0517, 0.8502, 0.7172, -0.0517, 1.3349, 0.7799, -0.0517, 1.2605, 0.6545, 0.2439, 0.8502, 0.5918, 0.2439, 1.2605, 0.5918, 0.2439, 0.8502, 0.6545, 0.2439, 0.8502, 0.6545, 0.2439, 1.3349, 0.5918, 0.2439, 1.2605, 0.7799, 0.2439, 0.8502, 0.7172, 0.2439, 1.3349, 0.7172, 0.2439, 0.8502, 0.7799, 0.2439, 0.8502, 0.7799, 0.2439, 1.2605, 0.7172, 0.2439, 1.3349, 0.7172, 0.2439, 0.8502, 0.6545, 0.2439, 1.3349, 0.6545, 0.2439, 0.8502, 0.7172, 0.2439, 0.8502, 0.7172, 0.2439, 1.3349, 0.6545, 0.2439, 1.3349, 0.5918, -0.0517, 0.8502, 0.6545, -0.0517, 1.3349, 0.6545, -0.0517, 0.8502, 0.5918, -0.0517, 0.8502, 0.5918, -0.0517, 1.2605, 0.6545, -0.0517, 1.3349, 0.6545, -0.0517, 0.8502, 0.7172, -0.0517, 1.3349, 0.7172, -0.0517, 0.8502, 0.6545, -0.0517, 0.8502, 0.6545, -0.0517, 1.3349, 0.7172, -0.0517, 1.3349, 0.7799, 0.211, 1.261, 0.7172, 0.2439, 1.3349, 0.7799, 0.2439, 1.2605, 0.7799, 0.211, 1.261, 0.7172, 0.211, 1.3349, 0.7172, 0.2439, 1.3349, 0.7172, 0.211, 1.3349, 0.6545, 0.2439, 1.3349, 0.7172, 0.2439, 1.3349, 0.7172, 0.211, 1.3349, 0.6545, 0.211, 1.3349, 0.6545, 0.2439, 1.3349, 0.5918, 0.211, 0.8736, 0.6545, 0.2439, 0.8502, 0.5918, 0.2439, 0.8502, 0.5918, 0.211, 0.8736, 0.6545, 0.211, 0.8736, 0.6545, 0.2439, 0.8502, 0.6545, 0.211, 0.8736, 0.7172, 0.2439, 0.8502, 0.6545, 0.2439, 0.8502, 0.6545, 0.211, 0.8736, 0.7172, 0.211, 0.8736, 0.7172, 0.2439, 0.8502, 0.6545, -0.0517, 0.8502, 0.7172, -0.0189, 0.8736, 0.6545, -0.0189, 0.8736, 0.6545, -0.0517, 0.8502, 0.7172, -0.0517, 0.8502, 0.7172, -0.0189, 0.8736, 0.6545, -0.0189, 0.8736, 0.7172, 0.014, 0.9815, 0.6545, 0.014, 0.9815, 0.6545, -0.0189, 0.8736, 0.7172, -0.0189, 0.8736, 0.7172, 0.014, 0.9815, 0.6545, 0.014, 0.9815, 0.7172, 0.0468, 1.1055, 0.6545, 0.0468, 1.1055, 0.6545, 0.014, 0.9815, 0.7172, 0.014, 0.9815, 0.7172, 0.0468, 1.1055, 0.6545, 0.0468, 1.1055, 0.7172, 0.0797, 1.1629, 0.6545, 0.0797, 1.1629, 0.6545, 0.0468, 1.1055, 0.7172, 0.0468, 1.1055, 0.7172, 0.0797, 1.1629, 0.6545, 0.0797, 1.1629, 0.7172, 0.1125, 1.1629, 0.6545, 0.1125, 1.1629, 0.6545, 0.0797, 1.1629, 0.7172, 0.0797, 1.1629, 0.7172, 0.1125, 1.1629, 0.6545, 0.1125, 1.1629, 0.7172, 0.1453, 1.1055, 0.6545, 0.1453, 1.1055, 0.6545, 0.1125, 1.1629, 0.7172, 0.1125, 1.1629, 0.7172, 0.1453, 1.1055, 0.6545, 0.1453, 1.1055, 0.7172, 0.1782, 0.9815, 0.6545, 0.1782, 0.9815, 0.6545, 0.1453, 1.1055, 0.7172, 0.1453, 1.1055, 0.7172, 0.1782, 0.9815, 0.6545, 0.1782, 0.9815, 0.7172, 0.211, 0.8736, 0.6545, 0.211, 0.8736, 0.6545, 0.1782, 0.9815, 0.7172, 0.1782, 0.9815, 0.7172, 0.211, 0.8736, 0.5918, -0.0517, 0.8502, 0.6545, -0.0189, 0.8736, 0.5918, -0.0189, 0.8736, 0.5918, -0.0517, 0.8502, 0.6545, -0.0517, 0.8502, 0.6545, -0.0189, 0.8736, 0.5918, -0.0189, 0.8736, 0.6545, 0.014, 0.9815, 0.5918, 0.014, 0.9815, 0.5918, -0.0189, 0.8736, 0.6545, -0.0189, 0.8736, 0.6545, 0.014, 0.9815, 0.5918, 0.014, 0.9815, 0.6545, 0.0468, 1.1055, 0.5918, 0.0468, 1.1055, 0.5918, 0.014, 0.9815, 0.6545, 0.014, 0.9815, 0.6545, 0.0468, 1.1055, 0.5918, 0.0468, 1.1055, 0.6545, 0.0797, 1.1629, 0.5918, 0.0797, 1.1629, 0.5918, 0.0468, 1.1055, 0.6545, 0.0468, 1.1055, 0.6545, 0.0797, 1.1629, 0.5918, 0.0797, 1.1629, 0.6545, 0.1125, 1.1629, 0.5918, 0.1125, 1.1629, 0.5918, 0.0797, 1.1629, 0.6545, 0.0797, 1.1629, 0.6545, 0.1125, 1.1629, 0.5918, 0.1125, 1.1629, 0.6545, 0.1453, 1.1055, 0.5918, 0.1453, 1.1055, 0.5918, 0.1125, 1.1629, 0.6545, 0.1125, 1.1629, 0.6545, 0.1453, 1.1055, 0.5918, 0.1453, 1.1055, 0.6545, 0.1782, 0.9815, 0.5918, 0.1782, 0.9815, 0.5918, 0.1453, 1.1055, 0.6545, 0.1453, 1.1055, 0.6545, 0.1782, 0.9815, 0.5918, 0.1782, 0.9815, 0.6545, 0.211, 0.8736, 0.5918, 0.211, 0.8736, 0.5918, 0.1782, 0.9815, 0.6545, 0.1782, 0.9815, 0.6545, 0.211, 0.8736, 0.7172, -0.0517, 1.3349, 0.6545, -0.0189, 1.3349, 0.7172, -0.0189, 1.3349, 0.7172, -0.0517, 1.3349, 0.6545, -0.0517, 1.3349, 0.6545, -0.0189, 1.3349, 0.7172, -0.0189, 1.3349, 0.6545, 0.014, 1.3437, 0.7172, 0.014, 1.3437, 0.7172, -0.0189, 1.3349, 0.6545, -0.0189, 1.3349, 0.6545, 0.014, 1.3437, 0.7172, 0.014, 1.3437, 0.6545, 0.0468, 1.3671, 0.7172, 0.0468, 1.3671, 0.7172, 0.014, 1.3437, 0.6545, 0.014, 1.3437, 0.6545, 0.0468, 1.3671, 0.7172, 0.0468, 1.3671, 0.6545, 0.0797, 1.3792, 0.7172, 0.0797, 1.3792, 0.7172, 0.0468, 1.3671, 0.6545, 0.0468, 1.3671, 0.6545, 0.0797, 1.3792, 0.7172, 0.0797, 1.3792, 0.6545, 0.1125, 1.3792, 0.7172, 0.1125, 1.3792, 0.7172, 0.0797, 1.3792, 0.6545, 0.0797, 1.3792, 0.6545, 0.1125, 1.3792, 0.7172, 0.1125, 1.3792, 0.6545, 0.1453, 1.3671, 0.7172, 0.1453, 1.3671, 0.7172, 0.1125, 1.3792, 0.6545, 0.1125, 1.3792, 0.6545, 0.1453, 1.3671, 0.7172, 0.1453, 1.3671, 0.6545, 0.1782, 1.3437, 0.7172, 0.1782, 1.3437, 0.7172, 0.1453, 1.3671, 0.6545, 0.1453, 1.3671, 0.6545, 0.1782, 1.3437, 0.7172, 0.1782, 1.3437, 0.6545, 0.211, 1.3349, 0.7172, 0.211, 1.3349, 0.7172, 0.1782, 1.3437, 0.6545, 0.1782, 1.3437, 0.6545, 0.211, 1.3349, 0.7799, -0.0517, 1.2605, 0.7172, -0.0189, 1.3349, 0.7799, -0.0189, 1.261, 0.7799, -0.0517, 1.2605, 0.7172, -0.0517, 1.3349, 0.7172, -0.0189, 1.3349, 0.7799, -0.0189, 1.261, 0.7172, 0.014, 1.3437, 0.7799, 0.014, 1.2867, 0.7799, -0.0189, 1.261, 0.7172, -0.0189, 1.3349, 0.7172, 0.014, 1.3437, 0.7799, 0.014, 1.2867, 0.7172, 0.0468, 1.3671, 0.7799, 0.0468, 1.3284, 0.7799, 0.014, 1.2867, 0.7172, 0.014, 1.3437, 0.7172, 0.0468, 1.3671, 0.7799, 0.0468, 1.3284, 0.7172, 0.0797, 1.3792, 0.7799, 0.0797, 1.3472, 0.7799, 0.0468, 1.3284, 0.7172, 0.0468, 1.3671, 0.7172, 0.0797, 1.3792, 0.7799, 0.0797, 1.3472, 0.7172, 0.1125, 1.3792, 0.7799, 0.1125, 1.3472, 0.7799, 0.0797, 1.3472, 0.7172, 0.0797, 1.3792, 0.7172, 0.1125, 1.3792, 0.7799, 0.1125, 1.3472, 0.7172, 0.1453, 1.3671, 0.7799, 0.1453, 1.3284, 0.7799, 0.1125, 1.3472, 0.7172, 0.1125, 1.3792, 0.7172, 0.1453, 1.3671, 0.7799, 0.1453, 1.3284, 0.7172, 0.1782, 1.3437, 0.7799, 0.1782, 1.2867, 0.7799, 0.1453, 1.3284, 0.7172, 0.1453, 1.3671, 0.7172, 0.1782, 1.3437, 0.7799, 0.1782, 1.2867, 0.7172, 0.211, 1.3349, 0.7799, 0.211, 1.261, 0.7799, 0.1782, 1.2867, 0.7172, 0.1782, 1.3437, 0.7172, 0.211, 1.3349, 0.6545, -0.0517, 1.3349, 0.5918, -0.0189, 1.261, 0.6545, -0.0189, 1.3349, 0.6545, -0.0517, 1.3349, 0.5918, -0.0517, 1.2605, 0.5918, -0.0189, 1.261, 0.6545, -0.0189, 1.3349, 0.5918, 0.014, 1.2867, 0.6545, 0.014, 1.3437, 0.6545, -0.0189, 1.3349, 0.5918, -0.0189, 1.261, 0.5918, 0.014, 1.2867, 0.6545, 0.014, 1.3437, 0.5918, 0.0468, 1.3284, 0.6545, 0.0468, 1.3671, 0.6545, 0.014, 1.3437, 0.5918, 0.014, 1.2867, 0.5918, 0.0468, 1.3284, 0.6545, 0.0468, 1.3671, 0.5918, 0.0797, 1.3472, 0.6545, 0.0797, 1.3792, 0.6545, 0.0468, 1.3671, 0.5918, 0.0468, 1.3284, 0.5918, 0.0797, 1.3472, 0.6545, 0.0797, 1.3792, 0.5918, 0.1125, 1.3472, 0.6545, 0.1125, 1.3792, 0.6545, 0.0797, 1.3792, 0.5918, 0.0797, 1.3472, 0.5918, 0.1125, 1.3472, 0.6545, 0.1125, 1.3792, 0.5918, 0.1453, 1.3284, 0.6545, 0.1453, 1.3671, 0.6545, 0.1125, 1.3792, 0.5918, 0.1125, 1.3472, 0.5918, 0.1453, 1.3284, 0.6545, 0.1453, 1.3671, 0.5918, 0.1782, 1.2867, 0.6545, 0.1782, 1.3437, 0.6545, 0.1453, 1.3671, 0.5918, 0.1453, 1.3284, 0.5918, 0.1782, 1.2867, 0.6545, 0.1782, 1.3437, 0.5918, 0.211, 1.261, 0.6545, 0.211, 1.3349, 0.6545, 0.1782, 1.3437, 0.5918, 0.1782, 1.2867, 0.5918, 0.211, 1.261, 0.7799, -0.0517, 0.8502, 0.7799, -0.0189, 1.261, 0.7799, -0.0189, 0.8736, 0.7799, -0.0517, 0.8502, 0.7799, -0.0517, 1.2605, 0.7799, -0.0189, 1.261, 0.7799, -0.0189, 0.8736, 0.7799, 0.014, 1.2867, 0.7799, 0.014, 0.9815, 0.7799, -0.0189, 0.8736, 0.7799, -0.0189, 1.261, 0.7799, 0.014, 1.2867, 0.7799, 0.014, 0.9815, 0.7799, 0.0468, 1.3284, 0.7799, 0.0468, 1.1055, 0.7799, 0.014, 0.9815, 0.7799, 0.014, 1.2867, 0.7799, 0.0468, 1.3284, 0.7799, 0.0468, 1.1055, 0.7799, 0.0797, 1.3472, 0.7799, 0.0797, 1.1629, 0.7799, 0.0468, 1.1055, 0.7799, 0.0468, 1.3284, 0.7799, 0.0797, 1.3472, 0.7799, 0.0797, 1.1629, 0.7799, 0.1125, 1.3472, 0.7799, 0.1125, 1.1629, 0.7799, 0.0797, 1.1629, 0.7799, 0.0797, 1.3472, 0.7799, 0.1125, 1.3472, 0.7799, 0.1125, 1.1629, 0.7799, 0.1453, 1.3284, 0.7799, 0.1453, 1.1055, 0.7799, 0.1125, 1.1629, 0.7799, 0.1125, 1.3472, 0.7799, 0.1453, 1.3284, 0.7799, 0.1453, 1.1055, 0.7799, 0.1782, 1.2867, 0.7799, 0.1782, 0.9815, 0.7799, 0.1453, 1.1055, 0.7799, 0.1453, 1.3284, 0.7799, 0.1782, 1.2867, 0.7799, 0.1782, 0.9815, 0.7799, 0.211, 1.261, 0.7799, 0.211, 0.8736, 0.7799, 0.1782, 0.9815, 0.7799, 0.1782, 1.2867, 0.7799, 0.211, 1.261, 0.7172, -0.0517, 0.8502, 0.7799, -0.0189, 0.8736, 0.7172, -0.0189, 0.8736, 0.7172, -0.0517, 0.8502, 0.7799, -0.0517, 0.8502, 0.7799, -0.0189, 0.8736, 0.7172, -0.0189, 0.8736, 0.7799, 0.014, 0.9815, 0.7172, 0.014, 0.9815, 0.7172, -0.0189, 0.8736, 0.7799, -0.0189, 0.8736, 0.7799, 0.014, 0.9815, 0.7172, 0.014, 0.9815, 0.7799, 0.0468, 1.1055, 0.7172, 0.0468, 1.1055, 0.7172, 0.014, 0.9815, 0.7799, 0.014, 0.9815, 0.7799, 0.0468, 1.1055, 0.7172, 0.0468, 1.1055, 0.7799, 0.0797, 1.1629, 0.7172, 0.0797, 1.1629, 0.7172, 0.0468, 1.1055, 0.7799, 0.0468, 1.1055, 0.7799, 0.0797, 1.1629, 0.7172, 0.0797, 1.1629, 0.7799, 0.1125, 1.1629, 0.7172, 0.1125, 1.1629, 0.7172, 0.0797, 1.1629, 0.7799, 0.0797, 1.1629, 0.7799, 0.1125, 1.1629, 0.7172, 0.1125, 1.1629, 0.7799, 0.1453, 1.1055, 0.7172, 0.1453, 1.1055, 0.7172, 0.1125, 1.1629, 0.7799, 0.1125, 1.1629, 0.7799, 0.1453, 1.1055, 0.7172, 0.1453, 1.1055, 0.7799, 0.1782, 0.9815, 0.7172, 0.1782, 0.9815, 0.7172, 0.1453, 1.1055, 0.7799, 0.1453, 1.1055, 0.7799, 0.1782, 0.9815, 0.7172, 0.1782, 0.9815, 0.7799, 0.211, 0.8736, 0.7172, 0.211, 0.8736, 0.7172, 0.1782, 0.9815, 0.7799, 0.1782, 0.9815, 0.7799, 0.211, 0.8736, 0.5918, -0.0517, 1.2605, 0.5918, -0.0189, 0.8736, 0.5918, -0.0189, 1.261, 0.5918, -0.0517, 1.2605, 0.5918, -0.0517, 0.8502, 0.5918, -0.0189, 0.8736, 0.5918, -0.0189, 1.261, 0.5918, 0.014, 0.9815, 0.5918, 0.014, 1.2867, 0.5918, -0.0189, 1.261, 0.5918, -0.0189, 0.8736, 0.5918, 0.014, 0.9815, 0.5918, 0.014, 1.2867, 0.5918, 0.0468, 1.1055, 0.5918, 0.0468, 1.3284, 0.5918, 0.014, 1.2867, 0.5918, 0.014, 0.9815, 0.5918, 0.0468, 1.1055, 0.5918, 0.0468, 1.3284, 0.5918, 0.0797, 1.1629, 0.5918, 0.0797, 1.3472, 0.5918, 0.0468, 1.3284, 0.5918, 0.0468, 1.1055, 0.5918, 0.0797, 1.1629, 0.5918, 0.0797, 1.3472, 0.5918, 0.1125, 1.1629, 0.5918, 0.1125, 1.3472, 0.5918, 0.0797, 1.3472, 0.5918, 0.0797, 1.1629, 0.5918, 0.1125, 1.1629, 0.5918, 0.1125, 1.3472, 0.5918, 0.1453, 1.1055, 0.5918, 0.1453, 1.3284, 0.5918, 0.1125, 1.3472, 0.5918, 0.1125, 1.1629, 0.5918, 0.1453, 1.1055, 0.5918, 0.1453, 1.3284, 0.5918, 0.1782, 0.9815, 0.5918, 0.1782, 1.2867, 0.5918, 0.1453, 1.3284, 0.5918, 0.1453, 1.1055, 0.5918, 0.1782, 0.9815, 0.5918, 0.1782, 1.2867, 0.5918, 0.211, 0.8736, 0.5918, 0.211, 1.261, 0.5918, 0.1782, 1.2867, 0.5918, 0.1782, 0.9815, 0.5918, 0.211, 0.8736, 0.8629, 1, 1, 0.9053, -1, 0.9933, 0.8629, -1, 1, 0.8629, 1, 1, 0.9053, 1, 0.9933, 0.9053, -1, 0.9933, 0.9053, 1, 0.9933, 0.9435, -1, 0.9738, 0.9053, -1, 0.9933, 0.9053, 1, 0.9933, 0.9435, 1, 0.9738, 0.9435, -1, 0.9738, 0.9435, 1, 0.9738, 0.9738, -1, 0.9435, 0.9435, -1, 0.9738, 0.9435, 1, 0.9738, 0.9738, 1, 0.9435, 0.9738, -1, 0.9435, 0.9738, 1, 0.9435, 0.9933, -1, 0.9053, 0.9738, -1, 0.9435, 0.9738, 1, 0.9435, 0.9933, 1, 0.9053, 0.9933, -1, 0.9053, 0.9933, 1, 0.9053, 1, -1, 0.8629, 0.9933, -1, 0.9053, 0.9933, 1, 0.9053, 1, 1, 0.8629, 1, -1, 0.8629, -1, -1, 0.8027, -1, 1, -1, -1, 1, 0.8027, -1, -1, 0.8027, -1, -1, -1, -1, 1, -1, -0.8027, -1, 1, -0.8637, 1, 0.9903, -0.8027, 1, 1, -0.8027, -1, 1, -0.8637, -1, 0.9903, -0.8637, 1, 0.9903, -0.8637, -1, 0.9903, -0.9187, 1, 0.9623, -0.8637, 1, 0.9903, -0.8637, -1, 0.9903, -0.9187, -1, 0.9623, -0.9187, 1, 0.9623, -0.9187, -1, 0.9623, -0.9623, 1, 0.9187, -0.9187, 1, 0.9623, -0.9187, -1, 0.9623, -0.9623, -1, 0.9187, -0.9623, 1, 0.9187, -0.9623, -1, 0.9187, -0.9903, 1, 0.8637, -0.9623, 1, 0.9187, -0.9623, -1, 0.9187, -0.9903, -1, 0.8637, -0.9903, 1, 0.8637, -0.9903, -1, 0.8637, -1, 1, 0.8027, -0.9903, 1, 0.8637, -0.9903, -1, 0.8637, -1, -1, 0.8027, -1, 1, 0.8027, -1, -1, 0.8027, 1, -1, -1, -1, -1, -1, 1, -1, -1, 0.9933, -1, 0.9053, 1, -1, 0.8629, 0.9933, -1, 0.9053, 0.9435, -1, 0.9738, 0.9738, -1, 0.9435, 0.9435, -1, 0.9738, 0.8629, -1, 1, 0.9053, -1, 0.9933, 0.8629, -1, 1, -0.8637, -1, 0.9903, -0.8027, -1, 1, -0.8637, -1, 0.9903, -0.9623, -1, 0.9187, -0.9187, -1, 0.9623, -0.9623, -1, 0.9187, -1, -1, 0.8027, -0.9903, -1, 0.8637, -1, -1, 0.8027, 0.9933, -1, 0.9053, 1, -1, -1, 0.9933, -1, 0.9053, 0.8629, -1, 1, 0.9435, -1, 0.9738, 0.8629, -1, 1, -0.9623, -1, 0.9187, -0.8637, -1, 0.9903, -0.9623, -1, 0.9187, 0.9933, -1, 0.9053, -1, -1, 0.8027, 0.9933, -1, 0.9053, -0.9623, -1, 0.9187, 0.8629, -1, 1, 0.8107, -1.1202, -0.8719, 0.9123, -0.9587, -0.8299, 0.8107, -0.9587, -0.8719, 0.8107, -1.1202, -0.8719, 0.9123, -1.1202, -0.8299, 0.9123, -0.9587, -0.8299, 0.9123, -1.1202, -0.8299, 0.9544, -0.9587, -0.7283, 0.9123, -0.9587, -0.8299, 0.9123, -1.1202, -0.8299, 0.9544, -1.1202, -0.7283, 0.9544, -0.9587, -0.7283, 0.9544, -1.1202, -0.7283, 0.9123, -0.9587, -0.6267, 0.9544, -0.9587, -0.7283, 0.9544, -1.1202, -0.7283, 0.9123, -1.1202, -0.6267, 0.9123, -0.9587, -0.6267, 0.9123, -1.1202, -0.6267, 0.8107, -0.9587, -0.5847, 0.9123, -0.9587, -0.6267, 0.9123, -1.1202, -0.6267, 0.8107, -1.1202, -0.5847, 0.8107, -0.9587, -0.5847, 0.8107, -1.1202, -0.5847, 0.7091, -0.9587, -0.6267, 0.8107, -0.9587, -0.5847, 0.8107, -1.1202, -0.5847, 0.7091, -1.1202, -0.6267, 0.7091, -0.9587, -0.6267, 0.7091, -1.1202, -0.6267, 0.6671, -0.9587, -0.7283, 0.7091, -0.9587, -0.6267, 0.7091, -1.1202, -0.6267, 0.6671, -1.1202, -0.7283, 0.6671, -0.9587, -0.7283, 0.9544, -0.9587, -0.7283, 0.8107, -0.9587, -0.8719, 0.9123, -0.9587, -0.8299, 0.8107, -0.9587, -0.8719, 0.6671, -0.9587, -0.7283, 0.7091, -0.9587, -0.8299, 0.6671, -0.9587, -0.7283, 0.8107, -0.9587, -0.5847, 0.7091, -0.9587, -0.6267, 0.8107, -0.9587, -0.5847, 0.9544, -0.9587, -0.7283, 0.9123, -0.9587, -0.6267, 0.9544, -0.9587, -0.7283, 0.6671, -0.9587, -0.7283, 0.8107, -0.9587, -0.8719, 0.6671, -0.9587, -0.7283, 0.9544, -0.9587, -0.7283, 0.8107, -0.9587, -0.5847, 0.6671, -1.1202, -0.7283, 0.7091, -0.9587, -0.8299, 0.6671, -0.9587, -0.7283, 0.6671, -1.1202, -0.7283, 0.7091, -1.1202, -0.8299, 0.7091, -0.9587, -0.8299, 0.7091, -1.1202, -0.8299, 0.8107, -0.9587, -0.8719, 0.7091, -0.9587, -0.8299, 0.7091, -1.1202, -0.8299, 0.8107, -1.1202, -0.8719, 0.8107, -0.9587, -0.8719, 0.7091, -1.1202, -0.8299, 0.9123, -1.1202, -0.8299, 0.8107, -1.1202, -0.8719, 0.9123, -1.1202, -0.8299, 0.9123, -1.1202, -0.6267, 0.9544, -1.1202, -0.7283, 0.9123, -1.1202, -0.6267, 0.7091, -1.1202, -0.6267, 0.8107, -1.1202, -0.5847, 0.7091, -1.1202, -0.6267, 0.7091, -1.1202, -0.8299, 0.6671, -1.1202, -0.7283, 0.7091, -1.1202, -0.8299, 0.9123, -1.1202, -0.6267, 0.9123, -1.1202, -0.8299, 0.9123, -1.1202, -0.6267, 0.7091, -1.1202, -0.8299, 0.7091, -1.1202, -0.6267, -0.8107, -1.1202, -0.872, -0.9123, -0.9587, -0.8299, -0.9123, -1.1202, -0.8299, -0.8107, -1.1202, -0.872, -0.8107, -0.9587, -0.872, -0.9123, -0.9587, -0.8299, -0.9123, -1.1202, -0.8299, -0.9544, -0.9587, -0.7283, -0.9544, -1.1202, -0.7283, -0.9123, -1.1202, -0.8299, -0.9123, -0.9587, -0.8299, -0.9544, -0.9587, -0.7283, -0.9544, -1.1202, -0.7283, -0.9123, -0.9587, -0.6267, -0.9123, -1.1202, -0.6267, -0.9544, -1.1202, -0.7283, -0.9544, -0.9587, -0.7283, -0.9123, -0.9587, -0.6267, -0.9123, -1.1202, -0.6267, -0.8107, -0.9587, -0.5847, -0.8107, -1.1202, -0.5847, -0.9123, -1.1202, -0.6267, -0.9123, -0.9587, -0.6267, -0.8107, -0.9587, -0.5847, -0.8107, -1.1202, -0.5847, -0.7091, -0.9587, -0.6267, -0.7091, -1.1202, -0.6267, -0.8107, -1.1202, -0.5847, -0.8107, -0.9587, -0.5847, -0.7091, -0.9587, -0.6267, -0.7091, -1.1202, -0.6267, -0.6671, -0.9587, -0.7283, -0.6671, -1.1202, -0.7283, -0.7091, -1.1202, -0.6267, -0.7091, -0.9587, -0.6267, -0.6671, -0.9587, -0.7283, -0.8107, -0.9587, -0.872, -0.9544, -0.9587, -0.7283, -0.9123, -0.9587, -0.8299, -0.9544, -0.9587, -0.7283, -0.8107, -0.9587, -0.5847, -0.9123, -0.9587, -0.6267, -0.8107, -0.9587, -0.5847, -0.6671, -0.9587, -0.7283, -0.7091, -0.9587, -0.6267, -0.6671, -0.9587, -0.7283, -0.8107, -0.9587, -0.872, -0.7091, -0.9587, -0.8299, -0.8107, -0.9587, -0.872, -0.8107, -0.9587, -0.5847, -0.9544, -0.9587, -0.7283, -0.8107, -0.9587, -0.5847, -0.8107, -0.9587, -0.872, -0.6671, -0.9587, -0.7283, -0.6671, -1.1202, -0.7283, -0.7091, -0.9587, -0.8299, -0.7091, -1.1202, -0.8299, -0.6671, -1.1202, -0.7283, -0.6671, -0.9587, -0.7283, -0.7091, -0.9587, -0.8299, -0.7091, -1.1202, -0.8299, -0.8107, -0.9587, -0.872, -0.8107, -1.1202, -0.872, -0.7091, -1.1202, -0.8299, -0.7091, -0.9587, -0.8299, -0.8107, -0.9587, -0.872, -0.9123, -1.1202, -0.8299, -0.7091, -1.1202, -0.8299, -0.8107, -1.1202, -0.872, -0.7091, -1.1202, -0.8299, -0.7091, -1.1202, -0.6267, -0.6671, -1.1202, -0.7283, -0.7091, -1.1202, -0.6267, -0.9123, -1.1202, -0.6267, -0.8107, -1.1202, -0.5847, -0.9123, -1.1202, -0.6267, -0.9123, -1.1202, -0.8299, -0.9544, -1.1202, -0.7283, -0.9123, -1.1202, -0.8299, -0.7091, -1.1202, -0.6267, -0.7091, -1.1202, -0.8299, -0.7091, -1.1202, -0.6267, -0.9123, -1.1202, -0.8299, -0.9123, -1.1202, -0.6267, 0.8107, -1.1202, 0.872, 0.9123, -0.9587, 0.8299, 0.9123, -1.1202, 0.8299, 0.8107, -1.1202, 0.872, 0.8107, -0.9587, 0.872, 0.9123, -0.9587, 0.8299, 0.9123, -1.1202, 0.8299, 0.9544, -0.9587, 0.7283, 0.9544, -1.1202, 0.7283, 0.9123, -1.1202, 0.8299, 0.9123, -0.9587, 0.8299, 0.9544, -0.9587, 0.7283, 0.9544, -1.1202, 0.7283, 0.9123, -0.9587, 0.6267, 0.9123, -1.1202, 0.6267, 0.9544, -1.1202, 0.7283, 0.9544, -0.9587, 0.7283, 0.9123, -0.9587, 0.6267, 0.9123, -1.1202, 0.6267, 0.8107, -0.9587, 0.5847, 0.8107, -1.1202, 0.5847, 0.9123, -1.1202, 0.6267, 0.9123, -0.9587, 0.6267, 0.8107, -0.9587, 0.5847, 0.8107, -1.1202, 0.5847, 0.7091, -0.9587, 0.6267, 0.7091, -1.1202, 0.6267, 0.8107, -1.1202, 0.5847, 0.8107, -0.9587, 0.5847, 0.7091, -0.9587, 0.6267, 0.7091, -1.1202, 0.6267, 0.6671, -0.9587, 0.7283, 0.6671, -1.1202, 0.7283, 0.7091, -1.1202, 0.6267, 0.7091, -0.9587, 0.6267, 0.6671, -0.9587, 0.7283, 0.8107, -0.9587, 0.872, 0.9544, -0.9587, 0.7283, 0.9123, -0.9587, 0.8299, 0.9544, -0.9587, 0.7283, 0.8107, -0.9587, 0.5847, 0.9123, -0.9587, 0.6267, 0.8107, -0.9587, 0.5847, 0.6671, -0.9587, 0.7283, 0.7091, -0.9587, 0.6267, 0.6671, -0.9587, 0.7283, 0.8107, -0.9587, 0.872, 0.7091, -0.9587, 0.8299, 0.8107, -0.9587, 0.872, 0.8107, -0.9587, 0.5847, 0.9544, -0.9587, 0.7283, 0.8107, -0.9587, 0.5847, 0.8107, -0.9587, 0.872, 0.6671, -0.9587, 0.7283, 0.6671, -1.1202, 0.7283, 0.7091, -0.9587, 0.8299, 0.7091, -1.1202, 0.8299, 0.6671, -1.1202, 0.7283, 0.6671, -0.9587, 0.7283, 0.7091, -0.9587, 0.8299, 0.7091, -1.1202, 0.8299, 0.8107, -0.9587, 0.872, 0.8107, -1.1202, 0.872, 0.7091, -1.1202, 0.8299, 0.7091, -0.9587, 0.8299, 0.8107, -0.9587, 0.872, 0.9123, -1.1202, 0.8299, 0.7091, -1.1202, 0.8299, 0.8107, -1.1202, 0.872, 0.7091, -1.1202, 0.8299, 0.7091, -1.1202, 0.6267, 0.6671, -1.1202, 0.7283, 0.7091, -1.1202, 0.6267, 0.9123, -1.1202, 0.6267, 0.8107, -1.1202, 0.5847, 0.9123, -1.1202, 0.6267, 0.9123, -1.1202, 0.8299, 0.9544, -1.1202, 0.7283, 0.9123, -1.1202, 0.8299, 0.7091, -1.1202, 0.6267, 0.7091, -1.1202, 0.8299, 0.7091, -1.1202, 0.6267, 0.9123, -1.1202, 0.8299, 0.9123, -1.1202, 0.6267, -0.8107, -1.1202, 0.872, -0.9123, -0.9587, 0.8299, -0.8107, -0.9587, 0.872, -0.8107, -1.1202, 0.872, -0.9123, -1.1202, 0.8299, -0.9123, -0.9587, 0.8299, -0.9123, -1.1202, 0.8299, -0.9544, -0.9587, 0.7283, -0.9123, -0.9587, 0.8299, -0.9123, -1.1202, 0.8299, -0.9544, -1.1202, 0.7283, -0.9544, -0.9587, 0.7283, -0.9544, -1.1202, 0.7283, -0.9123, -0.9587, 0.6267, -0.9544, -0.9587, 0.7283, -0.9544, -1.1202, 0.7283, -0.9123, -1.1202, 0.6267, -0.9123, -0.9587, 0.6267, -0.9123, -1.1202, 0.6267, -0.8107, -0.9587, 0.5847, -0.9123, -0.9587, 0.6267, -0.9123, -1.1202, 0.6267, -0.8107, -1.1202, 0.5847, -0.8107, -0.9587, 0.5847, -0.8107, -1.1202, 0.5847, -0.7091, -0.9587, 0.6267, -0.8107, -0.9587, 0.5847, -0.8107, -1.1202, 0.5847, -0.7091, -1.1202, 0.6267, -0.7091, -0.9587, 0.6267, -0.7091, -1.1202, 0.6267, -0.6671, -0.9587, 0.7283, -0.7091, -0.9587, 0.6267, -0.7091, -1.1202, 0.6267, -0.6671, -1.1202, 0.7283, -0.6671, -0.9587, 0.7283, -0.9544, -0.9587, 0.7283, -0.8107, -0.9587, 0.872, -0.9123, -0.9587, 0.8299, -0.8107, -0.9587, 0.872, -0.6671, -0.9587, 0.7283, -0.7091, -0.9587, 0.8299, -0.6671, -0.9587, 0.7283, -0.8107, -0.9587, 0.5847, -0.7091, -0.9587, 0.6267, -0.8107, -0.9587, 0.5847, -0.9544, -0.9587, 0.7283, -0.9123, -0.9587, 0.6267, -0.9544, -0.9587, 0.7283, -0.6671, -0.9587, 0.7283, -0.8107, -0.9587, 0.872, -0.6671, -0.9587, 0.7283, -0.9544, -0.9587, 0.7283, -0.8107, -0.9587, 0.5847, -0.6671, -1.1202, 0.7283, -0.7091, -0.9587, 0.8299, -0.6671, -0.9587, 0.7283, -0.6671, -1.1202, 0.7283, -0.7091, -1.1202, 0.8299, -0.7091, -0.9587, 0.8299, -0.7091, -1.1202, 0.8299, -0.8107, -0.9587, 0.872, -0.7091, -0.9587, 0.8299, -0.7091, -1.1202, 0.8299, -0.8107, -1.1202, 0.872, -0.8107, -0.9587, 0.872, -0.7091, -1.1202, 0.8299, -0.9123, -1.1202, 0.8299, -0.8107, -1.1202, 0.872, -0.9123, -1.1202, 0.8299, -0.9123, -1.1202, 0.6267, -0.9544, -1.1202, 0.7283, -0.9123, -1.1202, 0.6267, -0.7091, -1.1202, 0.6267, -0.8107, -1.1202, 0.5847, -0.7091, -1.1202, 0.6267, -0.7091, -1.1202, 0.8299, -0.6671, -1.1202, 0.7283, -0.7091, -1.1202, 0.8299, -0.9123, -1.1202, 0.6267, -0.9123, -1.1202, 0.8299, -0.9123, -1.1202, 0.6267, -0.7091, -1.1202, 0.8299, -0.7091, -1.1202, 0.6267 ) -[sub_resource type="ConcavePolygonShape" id=4] -data = PoolVector3Array( -1, -1, 1, -1, 1, -0.382, -1, 1, 1, -1, -1, 1, -1, -1, -0.382, -1, 1, -0.382, -1, -1, -0.382, 1, 1, -0.382, -1, 1, -0.382, -1, -1, -0.382, 1, -1, -0.382, 1, 1, -0.382, 1, -1, -0.382, 1, 1, 1, 1, 1, -0.382, 1, -1, -0.382, 1, -1, 1, 1, 1, 1, 1, -1, 1, -1, 1, 1, 1, 1, 1, 1, -1, 1, -1, -1, 1, -1, 1, 1, -1, -1, -0.382, 1, -1, 1, 1, -1, -0.382, -1, -1, -0.382, -1, -1, 1, 1, -1, 1, 1, 1, -0.382, -1, 1, 1, -1, 1, -0.382, 1, 1, -0.382, 1, 1, 1, -1, 1, 1, -1, -11.0982, 1, -1, -9.0982, -0.382, -1, -9.0982, 1, -1, -11.0982, 1, -1, -11.0982, -0.382, -1, -9.0982, -0.382, -1, -11.0982, -0.382, 1, -9.0982, -0.382, -1, -9.0982, -0.382, -1, -11.0982, -0.382, 1, -11.0982, -0.382, 1, -9.0982, -0.382, 1, -11.0982, -0.382, 1, -9.0982, 1, 1, -9.0982, -0.382, 1, -11.0982, -0.382, 1, -11.0982, 1, 1, -9.0982, 1, 1, -11.0982, 1, -1, -9.0982, 1, 1, -9.0982, 1, 1, -11.0982, 1, -1, -11.0982, 1, -1, -9.0982, 1, -1, -11.0982, -0.382, 1, -11.0982, 1, 1, -11.0982, -0.382, -1, -11.0982, -0.382, -1, -11.0982, 1, 1, -11.0982, 1, 1, -9.0982, -0.382, -1, -9.0982, 1, -1, -9.0982, -0.382, 1, -9.0982, -0.382, 1, -9.0982, 1, -1, -9.0982, 1, -1, 8.9908, 1, -1, 10.9908, -0.382, -1, 10.9908, 1, -1, 8.9908, 1, -1, 8.9908, -0.382, -1, 10.9908, -0.382, -1, 8.9908, -0.382, 1, 10.9908, -0.382, -1, 10.9908, -0.382, -1, 8.9908, -0.382, 1, 8.9908, -0.382, 1, 10.9908, -0.382, 1, 8.9908, -0.382, 1, 10.9908, 1, 1, 10.9908, -0.382, 1, 8.9908, -0.382, 1, 8.9908, 1, 1, 10.9908, 1, 1, 8.9908, 1, -1, 10.9908, 1, 1, 10.9908, 1, 1, 8.9908, 1, -1, 8.9908, 1, -1, 10.9908, 1, -1, 8.9908, -0.382, 1, 8.9908, 1, 1, 8.9908, -0.382, -1, 8.9908, -0.382, -1, 8.9908, 1, 1, 8.9908, 1, 1, 10.9908, -0.382, -1, 10.9908, 1, -1, 10.9908, -0.382, 1, 10.9908, -0.382, 1, 10.9908, 1, -1, 10.9908, 1, -1, 17.8548, 1, -1, 19.8548, -0.382, -1, 19.8548, 1, -1, 17.8548, 1, -1, 17.8548, -0.382, -1, 19.8548, -0.382, -1, 17.8548, -0.382, 1, 19.8548, -0.382, -1, 19.8548, -0.382, -1, 17.8548, -0.382, 1, 17.8548, -0.382, 1, 19.8548, -0.382, 1, 17.8548, -0.382, 1, 19.8548, 1, 1, 19.8548, -0.382, 1, 17.8548, -0.382, 1, 17.8548, 1, 1, 19.8548, 1, 1, 17.8548, 1, -1, 19.8548, 1, 1, 19.8548, 1, 1, 17.8548, 1, -1, 17.8548, 1, -1, 19.8548, 1, -1, 17.8548, -0.382, 1, 17.8548, 1, 1, 17.8548, -0.382, -1, 17.8548, -0.382, -1, 17.8548, 1, 1, 17.8548, 1, 1, 19.8548, -0.382, -1, 19.8548, 1, -1, 19.8548, -0.382, 1, 19.8548, -0.382, 1, 19.8548, 1, -1, 19.8548, 1, -1.057, -27.2744, 1.176, -1.057, 30.9186, -1.0364, -1.057, 30.9186, 1.176, -1.057, -27.2744, 1.176, -1.057, -27.2744, -1.0364, -1.057, 30.9186, -1.0364, -0.6005, -15.2253, 2.0569, 0.6182, 18.8695, 2.0569, -0.6005, 18.8695, 2.0569, -0.6005, -15.2253, 2.0569, 0.6182, -15.2253, 2.0569, 0.6182, 18.8695, 2.0569, 1.0748, -27.2744, -1.0364, 1.0748, 30.9186, 1.176, 1.0748, 30.9186, -1.0364, 1.0748, -27.2744, -1.0364, 1.0748, -27.2744, 1.176, 1.0748, 30.9186, 1.176, 1.0748, -27.2744, 1.176, -1.057, 30.9186, 1.176, 1.0748, 30.9186, 1.176, 1.0748, -27.2744, 1.176, -1.057, -27.2744, 1.176, -1.057, 30.9186, 1.176, -1.057, -27.2744, -1.0364, 1.0748, -27.2744, 1.176, 1.0748, -27.2744, -1.0364, -1.057, -27.2744, -1.0364, -1.057, -27.2744, 1.176, 1.0748, -27.2744, 1.176, 1.0748, 30.9186, -1.0364, -1.057, 30.9186, 1.176, -1.057, 30.9186, -1.0364, 1.0748, 30.9186, -1.0364, 1.0748, 30.9186, 1.176, -1.057, 30.9186, 1.176, -0.6005, 18.8695, 2.0569, -1.057, -27.2744, -1.0364, -0.6005, -15.2253, 2.0569, -0.6005, 18.8695, 2.0569, -1.057, 30.9186, -1.0364, -1.057, -27.2744, -1.0364, -0.6005, -15.2253, 2.0569, 1.0748, -27.2744, -1.0364, 0.6182, -15.2253, 2.0569, -0.6005, -15.2253, 2.0569, -1.057, -27.2744, -1.0364, 1.0748, -27.2744, -1.0364, 0.6182, 18.8695, 2.0569, -1.057, 30.9186, -1.0364, -0.6005, 18.8695, 2.0569, 0.6182, 18.8695, 2.0569, 1.0748, 30.9186, -1.0364, -1.057, 30.9186, -1.0364, 0.6182, -15.2253, 2.0569, 1.0748, 30.9186, -1.0364, 0.6182, 18.8695, 2.0569, 0.6182, -15.2253, 2.0569, 1.0748, -27.2744, -1.0364, 1.0748, 30.9186, -1.0364, -0.6292, 34.2349, -0.8947, -0.5887, 30.8681, -0.8482, -0.5887, 34.2349, -0.8482, -0.6292, 34.2349, -0.8947, -0.6292, 30.8681, -0.8947, -0.5887, 30.8681, -0.8482, -0.5887, 34.2349, -0.8482, -0.572, 30.8681, -0.7358, -0.572, 34.2349, -0.7358, -0.5887, 34.2349, -0.8482, -0.5887, 30.8681, -0.8482, -0.572, 30.8681, -0.7358, -0.572, 34.2349, -0.7358, -0.5887, 30.8681, -0.6235, -0.5887, 34.2349, -0.6235, -0.572, 34.2349, -0.7358, -0.572, 30.8681, -0.7358, -0.5887, 30.8681, -0.6235, -0.5887, 34.2349, -0.6235, -0.6292, 30.8681, -0.577, -0.6292, 34.2349, -0.577, -0.5887, 34.2349, -0.6235, -0.5887, 30.8681, -0.6235, -0.6292, 30.8681, -0.577, -0.6292, 34.2349, -0.577, -0.6697, 30.8681, -0.6235, -0.6697, 34.2349, -0.6235, -0.6292, 34.2349, -0.577, -0.6292, 30.8681, -0.577, -0.6697, 30.8681, -0.6235, -0.6697, 34.2349, -0.6235, -0.6865, 30.8681, -0.7358, -0.6865, 34.2349, -0.7358, -0.6697, 34.2349, -0.6235, -0.6697, 30.8681, -0.6235, -0.6865, 30.8681, -0.7358, -0.6292, 30.8681, -0.8947, -0.572, 30.8681, -0.7358, -0.5887, 30.8681, -0.8482, -0.572, 30.8681, -0.7358, -0.6292, 30.8681, -0.577, -0.5887, 30.8681, -0.6235, -0.6292, 30.8681, -0.577, -0.6865, 30.8681, -0.7358, -0.6697, 30.8681, -0.6235, -0.6865, 30.8681, -0.7358, -0.6292, 30.8681, -0.8947, -0.6697, 30.8681, -0.8482, -0.6292, 30.8681, -0.8947, -0.6292, 30.8681, -0.577, -0.572, 30.8681, -0.7358, -0.6292, 30.8681, -0.577, -0.6292, 30.8681, -0.8947, -0.6865, 30.8681, -0.7358, -0.6865, 34.2349, -0.7358, -0.6697, 30.8681, -0.8482, -0.6697, 34.2349, -0.8482, -0.6865, 34.2349, -0.7358, -0.6865, 30.8681, -0.7358, -0.6697, 30.8681, -0.8482, -0.6697, 34.2349, -0.8482, -0.6292, 30.8681, -0.8947, -0.6292, 34.2349, -0.8947, -0.6697, 34.2349, -0.8482, -0.6697, 30.8681, -0.8482, -0.6292, 30.8681, -0.8947, -0.5887, 34.2349, -0.8482, -0.6697, 34.2349, -0.8482, -0.6292, 34.2349, -0.8947, -0.6697, 34.2349, -0.8482, -0.6697, 34.2349, -0.6235, -0.6865, 34.2349, -0.7358, -0.6697, 34.2349, -0.6235, -0.5887, 34.2349, -0.6235, -0.6292, 34.2349, -0.577, -0.5887, 34.2349, -0.6235, -0.5887, 34.2349, -0.8482, -0.572, 34.2349, -0.7358, -0.5887, 34.2349, -0.8482, -0.6697, 34.2349, -0.6235, -0.6697, 34.2349, -0.8482, -0.6697, 34.2349, -0.6235, -0.5887, 34.2349, -0.8482, -0.5887, 34.2349, -0.6235, 0.647, 34.2349, -0.8947, 0.6065, 30.8681, -0.8482, 0.647, 30.8681, -0.8947, 0.647, 34.2349, -0.8947, 0.6065, 34.2349, -0.8482, 0.6065, 30.8681, -0.8482, 0.6065, 34.2349, -0.8482, 0.5898, 30.8681, -0.7358, 0.6065, 30.8681, -0.8482, 0.6065, 34.2349, -0.8482, 0.5898, 34.2349, -0.7358, 0.5898, 30.8681, -0.7358, 0.5898, 34.2349, -0.7358, 0.6065, 30.8681, -0.6235, 0.5898, 30.8681, -0.7358, 0.5898, 34.2349, -0.7358, 0.6065, 34.2349, -0.6235, 0.6065, 30.8681, -0.6235, 0.6065, 34.2349, -0.6235, 0.647, 30.8681, -0.577, 0.6065, 30.8681, -0.6235, 0.6065, 34.2349, -0.6235, 0.647, 34.2349, -0.577, 0.647, 30.8681, -0.577, 0.647, 34.2349, -0.577, 0.6875, 30.8681, -0.6235, 0.647, 30.8681, -0.577, 0.647, 34.2349, -0.577, 0.6875, 34.2349, -0.6235, 0.6875, 30.8681, -0.6235, 0.6875, 34.2349, -0.6235, 0.7043, 30.8681, -0.7358, 0.6875, 30.8681, -0.6235, 0.6875, 34.2349, -0.6235, 0.7043, 34.2349, -0.7358, 0.7043, 30.8681, -0.7358, 0.5898, 30.8681, -0.7358, 0.647, 30.8681, -0.8947, 0.6065, 30.8681, -0.8482, 0.647, 30.8681, -0.8947, 0.7043, 30.8681, -0.7358, 0.6875, 30.8681, -0.8482, 0.7043, 30.8681, -0.7358, 0.647, 30.8681, -0.577, 0.6875, 30.8681, -0.6235, 0.647, 30.8681, -0.577, 0.5898, 30.8681, -0.7358, 0.6065, 30.8681, -0.6235, 0.5898, 30.8681, -0.7358, 0.7043, 30.8681, -0.7358, 0.647, 30.8681, -0.8947, 0.7043, 30.8681, -0.7358, 0.5898, 30.8681, -0.7358, 0.647, 30.8681, -0.577, 0.7043, 34.2349, -0.7358, 0.6875, 30.8681, -0.8482, 0.7043, 30.8681, -0.7358, 0.7043, 34.2349, -0.7358, 0.6875, 34.2349, -0.8482, 0.6875, 30.8681, -0.8482, 0.6875, 34.2349, -0.8482, 0.647, 30.8681, -0.8947, 0.6875, 30.8681, -0.8482, 0.6875, 34.2349, -0.8482, 0.647, 34.2349, -0.8947, 0.647, 30.8681, -0.8947, 0.6875, 34.2349, -0.8482, 0.6065, 34.2349, -0.8482, 0.647, 34.2349, -0.8947, 0.6065, 34.2349, -0.8482, 0.6065, 34.2349, -0.6235, 0.5898, 34.2349, -0.7358, 0.6065, 34.2349, -0.6235, 0.6875, 34.2349, -0.6235, 0.647, 34.2349, -0.577, 0.6875, 34.2349, -0.6235, 0.6875, 34.2349, -0.8482, 0.7043, 34.2349, -0.7358, 0.6875, 34.2349, -0.8482, 0.6065, 34.2349, -0.6235, 0.6065, 34.2349, -0.8482, 0.6065, 34.2349, -0.6235, 0.6875, 34.2349, -0.8482, 0.6875, 34.2349, -0.6235, -0.6292, 34.2349, 1.0343, -0.5887, 30.8681, 0.9878, -0.6292, 30.8681, 1.0343, -0.6292, 34.2349, 1.0343, -0.5887, 34.2349, 0.9878, -0.5887, 30.8681, 0.9878, -0.5887, 34.2349, 0.9878, -0.572, 30.8681, 0.8754, -0.5887, 30.8681, 0.9878, -0.5887, 34.2349, 0.9878, -0.572, 34.2349, 0.8754, -0.572, 30.8681, 0.8754, -0.572, 34.2349, 0.8754, -0.5887, 30.8681, 0.7631, -0.572, 30.8681, 0.8754, -0.572, 34.2349, 0.8754, -0.5887, 34.2349, 0.7631, -0.5887, 30.8681, 0.7631, -0.5887, 34.2349, 0.7631, -0.6292, 30.8681, 0.7165, -0.5887, 30.8681, 0.7631, -0.5887, 34.2349, 0.7631, -0.6292, 34.2349, 0.7165, -0.6292, 30.8681, 0.7165, -0.6292, 34.2349, 0.7165, -0.6697, 30.8681, 0.7631, -0.6292, 30.8681, 0.7165, -0.6292, 34.2349, 0.7165, -0.6697, 34.2349, 0.7631, -0.6697, 30.8681, 0.7631, -0.6697, 34.2349, 0.7631, -0.6865, 30.8681, 0.8754, -0.6697, 30.8681, 0.7631, -0.6697, 34.2349, 0.7631, -0.6865, 34.2349, 0.8754, -0.6865, 30.8681, 0.8754, -0.572, 30.8681, 0.8754, -0.6292, 30.8681, 1.0343, -0.5887, 30.8681, 0.9878, -0.6292, 30.8681, 1.0343, -0.6865, 30.8681, 0.8754, -0.6697, 30.8681, 0.9878, -0.6865, 30.8681, 0.8754, -0.6292, 30.8681, 0.7165, -0.6697, 30.8681, 0.7631, -0.6292, 30.8681, 0.7165, -0.572, 30.8681, 0.8754, -0.5887, 30.8681, 0.7631, -0.572, 30.8681, 0.8754, -0.6865, 30.8681, 0.8754, -0.6292, 30.8681, 1.0343, -0.6865, 30.8681, 0.8754, -0.572, 30.8681, 0.8754, -0.6292, 30.8681, 0.7165, -0.6865, 34.2349, 0.8754, -0.6697, 30.8681, 0.9878, -0.6865, 30.8681, 0.8754, -0.6865, 34.2349, 0.8754, -0.6697, 34.2349, 0.9878, -0.6697, 30.8681, 0.9878, -0.6697, 34.2349, 0.9878, -0.6292, 30.8681, 1.0343, -0.6697, 30.8681, 0.9878, -0.6697, 34.2349, 0.9878, -0.6292, 34.2349, 1.0343, -0.6292, 30.8681, 1.0343, -0.6697, 34.2349, 0.9878, -0.5887, 34.2349, 0.9878, -0.6292, 34.2349, 1.0343, -0.5887, 34.2349, 0.9878, -0.5887, 34.2349, 0.7631, -0.572, 34.2349, 0.8754, -0.5887, 34.2349, 0.7631, -0.6697, 34.2349, 0.7631, -0.6292, 34.2349, 0.7165, -0.6697, 34.2349, 0.7631, -0.6697, 34.2349, 0.9878, -0.6865, 34.2349, 0.8754, -0.6697, 34.2349, 0.9878, -0.5887, 34.2349, 0.7631, -0.5887, 34.2349, 0.9878, -0.5887, 34.2349, 0.7631, -0.6697, 34.2349, 0.9878, -0.6697, 34.2349, 0.7631, 0.647, 34.2349, 1.0343, 0.6065, 30.8681, 0.9878, 0.6065, 34.2349, 0.9878, 0.647, 34.2349, 1.0343, 0.647, 30.8681, 1.0343, 0.6065, 30.8681, 0.9878, 0.6065, 34.2349, 0.9878, 0.5898, 30.8681, 0.8754, 0.5898, 34.2349, 0.8754, 0.6065, 34.2349, 0.9878, 0.6065, 30.8681, 0.9878, 0.5898, 30.8681, 0.8754, 0.5898, 34.2349, 0.8754, 0.6065, 30.8681, 0.7631, 0.6065, 34.2349, 0.7631, 0.5898, 34.2349, 0.8754, 0.5898, 30.8681, 0.8754, 0.6065, 30.8681, 0.7631, 0.6065, 34.2349, 0.7631, 0.647, 30.8681, 0.7165, 0.647, 34.2349, 0.7165, 0.6065, 34.2349, 0.7631, 0.6065, 30.8681, 0.7631, 0.647, 30.8681, 0.7165, 0.647, 34.2349, 0.7165, 0.6875, 30.8681, 0.7631, 0.6875, 34.2349, 0.7631, 0.647, 34.2349, 0.7165, 0.647, 30.8681, 0.7165, 0.6875, 30.8681, 0.7631, 0.6875, 34.2349, 0.7631, 0.7043, 30.8681, 0.8754, 0.7043, 34.2349, 0.8754, 0.6875, 34.2349, 0.7631, 0.6875, 30.8681, 0.7631, 0.7043, 30.8681, 0.8754, 0.647, 30.8681, 1.0343, 0.5898, 30.8681, 0.8754, 0.6065, 30.8681, 0.9878, 0.5898, 30.8681, 0.8754, 0.647, 30.8681, 0.7165, 0.6065, 30.8681, 0.7631, 0.647, 30.8681, 0.7165, 0.7043, 30.8681, 0.8754, 0.6875, 30.8681, 0.7631, 0.7043, 30.8681, 0.8754, 0.647, 30.8681, 1.0343, 0.6875, 30.8681, 0.9878, 0.647, 30.8681, 1.0343, 0.647, 30.8681, 0.7165, 0.5898, 30.8681, 0.8754, 0.647, 30.8681, 0.7165, 0.647, 30.8681, 1.0343, 0.7043, 30.8681, 0.8754, 0.7043, 34.2349, 0.8754, 0.6875, 30.8681, 0.9878, 0.6875, 34.2349, 0.9878, 0.7043, 34.2349, 0.8754, 0.7043, 30.8681, 0.8754, 0.6875, 30.8681, 0.9878, 0.6875, 34.2349, 0.9878, 0.647, 30.8681, 1.0343, 0.647, 34.2349, 1.0343, 0.6875, 34.2349, 0.9878, 0.6875, 30.8681, 0.9878, 0.647, 30.8681, 1.0343, 0.6065, 34.2349, 0.9878, 0.6875, 34.2349, 0.9878, 0.647, 34.2349, 1.0343, 0.6875, 34.2349, 0.9878, 0.6875, 34.2349, 0.7631, 0.7043, 34.2349, 0.8754, 0.6875, 34.2349, 0.7631, 0.6065, 34.2349, 0.7631, 0.647, 34.2349, 0.7165, 0.6065, 34.2349, 0.7631, 0.6065, 34.2349, 0.9878, 0.5898, 34.2349, 0.8754, 0.6065, 34.2349, 0.9878, 0.6875, 34.2349, 0.7631, 0.6875, 34.2349, 0.9878, 0.6875, 34.2349, 0.7631, 0.6065, 34.2349, 0.9878, 0.6065, 34.2349, 0.7631 ) +[sub_resource type="ConcavePolygonShape" id=8] +data = PoolVector3Array( -1, -1, 1, -1, 1, -0.382, -1, 1, 1, -1, -1, 1, -1, -1, -0.382, -1, 1, -0.382, -1, -1, -0.382, 1, 1, -0.382, -1, 1, -0.382, -1, -1, -0.382, 1, -1, -0.382, 1, 1, -0.382, 1, -1, -0.382, 1, 1, 1, 1, 1, -0.382, 1, -1, -0.382, 1, -1, 1, 1, 1, 1, 1, -1, 1, -1, 1, 1, 1, 1, 1, 1, -1, 1, -1, -1, 1, -1, 1, 1, -1, -1, -0.382, 1, -1, 1, 1, -1, -0.382, -1, -1, -0.382, -1, -1, 1, 1, -1, 1, 1, 1, -0.382, -1, 1, 1, -1, 1, -0.382, 1, 1, -0.382, 1, 1, 1, -1, 1, 1, -1, -11.0982, 1, -1, -9.0982, -0.382, -1, -9.0982, 1, -1, -11.0982, 1, -1, -11.0982, -0.382, -1, -9.0982, -0.382, -1, -11.0982, -0.382, 1, -9.0982, -0.382, -1, -9.0982, -0.382, -1, -11.0982, -0.382, 1, -11.0982, -0.382, 1, -9.0982, -0.382, 1, -11.0982, -0.382, 1, -9.0982, 1, 1, -9.0982, -0.382, 1, -11.0982, -0.382, 1, -11.0982, 1, 1, -9.0982, 1, 1, -11.0982, 1, -1, -9.0982, 1, 1, -9.0982, 1, 1, -11.0982, 1, -1, -11.0982, 1, -1, -9.0982, 1, -1, -11.0982, -0.382, 1, -11.0982, 1, 1, -11.0982, -0.382, -1, -11.0982, -0.382, -1, -11.0982, 1, 1, -11.0982, 1, 1, -9.0982, -0.382, -1, -9.0982, 1, -1, -9.0982, -0.382, 1, -9.0982, -0.382, 1, -9.0982, 1, -1, -9.0982, 1, -1, 8.9908, 1, -1, 10.9908, -0.382, -1, 10.9908, 1, -1, 8.9908, 1, -1, 8.9908, -0.382, -1, 10.9908, -0.382, -1, 8.9908, -0.382, 1, 10.9908, -0.382, -1, 10.9908, -0.382, -1, 8.9908, -0.382, 1, 8.9908, -0.382, 1, 10.9908, -0.382, 1, 8.9908, -0.382, 1, 10.9908, 1, 1, 10.9908, -0.382, 1, 8.9908, -0.382, 1, 8.9908, 1, 1, 10.9908, 1, 1, 8.9908, 1, -1, 10.9908, 1, 1, 10.9908, 1, 1, 8.9908, 1, -1, 8.9908, 1, -1, 10.9908, 1, -1, 8.9908, -0.382, 1, 8.9908, 1, 1, 8.9908, -0.382, -1, 8.9908, -0.382, -1, 8.9908, 1, 1, 8.9908, 1, 1, 10.9908, -0.382, -1, 10.9908, 1, -1, 10.9908, -0.382, 1, 10.9908, -0.382, 1, 10.9908, 1, -1, 10.9908, 1, -1, 17.8548, 1, -1, 19.8548, -0.382, -1, 19.8548, 1, -1, 17.8548, 1, -1, 17.8548, -0.382, -1, 19.8548, -0.382, -1, 17.8548, -0.382, 1, 19.8548, -0.382, -1, 19.8548, -0.382, -1, 17.8548, -0.382, 1, 17.8548, -0.382, 1, 19.8548, -0.382, 1, 17.8548, -0.382, 1, 19.8548, 1, 1, 19.8548, -0.382, 1, 17.8548, -0.382, 1, 17.8548, 1, 1, 19.8548, 1, 1, 17.8548, 1, -1, 19.8548, 1, 1, 19.8548, 1, 1, 17.8548, 1, -1, 17.8548, 1, -1, 19.8548, 1, -1, 17.8548, -0.382, 1, 17.8548, 1, 1, 17.8548, -0.382, -1, 17.8548, -0.382, -1, 17.8548, 1, 1, 17.8548, 1, 1, 19.8548, -0.382, -1, 19.8548, 1, -1, 19.8548, -0.382, 1, 19.8548, -0.382, 1, 19.8548, 1, -1, 19.8548, 1, -1.057, -27.2744, 1.176, -1.057, 30.9186, -1.0364, -1.057, 30.9186, 1.176, -1.057, -27.2744, 1.176, -1.057, -27.2744, -1.0364, -1.057, 30.9186, -1.0364, 1.0748, -27.2744, -1.0364, 1.0748, 30.9186, 1.176, 1.0748, 30.9186, -1.0364, 1.0748, -27.2744, -1.0364, 1.0748, -27.2744, 1.176, 1.0748, 30.9186, 1.176, -1.057, -27.2744, -1.0364, 1.0748, -27.2744, 1.176, 1.0748, -27.2744, -1.0364, -1.057, -27.2744, -1.0364, -1.057, -27.2744, 1.176, 1.0748, -27.2744, 1.176, 1.0748, 30.9186, -1.0364, -1.057, 30.9186, 1.176, -1.057, 30.9186, -1.0364, 1.0748, 30.9186, -1.0364, 1.0748, 30.9186, 1.176, -1.057, 30.9186, 1.176 ) [sub_resource type="ConcavePolygonShape" id=5] data = PoolVector3Array( -1.0388, 0.0294, 8.0128, -0.7171, 0.3695, 7.5528, -1.0388, 0.3695, 8.0128, -1.0388, 0.0294, 8.0128, -0.7171, 0.0294, 7.5528, -0.7171, 0.3695, 7.5528, -0.7171, 0.0294, 7.5528, -0.5757, 0.3695, 7.6517, -0.7171, 0.3695, 7.5528, -0.7171, 0.0294, 7.5528, -0.5757, 0.0294, 7.6517, -0.5757, 0.3695, 7.6517, -0.5757, 0.0294, 7.6517, -0.8974, 0.3695, 8.1117, -0.5757, 0.3695, 7.6517, -0.5757, 0.0294, 7.6517, -0.8974, 0.0294, 8.1117, -0.8974, 0.3695, 8.1117, -0.8974, 0.0294, 8.1117, -1.0388, 0.3695, 8.0128, -0.8974, 0.3695, 8.1117, -0.8974, 0.0294, 8.1117, -1.0388, 0.0294, 8.0128, -1.0388, 0.3695, 8.0128, -0.7171, 0.0294, 7.5528, -0.8974, 0.0294, 8.1117, -0.5757, 0.0294, 7.6517, -0.7171, 0.0294, 7.5528, -1.0388, 0.0294, 8.0128, -0.8974, 0.0294, 8.1117, -0.5757, 0.3695, 7.6517, -1.0388, 0.3695, 8.0128, -0.7171, 0.3695, 7.5528, -0.5757, 0.3695, 7.6517, -0.8974, 0.3695, 8.1117, -1.0388, 0.3695, 8.0128 ) @@ -23,6 +24,24 @@ data = PoolVector3Array( -1.3931, 0.0921, 7.7649, -0.2214, 0.0921, 7.8995, -0.54 [sub_resource type="ConcavePolygonShape" id=7] data = PoolVector3Array( -1, 0, -0.1102, -1, 1.7664, 0.7589, -1, 1.7922, -0.1102, -1, 0, -0.1102, -1, 0, 0.7589, -1, 1.7664, 0.7589 ) +[sub_resource type="ArrayMesh" id=10] +resource_name = "clock_Cylinder001" +surfaces/0 = { +"aabb": AABB( -1, -1, -1, 2, 2, 2 ), +"array_data": PoolByteArray( 0, 0, 0, 0, 0, 0, 128, 191, 0, 0, 128, 191, 129, 89, 167, 63, 0, 0, 0, 56, 0, 0, 0, 0, 0, 0, 128, 191, 0, 0, 128, 191, 0, 130, 127, 193, 0, 58, 20, 56, 0, 0, 0, 0, 0, 0, 128, 191, 0, 0, 128, 191, 127, 89, 129, 82, 0, 60, 0, 56, 0, 0, 0, 0, 0, 0, 128, 63, 0, 0, 128, 191, 129, 89, 167, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 128, 63, 0, 0, 128, 191, 0, 127, 127, 63, 0, 52, 20, 56, 0, 0, 0, 0, 0, 0, 128, 63, 0, 0, 128, 191, 127, 89, 129, 82, 0, 60, 0, 0, 243, 4, 53, 63, 0, 0, 128, 191, 243, 4, 53, 191, 127, 89, 129, 82, 0, 59, 0, 56, 243, 4, 53, 63, 0, 0, 128, 191, 243, 4, 53, 191, 127, 37, 129, 108, 0, 59, 0, 56, 243, 4, 53, 63, 0, 0, 128, 191, 243, 4, 53, 191, 0, 130, 127, 193, 91, 59, 164, 56, 243, 4, 53, 63, 0, 0, 128, 63, 243, 4, 53, 191, 0, 127, 127, 63, 183, 54, 164, 56, 243, 4, 53, 63, 0, 0, 128, 63, 243, 4, 53, 191, 127, 89, 129, 82, 0, 59, 0, 0, 243, 4, 53, 63, 0, 0, 128, 63, 243, 4, 53, 191, 127, 37, 129, 108, 0, 59, 0, 0, 0, 0, 128, 63, 0, 0, 128, 191, 46, 189, 59, 143, 127, 37, 129, 108, 0, 58, 0, 56, 0, 0, 128, 63, 0, 0, 128, 191, 46, 189, 59, 143, 89, 0, 127, 108, 0, 58, 0, 56, 0, 0, 128, 63, 0, 0, 128, 191, 46, 189, 59, 143, 0, 130, 127, 193, 235, 59, 0, 58, 0, 0, 128, 63, 0, 0, 128, 63, 46, 189, 59, 15, 0, 127, 127, 63, 215, 55, 0, 58, 0, 0, 128, 63, 0, 0, 128, 63, 46, 189, 59, 15, 127, 37, 129, 108, 0, 58, 0, 0, 0, 0, 128, 63, 0, 0, 128, 63, 46, 189, 59, 15, 89, 0, 127, 108, 0, 58, 0, 0, 243, 4, 53, 63, 0, 0, 128, 191, 243, 4, 53, 63, 37, 0, 127, 82, 0, 57, 0, 56, 243, 4, 53, 63, 0, 0, 128, 191, 243, 4, 53, 63, 89, 0, 127, 108, 0, 57, 0, 56, 243, 4, 53, 63, 0, 0, 128, 191, 243, 4, 53, 63, 0, 130, 127, 193, 91, 59, 91, 59, 243, 4, 53, 63, 0, 0, 128, 63, 243, 4, 53, 63, 0, 127, 127, 63, 183, 54, 91, 59, 243, 4, 53, 63, 0, 0, 128, 63, 243, 4, 53, 63, 37, 0, 127, 82, 0, 57, 0, 0, 243, 4, 53, 63, 0, 0, 128, 63, 243, 4, 53, 63, 89, 0, 127, 108, 0, 57, 0, 0, 0, 0, 0, 0, 0, 0, 128, 191, 0, 0, 128, 63, 219, 0, 89, 63, 0, 56, 0, 56, 0, 0, 0, 0, 0, 0, 128, 191, 0, 0, 128, 63, 37, 0, 127, 82, 0, 56, 0, 56, 0, 0, 0, 0, 0, 0, 128, 191, 0, 0, 128, 63, 0, 130, 127, 193, 0, 58, 235, 59, 0, 0, 0, 0, 0, 0, 128, 63, 0, 0, 128, 63, 0, 127, 127, 63, 0, 52, 235, 59, 0, 0, 0, 0, 0, 0, 128, 63, 0, 0, 128, 63, 219, 0, 89, 63, 0, 56, 0, 0, 0, 0, 0, 0, 0, 0, 128, 63, 0, 0, 128, 63, 37, 0, 127, 82, 0, 56, 0, 0, 243, 4, 53, 191, 0, 0, 128, 191, 243, 4, 53, 63, 167, 0, 37, 63, 0, 54, 0, 56, 243, 4, 53, 191, 0, 0, 128, 191, 243, 4, 53, 63, 219, 0, 89, 63, 0, 54, 0, 56, 243, 4, 53, 191, 0, 0, 128, 191, 243, 4, 53, 63, 0, 130, 127, 193, 164, 56, 91, 59, 243, 4, 53, 191, 0, 0, 128, 63, 243, 4, 53, 63, 0, 127, 127, 63, 35, 45, 91, 59, 243, 4, 53, 191, 0, 0, 128, 63, 243, 4, 53, 63, 167, 0, 37, 63, 0, 54, 0, 0, 243, 4, 53, 191, 0, 0, 128, 63, 243, 4, 53, 63, 219, 0, 89, 63, 0, 54, 0, 0, 0, 0, 128, 191, 0, 0, 128, 191, 46, 189, 59, 143, 129, 37, 219, 63, 0, 52, 0, 56, 0, 0, 128, 191, 0, 0, 128, 191, 46, 189, 59, 143, 167, 0, 37, 63, 0, 52, 0, 56, 0, 0, 128, 191, 0, 0, 128, 191, 46, 189, 59, 143, 0, 130, 127, 193, 20, 56, 0, 58, 0, 0, 128, 191, 0, 0, 128, 63, 46, 189, 59, 15, 0, 127, 127, 63, 30, 33, 0, 58, 0, 0, 128, 191, 0, 0, 128, 63, 46, 189, 59, 15, 129, 37, 219, 63, 0, 52, 0, 0, 0, 0, 128, 191, 0, 0, 128, 63, 46, 189, 59, 15, 167, 0, 37, 63, 0, 52, 0, 0, 243, 4, 53, 191, 0, 0, 128, 191, 243, 4, 53, 191, 129, 37, 219, 63, 0, 48, 0, 56, 243, 4, 53, 191, 0, 0, 128, 191, 243, 4, 53, 191, 129, 89, 167, 63, 0, 48, 0, 56, 243, 4, 53, 191, 0, 0, 128, 191, 243, 4, 53, 191, 0, 130, 127, 193, 164, 56, 164, 56, 243, 4, 53, 191, 0, 0, 128, 63, 243, 4, 53, 191, 0, 127, 127, 63, 35, 45, 164, 56, 243, 4, 53, 191, 0, 0, 128, 63, 243, 4, 53, 191, 129, 37, 219, 63, 0, 48, 0, 0, 243, 4, 53, 191, 0, 0, 128, 63, 243, 4, 53, 191, 129, 89, 167, 63, 0, 48, 0, 0 ), +"array_index_data": PoolByteArray( 2, 0, 10, 0, 5, 0, 2, 0, 6, 0, 10, 0, 7, 0, 16, 0, 11, 0, 7, 0, 12, 0, 16, 0, 13, 0, 23, 0, 17, 0, 13, 0, 19, 0, 23, 0, 18, 0, 29, 0, 22, 0, 18, 0, 25, 0, 29, 0, 24, 0, 35, 0, 28, 0, 24, 0, 31, 0, 35, 0, 30, 0, 41, 0, 34, 0, 30, 0, 37, 0, 41, 0, 15, 0, 4, 0, 9, 0, 4, 0, 39, 0, 45, 0, 39, 0, 27, 0, 33, 0, 27, 0, 15, 0, 21, 0, 15, 0, 39, 0, 4, 0, 39, 0, 15, 0, 27, 0, 36, 0, 46, 0, 40, 0, 36, 0, 42, 0, 46, 0, 43, 0, 3, 0, 47, 0, 43, 0, 0, 0, 3, 0, 44, 0, 8, 0, 1, 0, 8, 0, 20, 0, 14, 0, 20, 0, 32, 0, 26, 0, 32, 0, 44, 0, 38, 0, 44, 0, 20, 0, 8, 0, 20, 0, 44, 0, 32, 0 ), +"blend_shape_data": [ ], +"format": 2194711, +"index_count": 84, +"material": ExtResource( 2 ), +"primitive": 4, +"skeleton_aabb": [ ], +"vertex_count": 48 +} + +[sub_resource type="ConcavePolygonShape" id=9] +data = PoolVector3Array( 0, -1, -1, 0.7071, 1, -0.7071, 0, 1, -1, 0, -1, -1, 0.7071, -1, -0.7071, 0.7071, 1, -0.7071, 0.7071, -1, -0.7071, 1, 1, 0, 0.7071, 1, -0.7071, 0.7071, -1, -0.7071, 1, -1, 0, 1, 1, 0, 1, -1, 0, 0.7071, 1, 0.7071, 1, 1, 0, 1, -1, 0, 0.7071, -1, 0.7071, 0.7071, 1, 0.7071, 0.7071, -1, 0.7071, 0, 1, 1, 0.7071, 1, 0.7071, 0.7071, -1, 0.7071, 0, -1, 1, 0, 1, 1, 0, -1, 1, -0.7071, 1, 0.7071, 0, 1, 1, 0, -1, 1, -0.7071, -1, 0.7071, -0.7071, 1, 0.7071, -0.7071, -1, 0.7071, -1, 1, 0, -0.7071, 1, 0.7071, -0.7071, -1, 0.7071, -1, -1, 0, -1, 1, 0, 1, 1, 0, 0, 1, -1, 0.7071, 1, -0.7071, 0, 1, -1, -1, 1, 0, -0.7071, 1, -0.7071, -1, 1, 0, 0, 1, 1, -0.7071, 1, 0.7071, 0, 1, 1, 1, 1, 0, 0.7071, 1, 0.7071, 1, 1, 0, -1, 1, 0, 0, 1, -1, -1, 1, 0, 1, 1, 0, 0, 1, 1, -1, -1, 0, -0.7071, 1, -0.7071, -1, 1, 0, -1, -1, 0, -0.7071, -1, -0.7071, -0.7071, 1, -0.7071, -0.7071, -1, -0.7071, 0, 1, -1, -0.7071, 1, -0.7071, -0.7071, -1, -0.7071, 0, -1, -1, 0, 1, -1, -0.7071, -1, -0.7071, 0.7071, -1, -0.7071, 0, -1, -1, 0.7071, -1, -0.7071, 0.7071, -1, 0.7071, 1, -1, 0, 0.7071, -1, 0.7071, -0.7071, -1, 0.7071, 0, -1, 1, -0.7071, -1, 0.7071, -0.7071, -1, -0.7071, -1, -1, 0, -0.7071, -1, -0.7071, 0.7071, -1, 0.7071, 0.7071, -1, -0.7071, 0.7071, -1, 0.7071, -0.7071, -1, -0.7071, -0.7071, -1, 0.7071 ) + [node name="environment" instance=ExtResource( 1 )] [node name="StaticBody" type="StaticBody" parent="Room" index="0"] @@ -41,9 +60,10 @@ shape = SubResource( 2 ) shape = SubResource( 3 ) [node name="StaticBody" type="StaticBody" parent="Bookcase" index="0"] +transform = Transform( 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0 ) [node name="CollisionShape" type="CollisionShape" parent="Bookcase/StaticBody" index="0"] -shape = SubResource( 4 ) +shape = SubResource( 8 ) [node name="StaticBody" type="StaticBody" parent="BookStanding" index="0"] @@ -59,3 +79,14 @@ shape = SubResource( 6 ) [node name="CollisionShape" type="CollisionShape" parent="Door/StaticBody" index="0"] shape = SubResource( 7 ) + +[node name="clock" type="Spatial" parent="." index="7"] + +[node name="Cylinder" type="MeshInstance" parent="clock" index="0"] +transform = Transform( 0, 1, 0, -1, 0, 0, 0, 0, 1, -5.51682, 8.38733, -1.74237 ) +mesh = SubResource( 10 ) + +[node name="StaticBody" type="StaticBody" parent="clock/Cylinder" index="0"] + +[node name="CollisionShape" type="CollisionShape" parent="clock/Cylinder/StaticBody" index="0"] +shape = SubResource( 9 ) diff --git a/godot/project.godot b/godot/project.godot index 5ed2860..01bbbb7 100644 --- a/godot/project.godot +++ b/godot/project.godot @@ -16,7 +16,6 @@ config/icon="res://icon.png" [autoload] GlobalCursorState="*res://GlobalCursorState.tscn" -LineReader="*res://assets/audio/voice_lines/LineReader.gd" [display] @@ -69,6 +68,11 @@ keyboard_down={ "events": [ Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":0,"alt":false,"shift":false,"control":false,"meta":false,"command":false,"pressed":false,"scancode":0,"physical_scancode":16777234,"unicode":0,"echo":false,"script":null) ] } +cheat={ +"deadzone": 0.5, +"events": [ Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":0,"alt":false,"shift":false,"control":false,"meta":false,"command":false,"pressed":false,"scancode":0,"physical_scancode":96,"unicode":0,"echo":false,"script":null) + ] +} [mono] diff --git a/godot/world.tscn b/godot/world.tscn index eda8f9a..7634dcb 100644 --- a/godot/world.tscn +++ b/godot/world.tscn @@ -1,4 +1,4 @@ -[gd_scene load_steps=34 format=2] +[gd_scene load_steps=38 format=2] [ext_resource path="res://assets/effects/dithering/CanvasLayer.tscn" type="PackedScene" id=1] [ext_resource path="res://assets/room/environment.tscn" type="PackedScene" id=2] @@ -8,10 +8,33 @@ [ext_resource path="res://CursorInteractArea.tscn" type="PackedScene" id=6] [ext_resource path="res://assets/audio/AmbientSound.tscn" type="PackedScene" id=7] [ext_resource path="res://AtticAmberLight.gd" type="Script" id=8] +[ext_resource path="res://assets/audio/voice_lines/LineReader.tscn" type="PackedScene" id=9] [sub_resource type="Environment" id=1] background_mode = 1 +[sub_resource type="Animation" id=29] +resource_name = "color" +length = 0.387 +loop = true +tracks/0/type = "value" +tracks/0/path = NodePath(".:visible") +tracks/0/interp = 1 +tracks/0/loop_wrap = true +tracks/0/imported = false +tracks/0/enabled = true +tracks/0/keys = { +"times": PoolRealArray( 0, 0.2 ), +"transitions": PoolRealArray( 1, 1 ), +"update": 1, +"values": [ true, false ] +} + +[sub_resource type="SpatialMaterial" id=30] +albedo_color = Color( 0, 0, 0, 1 ) + +[sub_resource type="CubeMesh" id=31] + [sub_resource type="AnimationNodeAnimation" id=9] animation = "camera_attic_inner" @@ -88,7 +111,7 @@ states/camera_pos_corner/node = SubResource( 8 ) states/camera_pos_corner/position = Vector2( 230, 169 ) transitions = [ "camera_pos_corner", "camera_bookcase", SubResource( 11 ), "camera_outer_attic", "camera_pos_corner", SubResource( 12 ), "camera_outer_attic", "camera_bookcase", SubResource( 13 ), "camera_outer_attic", "camera_attic_inner", SubResource( 14 ), "camera_pos_corner", "camera_outer_attic", SubResource( 15 ), "camera_pos_corner", "camera_attic_inner", SubResource( 16 ), "camera_bookcase", "camera_pos_corner", SubResource( 17 ), "camera_bookcase", "camera_attic_inner", SubResource( 18 ), "camera_bookcase", "camera_outer_attic", SubResource( 19 ), "camera_attic_inner", "camera_bookcase", SubResource( 20 ), "camera_attic_inner", "camera_outer_attic", SubResource( 21 ), "camera_attic_inner", "camera_pos_corner", SubResource( 22 ), "camera_pos_corner", "camera_bookshelf_secret", SubResource( 24 ), "camera_bookshelf_secret", "camera_pos_corner", SubResource( 25 ), "camera_bookshelf_secret", "camera_bookcase", SubResource( 26 ), "camera_bookcase", "camera_bookshelf_secret", SubResource( 27 ) ] start_node = "camera_pos_corner" -graph_offset = Vector2( -64, 18 ) +graph_offset = Vector2( -121, -28 ) [sub_resource type="AnimationNodeStateMachinePlayback" id=3] @@ -116,6 +139,13 @@ layer = 99 [node name="environment" parent="." instance=ExtResource( 2 )] +[node name="ClockLight" type="SpotLight" parent="."] +transform = Transform( -4.37114e-08, 0, 1, 0, 1, 0, -1, 0, -4.37114e-08, -2.44573, 8.37317, -1.81664 ) +light_color = Color( 0.603922, 0.701961, 0.94902, 1 ) +light_energy = 1.5 +spot_range = 3.66733 +spot_angle = 38.3586 + [node name="WorldEnvironment" type="WorldEnvironment" parent="."] environment = SubResource( 1 ) @@ -128,6 +158,30 @@ shadow_enabled = true omni_range = 8.917 omni_attenuation = 2.73208 +[node name="SecretLight" type="OmniLight" parent="."] +transform = Transform( 1, 0, 0, 0, 1, 0, 0, 0, 1, -0.00275469, 5.33571, 12.162 ) +visible = false +light_energy = 7.092 +light_indirect_energy = 1.306 +light_cull_mask = 4294443007 +shadow_enabled = true +omni_range = 13.347 +omni_attenuation = 1.27456 + +[node name="AnimationPlayer" type="AnimationPlayer" parent="SecretLight"] +autoplay = "color" +anims/color = SubResource( 29 ) + +[node name="MeshInstance" type="MeshInstance" parent="SecretLight/AnimationPlayer"] +transform = Transform( 3.54479, 0, 0, 0, 8.93949, 0, 0, 0, 0.75139, 0, 0, 6.36648 ) +material_override = SubResource( 30 ) +mesh = SubResource( 31 ) + +[node name="MeshInstance2" type="MeshInstance" parent="SecretLight/AnimationPlayer"] +transform = Transform( 15.4712, 0, 0, 0, 8.93949, 0, 0, 0, 0.75139, 0, 18.0633, 6.36648 ) +material_override = SubResource( 30 ) +mesh = SubResource( 31 ) + [node name="SpotLight" type="SpotLight" parent="."] transform = Transform( -0.999987, 5.82069e-11, 0.00514878, 0.00507827, 0.164927, 0.986293, -0.000849173, 0.986306, -0.164925, 0, 4.25661, -0.823411 ) light_color = Color( 0.623529, 0.247059, 0.756863, 1 ) @@ -145,6 +199,9 @@ KB_ACTIONS_PER_SECOND = 6.0 [node name="camera_positions" parent="." instance=ExtResource( 4 )] +[node name="Camera" parent="camera_positions" index="0"] +transform = Transform( -0.767553, -0.313861, 0.558887, 7.45058e-08, 0.871917, 0.489653, -0.640986, 0.375835, -0.669243, -12.6719, 16.3714, -6.79586 ) + [node name="AnimationTree" type="AnimationTree" parent="."] tree_root = SubResource( 2 ) anim_player = NodePath("../camera_positions/AnimationPlayer") @@ -185,6 +242,11 @@ transform = Transform( 10.8129, 0, 0, 0, 4.7198, 0, 0, 0, 7.91118, -26.7224, 13. on_leave_func = "_on_Cursor_set_camera" call_string = "camera_outer_attic" +[node name="SecretEnter" parent="CameraMoveZones" instance=ExtResource( 6 )] +transform = Transform( 8.71637, 0, 0, 0, 13.8749, 0, 0, 0, 5.83956, 0, 0, 15.4817 ) +on_enter_func = "_on_Cursor_set_camera" +call_string = "camera_bookshelf_secret" + [node name="AmbientSound" parent="." instance=ExtResource( 7 )] [node name="Attic" type="Spatial" parent="."] @@ -203,6 +265,8 @@ script = ExtResource( 8 ) [node name="AnimationPlayer" type="AnimationPlayer" parent="Attic/AtticAmberLight"] anims/light_flicker = SubResource( 28 ) +[node name="LineReader" parent="." instance=ExtResource( 9 )] + [connection signal="motion_status" from="AnimationTree" to="3DCursor" method="_on_AnimationTree_motion_status"] [connection signal="motion_status" from="AnimationTree" to="AmbientSound" method="_on_AnimationTree_motion_status"] [connection signal="motion_status" from="AnimationTree" to="Attic/AtticAmberLight" method="_on_AnimationTree_motion_status"]