we're getting c&d with this one 🔥

This commit is contained in:
KawaiiZenbo 2025-04-08 15:42:25 -07:00
parent b5cb8b6d4a
commit 8b399bc69c
65 changed files with 21 additions and 2641 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 124 KiB

View file

@ -1,34 +0,0 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://drklejp2dcx6j"
path="res://.godot/imported/Strike It Up.png-5e4e9723623dffff96607951553ab761.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://Development/Strike It Up.png"
dest_files=["res://.godot/imported/Strike It Up.png-5e4e9723623dffff96607951553ab761.ctex"]
[params]
compress/mode=0
compress/high_quality=false
compress/lossy_quality=0.7
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=false
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
process/fix_alpha_border=true
process/premult_alpha=false
process/normal_map_invert_y=false
process/hdr_as_srgb=false
process/hdr_clamp_exposure=false
process/size_limit=0
detect_3d/compress_to=1

Binary file not shown.

Before

Width:  |  Height:  |  Size: 662 KiB

View file

@ -1,34 +0,0 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://cjd3cy1uy4ijk"
path="res://.godot/imported/posterfinal.png-3ad5945288ecb57a67aae1c67032cc6d.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://Development/posterfinal.png"
dest_files=["res://.godot/imported/posterfinal.png-3ad5945288ecb57a67aae1c67032cc6d.ctex"]
[params]
compress/mode=0
compress/high_quality=false
compress/lossy_quality=0.7
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=false
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
process/fix_alpha_border=true
process/premult_alpha=false
process/normal_map_invert_y=false
process/hdr_as_srgb=false
process/hdr_clamp_exposure=false
process/size_limit=0
detect_3d/compress_to=1

Binary file not shown.

Before

Width:  |  Height:  |  Size: 666 KiB

View file

@ -1,34 +0,0 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://dj6flwxd2e7xm"
path="res://.godot/imported/posterfinal2.png-b879ac8fa5ba3d55aa6a9d057c6c8f97.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://Development/posterfinal2.png"
dest_files=["res://.godot/imported/posterfinal2.png-b879ac8fa5ba3d55aa6a9d057c6c8f97.ctex"]
[params]
compress/mode=0
compress/high_quality=false
compress/lossy_quality=0.7
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=false
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
process/fix_alpha_border=true
process/premult_alpha=false
process/normal_map_invert_y=false
process/hdr_as_srgb=false
process/hdr_clamp_exposure=false
process/size_limit=0
detect_3d/compress_to=1

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.6 MiB

View file

@ -1,34 +0,0 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://d2fw04jci3c12"
path="res://.godot/imported/posterraw.png-e1589ca4b69c1a9e8226776df786296c.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://Development/posterraw.png"
dest_files=["res://.godot/imported/posterraw.png-e1589ca4b69c1a9e8226776df786296c.ctex"]
[params]
compress/mode=0
compress/high_quality=false
compress/lossy_quality=0.7
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=false
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
process/fix_alpha_border=true
process/premult_alpha=false
process/normal_map_invert_y=false
process/hdr_as_srgb=false
process/hdr_clamp_exposure=false
process/size_limit=0
detect_3d/compress_to=1

View file

@ -1,12 +0,0 @@
[gd_resource type="StandardMaterial3D" format=3 uid="uid://2a27fe7w8jef"]
[resource]
albedo_color = Color(0.0666928, 0.0646792, 0.0591421, 1)
metallic = 1.0
roughness = 0.41
normal_enabled = true
anisotropy_enabled = true
subsurf_scatter_enabled = true
subsurf_scatter_strength = 1.0
subsurf_scatter_transmittance_depth = 3.016
subsurf_scatter_transmittance_boost = 1.0

View file

@ -1,39 +0,0 @@
shader_type spatial;
render_mode blend_mix, depth_draw_opaque, cull_back, diffuse_burley, specular_schlick_ggx;
uniform sampler2D diffuse_texture;
uniform sampler2D normal_map: hint_normal;
uniform float normal_scale : hint_range(-16.0, 16.0);
uniform sampler2D mask_map;
uniform sampler2D paint_map;
uniform vec3 paint_color_r : source_color;
uniform vec3 paint_color_g: source_color;
uniform vec3 paint_color_b: source_color;
uniform vec3 paint_color_a: source_color;
void fragment() {
vec2 uv = UV;
vec4 base_color = texture(diffuse_texture, uv);
vec4 paint = texture(paint_map, uv);
vec4 masks = texture(mask_map, uv);
// Mix base with paint colors by channels
vec3 paint_result = base_color.rgb;
paint_result = mix(paint_result, paint_color_r, paint.r);
paint_result = mix(paint_result, paint_color_g, paint.g);
paint_result = mix(paint_result, paint_color_b, paint.b);
paint_result = mix(paint_result, paint_color_a, paint.a);
ALBEDO = paint_result;
EMISSION = paint_result * masks.b;
ROUGHNESS = masks.g;
METALLIC = masks.r;
NORMAL_MAP = texture(normal_map, uv).rgb;
NORMAL_MAP_DEPTH = normal_scale;
}

View file

@ -1 +0,0 @@
uid://des8a3glk3x31

View file

@ -1,20 +0,0 @@
[gd_resource type="ShaderMaterial" load_steps=6 format=3 uid="uid://b51m30fupimsx"]
[ext_resource type="Shader" uid="uid://des8a3glk3x31" path="res://Materials/Chica.gdshader" id="1_g0agl"]
[ext_resource type="Texture2D" uid="uid://fldji252qpey" path="res://Textures/Chica_Main.png" id="2_72hyw"]
[ext_resource type="Texture2D" uid="uid://cev65j6tjoli8" path="res://Textures/Chica_MaskMap.png" id="3_6qvbf"]
[ext_resource type="Texture2D" uid="uid://bnrc4uavbcu8f" path="res://Textures/Chica_NormalMap.png" id="4_wheg1"]
[ext_resource type="Texture2D" uid="uid://c6rqou6artl3b" path="res://Textures/Chica_PaintMap.png" id="5_vlian"]
[resource]
render_priority = 0
shader = ExtResource("1_g0agl")
shader_parameter/diffuse_texture = ExtResource("2_72hyw")
shader_parameter/normal_map = ExtResource("4_wheg1")
shader_parameter/normal_scale = 1.0
shader_parameter/mask_map = ExtResource("3_6qvbf")
shader_parameter/paint_map = ExtResource("5_vlian")
shader_parameter/paint_color_r = Color(0.901961, 0.745098, 0.239216, 1)
shader_parameter/paint_color_g = Color(0.85098, 0.533333, 0.254902, 1)
shader_parameter/paint_color_b = Color(0.647059, 0.12549, 0.0980392, 1)
shader_parameter/paint_color_a = Color(0, 0, 0, 1)

View file

@ -1,5 +0,0 @@
[gd_resource type="StandardMaterial3D" format=3 uid="uid://eh4k2esv6081"]
[resource]
albedo_color = Color(0, 0, 0, 1)
roughness = 0.06

View file

@ -1,5 +0,0 @@
[gd_resource type="StandardMaterial3D" format=3 uid="uid://c64nx5pjielba"]
[resource]
albedo_color = Color(0.905882, 0.329412, 0.564706, 1)
roughness = 0.17

View file

@ -1,5 +0,0 @@
[gd_resource type="StandardMaterial3D" format=3 uid="uid://cjmaxbq2g1fac"]
[resource]
albedo_color = Color(0.849464, 0.806876, 0.753358, 1)
roughness = 0.17

View file

@ -1,12 +0,0 @@
[gd_resource type="StandardMaterial3D" format=3 uid="uid://bimexjbcml72"]
[resource]
albedo_color = Color(0.901961, 0.745098, 0.239216, 1)
metallic = 1.0
roughness = 0.41
normal_enabled = true
anisotropy_enabled = true
subsurf_scatter_enabled = true
subsurf_scatter_strength = 1.0
subsurf_scatter_transmittance_depth = 3.016
subsurf_scatter_transmittance_boost = 1.0

Binary file not shown.

View file

@ -1,65 +0,0 @@
[remap]
importer="scene"
importer_version=1
type="PackedScene"
uid="uid://m7s5j51nrkg1"
path="res://.godot/imported/Chica.fbx-d7cc11b983dd0e55edccc1e316069a29.scn"
[deps]
source_file="res://Models/Animatronics/Chica/Chica.fbx"
dest_files=["res://.godot/imported/Chica.fbx-d7cc11b983dd0e55edccc1e316069a29.scn"]
[params]
nodes/root_type=""
nodes/root_name=""
nodes/apply_root_scale=true
nodes/root_scale=1.0
nodes/import_as_skeleton_bones=false
nodes/use_node_type_suffixes=true
meshes/ensure_tangents=true
meshes/generate_lods=true
meshes/create_shadow_meshes=true
meshes/light_baking=1
meshes/lightmap_texel_size=0.2
meshes/force_disable_compression=false
skins/use_named_skins=true
animation/import=true
animation/fps=30
animation/trimming=true
animation/remove_immutable_tracks=true
animation/import_rest_as_RESET=false
import_script/path=""
_subresources={
"materials": {
"Chica Main": {
"use_external/enabled": true,
"use_external/path": "uid://b51m30fupimsx"
},
"Material.015": {
"use_external/enabled": true,
"use_external/path": "uid://c64nx5pjielba"
},
"Material.016": {
"use_external/enabled": true,
"use_external/path": "uid://cjmaxbq2g1fac"
},
"Material.017": {
"use_external/enabled": true,
"use_external/path": "uid://eh4k2esv6081"
},
"hair yellow": {
"use_external/enabled": true,
"use_external/path": "uid://bimexjbcml72"
},
"hair yellow.001": {
"use_external/enabled": true,
"use_external/path": "uid://2a27fe7w8jef"
}
}
}
fbx/importer=0
fbx/allow_geometry_helper_nodes=false
fbx/embedded_image_handling=1

Binary file not shown.

Binary file not shown.

View file

@ -1,144 +0,0 @@
[gd_scene load_steps=3 format=3 uid="uid://cry2msqosqx0u"]
[ext_resource type="PackedScene" uid="uid://m7s5j51nrkg1" path="res://Models/Animatronics/Chica/Chica.fbx" id="1_4j8or"]
[ext_resource type="Script" uid="uid://iqrmm33dxvui" path="res://Scripts/GL_Animatronic.gd" id="1_vcqxk"]
[node name="Chica" type="Node3D" groups=["AA_CHICA"]]
script = ExtResource("1_vcqxk")
animParameters = {
"Armature_001|Eyebrow L Down": {
"in_speed": 5.0,
"out_speed": 5.0,
"signal_value": 0,
"type": "standard",
"value": 0.0
},
"Armature_001|Eyebrow L Up": {
"in_speed": 5.0,
"out_speed": 5.0,
"signal_value": 0,
"type": "standard",
"value": 0.0
},
"Armature_001|Eyebrow R Down": {
"in_speed": 5.0,
"out_speed": 5.0,
"signal_value": 0,
"type": "standard",
"value": 0.0
},
"Armature_001|Eyebrow R Up": {
"in_speed": 5.0,
"out_speed": 5.0,
"signal_value": 0,
"type": "standard",
"value": 0.0
},
"Armature_001|Eyelid L": {
"in_speed": 5.0,
"out_speed": 5.0,
"signal_value": 0,
"type": "move_to",
"value": 0.0
},
"Armature_001|Eyelid R": {
"in_speed": 5.0,
"out_speed": 5.0,
"signal_value": 0,
"type": "move_to",
"value": 0.0
},
"Armature_001|Eyes Down": {
"in_speed": 5.0,
"out_speed": 5.0,
"signal_value": 0,
"type": "standard",
"value": 0.0
},
"Armature_001|Eyes Left": {
"in_speed": 5.0,
"out_speed": 5.0,
"signal_value": 0,
"type": "standard",
"value": 0.0
},
"Armature_001|Eyes Right": {
"in_speed": 5.0,
"out_speed": 5.0,
"signal_value": 0,
"type": "standard",
"value": 0.0
},
"Armature_001|Eyes Up": {
"in_speed": 5.0,
"out_speed": 5.0,
"signal_value": 0,
"type": "standard",
"value": 0.0
},
"Armature_001|Head Down": {
"in_speed": 5.0,
"out_speed": 5.0,
"signal_value": 0,
"type": "standard",
"value": 0.0
},
"Armature_001|Head L": {
"in_speed": 5.0,
"out_speed": 5.0,
"signal_value": 0,
"type": "standard",
"value": 0.0
},
"Armature_001|Head R": {
"in_speed": 5.0,
"out_speed": 5.0,
"signal_value": 0,
"type": "standard",
"value": 0.0
},
"Armature_001|Head Tilt L": {
"in_speed": 5.0,
"out_speed": 5.0,
"signal_value": 0,
"type": "standard",
"value": 0.0
},
"Armature_001|Head Tilt R": {
"in_speed": 5.0,
"out_speed": 5.0,
"signal_value": 0,
"type": "standard",
"value": 0.0
},
"Armature_001|Head Up": {
"in_speed": 5.0,
"out_speed": 5.0,
"signal_value": 0,
"type": "standard",
"value": 0.0
},
"Armature_001|Jaw": {
"in_speed": 5.0,
"out_speed": 5.0,
"signal_value": 0,
"type": "standard",
"value": 0.0
},
"Armature_001|Underlid L": {
"in_speed": 5.0,
"out_speed": 5.0,
"signal_value": 0,
"type": "move_to",
"value": 0.0
},
"Armature_001|Underlid R": {
"in_speed": 5.0,
"out_speed": 5.0,
"signal_value": 0,
"type": "move_to",
"value": 0.0
}
}
[node name="Chica" parent="." instance=ExtResource("1_4j8or")]

View file

@ -1,121 +0,0 @@
[gd_scene load_steps=10 format=3 uid="uid://doe47bro2kqt6"]
[ext_resource type="PackedScene" uid="uid://cry2msqosqx0u" path="res://Scenes/Animatables/Chica.tscn" id="1_5nprb"]
[ext_resource type="Script" uid="uid://8vyuhyx0xogt" path="res://Scripts/freecam.gd" id="2_stiks"]
[ext_resource type="VoxelGIData" uid="uid://ckgscns47hws6" path="res://Scenes/Levels/Freddy's.VoxelGI_data.res" id="3_1u053"]
[ext_resource type="Script" uid="uid://c5uawj66escut" path="res://Scripts/GL_Spotlight.gd" id="3_2ymb8"]
[ext_resource type="Theme" uid="uid://b3wjoiiv6sq22" path="res://UI/Themes/Default.tres" id="3_ajshc"]
[ext_resource type="PackedScene" uid="uid://c57u187iciexi" path="res://Scenes/UI/Node Map.tscn" id="5_h0i1e"]
[sub_resource type="WorldBoundaryShape3D" id="WorldBoundaryShape3D_stiks"]
[sub_resource type="PlaneMesh" id="PlaneMesh_1u053"]
[sub_resource type="Environment" id="Environment_h0i1e"]
background_mode = 1
tonemap_mode = 4
ssr_enabled = true
ssao_enabled = true
ssil_enabled = true
ssil_intensity = 3.0
glow_enabled = true
fog_enabled = true
fog_light_color = Color(0, 0, 0, 1)
adjustment_enabled = true
adjustment_contrast = 1.1
adjustment_saturation = 1.3
[node name="Freddy\'s" type="Node3D"]
[node name="World Boundary" type="StaticBody3D" parent="."]
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, -0.0211427, 0)
[node name="CollisionShape3D" type="CollisionShape3D" parent="World Boundary"]
shape = SubResource("WorldBoundaryShape3D_stiks")
[node name="MeshInstance3D" type="MeshInstance3D" parent="."]
transform = Transform3D(5, 0, 0, 0, 5, 0, 0, 0, 5, 0, 0, 0)
mesh = SubResource("PlaneMesh_1u053")
[node name="Chica" parent="." instance=ExtResource("1_5nprb")]
transform = Transform3D(0.1, 0, 0, 0, 0.1, 0, 0, 0, 0.1, 4.76837e-07, 1.47296, -2.35951)
[node name="OmniLight3D" type="OmniLight3D" parent="."]
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -1.42203, 4.45495, 0.192916)
light_energy = 0.575
light_size = 0.106
shadow_enabled = true
omni_range = 8.156
omni_attenuation = 2.0
[node name="OmniLight3D2" type="OmniLight3D" parent="."]
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 3.87906, 4.18335, 0.548465)
light_size = 0.106
shadow_enabled = true
omni_range = 8.156
omni_attenuation = 2.0
[node name="OmniLight3D3" type="OmniLight3D" parent="."]
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0.975392, 4.18335, -5.09868)
light_size = 0.106
shadow_enabled = true
omni_range = 8.156
omni_attenuation = 2.0
[node name="WorldEnvironment" type="WorldEnvironment" parent="."]
environment = SubResource("Environment_h0i1e")
[node name="Camera3D" type="Camera3D" parent="."]
transform = Transform3D(0.999998, 0.00163928, -0.000874432, -0.00163943, 0.999999, -0.000166072, 0.000874161, 0.000167496, 1, 1.01889, 2.26498, -0.257163)
script = ExtResource("2_stiks")
toggle_key = 4194305
overlay_text = false
[node name="Control" type="Control" parent="Camera3D"]
layout_mode = 3
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
[node name="Label" type="Label" parent="Camera3D/Control"]
z_index = 1000
layout_mode = 1
anchors_preset = 3
anchor_left = 1.0
anchor_top = 1.0
anchor_right = 1.0
anchor_bottom = 1.0
offset_left = -40.0
offset_top = -23.0
grow_horizontal = 0
grow_vertical = 0
theme = ExtResource("3_ajshc")
theme_override_font_sizes/font_size = 9
text = "Give LIFE: TEST_A_BEGINNINGS
(Press Esc for Nodes, Right Click to search node, Tab toggles background)"
horizontal_alignment = 2
[node name="SpotLight3D" type="SpotLight3D" parent="."]
transform = Transform3D(0.976123, 0.0551107, -0.210113, -0.00945105, 0.97714, 0.212388, 0.217015, -0.205331, 0.954329, -0.581223, 3.60596, 4.08111)
light_color = Color(0.944285, 0.839984, 0.7003, 1)
light_energy = 500.0
light_size = 0.124
shadow_enabled = true
spot_range = 7.605
spot_attenuation = 2.0
spot_angle = 5.59
spot_angle_attenuation = 0.329877
[node name="Node" type="Node" parent="SpotLight3D" groups=["L_SPOT_CHICA"]]
script = ExtResource("3_2ymb8")
canChangeColor = true
canChangeSize = true
[node name="ReflectionProbe" type="ReflectionProbe" parent="."]
[node name="VoxelGI" type="VoxelGI" parent="."]
data = ExtResource("3_1u053")
[node name="NodeMap" parent="." instance=ExtResource("5_h0i1e")]

View file

@ -1,20 +0,0 @@
[gd_scene load_steps=3 format=3 uid="uid://d4gx38pme7hnp"]
[ext_resource type="PackedScene" uid="uid://b0arjg8r75f8y" path="res://Scenes/Nodes/Node.tscn" id="1_6fnvm"]
[ext_resource type="Script" uid="uid://t8bsiegtsiwo" path="res://Scripts/GL_Output.gd" id="2_6fnvm"]
[node name="Node" type="Control"]
layout_mode = 3
anchors_preset = 0
mouse_filter = 1
[node name="Node" parent="." groups=["GL Node"] instance=ExtResource("1_6fnvm")]
layout_mode = 0
tooltip_text = "Controls Chica's movements. All eyelid movements can be set to a particular position using values of 0.0 to 1.0."
script = ExtResource("2_6fnvm")
identification = "AA_CHICA"
names = PackedStringArray("Armature_001|Eyebrow L Down", "Armature_001|Eyebrow L Up", "Armature_001|Eyebrow R Down", "Armature_001|Eyebrow R Up", "Armature_001|Eyelid L", "Armature_001|Eyelid R", "Armature_001|Eyes Down", "Armature_001|Eyes Left", "Armature_001|Eyes Right", "Armature_001|Eyes Up", "Armature_001|Head Down", "Armature_001|Head L", "Armature_001|Head R", "Armature_001|Head Tilt L", "Armature_001|Head Tilt R", "Armature_001|Head Up", "Armature_001|Jaw", "Armature_001|Underlid L", "Armature_001|Underlid R")
types = PackedStringArray("float", "float", "float", "float", "float", "float", "float", "float", "float", "float", "float", "float", "float", "float", "float", "float", "float", "float", "float")
[connection signal="mouse_entered" from="Node" to="Node" method="mouse_enter"]
[connection signal="mouse_exited" from="Node" to="Node" method="mouse_exit"]

View file

@ -1,20 +0,0 @@
[gd_scene load_steps=3 format=3 uid="uid://dxay21t1j6ha1"]
[ext_resource type="PackedScene" uid="uid://b0arjg8r75f8y" path="res://Scenes/Nodes/Node.tscn" id="1_vck43"]
[ext_resource type="Script" uid="uid://t8bsiegtsiwo" path="res://Scripts/GL_Output.gd" id="2_1p1hk"]
[node name="Node" type="Control"]
layout_mode = 3
anchors_preset = 0
mouse_filter = 1
[node name="Node" parent="." groups=["GL Node"] instance=ExtResource("1_vck43")]
layout_mode = 0
tooltip_text = "Controls the spotlight for Chica."
script = ExtResource("2_1p1hk")
identification = "L_SPOT_CHICA"
names = PackedStringArray("intensity", "color", "size")
types = PackedStringArray("float", "color", "float")
[connection signal="mouse_entered" from="Node" to="Node" method="mouse_enter"]
[connection signal="mouse_exited" from="Node" to="Node" method="mouse_exit"]

View file

@ -1,10 +1,10 @@
[gd_scene load_steps=10 format=4 uid="uid://qvo7vlvac8o5"] [gd_scene load_steps=10 format=4 uid="uid://qvo7vlvac8o5"]
[ext_resource type="Script" uid="uid://8vyuhyx0xogt" path="res://Scripts/freecam.gd" id="1_bx512"] [ext_resource type="PackedScene" uid="uid://biu7cbgleyuq8" path="res://Scenes/Animatables/CyberHelen.tscn" id="1_cxuso"]
[ext_resource type="PackedScene" uid="uid://biu7cbgleyuq8" path="res://Scenes/Animatables/CyberHelen.tscn" id="1_gqnkw"] [ext_resource type="Script" uid="uid://8vyuhyx0xogt" path="res://Scripts/freecam.gd" id="2_k14q4"]
[ext_resource type="Theme" uid="uid://b3wjoiiv6sq22" path="res://UI/Themes/Default.tres" id="2_gqnkw"] [ext_resource type="Theme" uid="uid://b3wjoiiv6sq22" path="res://UI/Themes/Default.tres" id="3_dksio"]
[ext_resource type="PackedScene" uid="uid://c57u187iciexi" path="res://Scenes/UI/Node Map.tscn" id="3_yvq6w"] [ext_resource type="PackedScene" uid="uid://c57u187iciexi" path="res://Scenes/UI/Node Map.tscn" id="4_66shk"]
[ext_resource type="Script" uid="uid://c5uawj66escut" path="res://Scripts/GL_Spotlight.gd" id="5_yvq6w"] [ext_resource type="Script" uid="uid://c5uawj66escut" path="res://Scripts/GL_Spotlight.gd" id="5_bu2xw"]
[sub_resource type="WorldBoundaryShape3D" id="WorldBoundaryShape3D_7yejt"] [sub_resource type="WorldBoundaryShape3D" id="WorldBoundaryShape3D_7yejt"]
@ -43,7 +43,7 @@ transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, -0.0211427, 0)
[node name="CollisionShape3D" type="CollisionShape3D" parent="World Boundary"] [node name="CollisionShape3D" type="CollisionShape3D" parent="World Boundary"]
shape = SubResource("WorldBoundaryShape3D_7yejt") shape = SubResource("WorldBoundaryShape3D_7yejt")
[node name="CyberHelen" parent="." instance=ExtResource("1_gqnkw")] [node name="CyberHelen" parent="." instance=ExtResource("1_cxuso")]
[node name="MeshInstance3D" type="MeshInstance3D" parent="."] [node name="MeshInstance3D" type="MeshInstance3D" parent="."]
transform = Transform3D(5, 0, 0, 0, 5, 0, 0, 0, 5, 0, 0, 0) transform = Transform3D(5, 0, 0, 0, 5, 0, 0, 0, 5, 0, 0, 0)
@ -54,7 +54,7 @@ environment = SubResource("Environment_mfnc6")
[node name="Camera3D" type="Camera3D" parent="."] [node name="Camera3D" type="Camera3D" parent="."]
transform = Transform3D(0.999998, 0.00163928, -0.000874435, -0.00163943, 0.999999, -0.000166063, 0.000874161, 0.000167496, 1, 0.01889, 3.26498, 3.74284) transform = Transform3D(0.999998, 0.00163928, -0.000874435, -0.00163943, 0.999999, -0.000166063, 0.000874161, 0.000167496, 1, 0.01889, 3.26498, 3.74284)
script = ExtResource("1_bx512") script = ExtResource("2_k14q4")
toggle_key = 4194305 toggle_key = 4194305
overlay_text = false overlay_text = false
@ -78,7 +78,7 @@ offset_left = -40.0
offset_top = -23.0 offset_top = -23.0
grow_horizontal = 0 grow_horizontal = 0
grow_vertical = 0 grow_vertical = 0
theme = ExtResource("2_gqnkw") theme = ExtResource("3_dksio")
theme_override_font_sizes/font_size = 9 theme_override_font_sizes/font_size = 9
text = "Give LIFE: TEST_A_BEGINNINGS text = "Give LIFE: TEST_A_BEGINNINGS
(Press Esc for Nodes, Right Click to search node, Tab toggles background)" (Press Esc for Nodes, Right Click to search node, Tab toggles background)"
@ -89,7 +89,7 @@ horizontal_alignment = 2
[node name="VoxelGI" type="VoxelGI" parent="."] [node name="VoxelGI" type="VoxelGI" parent="."]
data = SubResource("VoxelGIData_k1i6c") data = SubResource("VoxelGIData_k1i6c")
[node name="NodeMap" parent="." instance=ExtResource("3_yvq6w")] [node name="NodeMap" parent="." instance=ExtResource("4_66shk")]
[node name="OmniLight3D" type="OmniLight3D" parent="."] [node name="OmniLight3D" type="OmniLight3D" parent="."]
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -1.42203, 4.45495, 0.192916) transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -1.42203, 4.45495, 0.192916)
@ -125,6 +125,6 @@ spot_angle = 20.0
spot_angle_attenuation = 0.329877 spot_angle_attenuation = 0.329877
[node name="Node" type="Node" parent="SpotLight3D" groups=["L_SPOT_CHICA"]] [node name="Node" type="Node" parent="SpotLight3D" groups=["L_SPOT_CHICA"]]
script = ExtResource("5_yvq6w") script = ExtResource("5_bu2xw")
canChangeColor = true canChangeColor = true
canChangeSize = true canChangeSize = true

View file

@ -1,8 +1,6 @@
extends Control extends Control
var rows : Dictionary = { var rows : Dictionary = {
"Chica":1,
"ChicaSpot":1,
"CyberHelen":1, "CyberHelen":1,
"Float":1, "Float":1,
"Keystrokes":1, "Keystrokes":1,

View file

@ -1,196 +0,0 @@
[gd_scene load_steps=39 format=3 uid="uid://47r8tdbm7efr"]
[sub_resource type="AnimationNodeAdd2" id="AnimationNodeAdd2_44f1i"]
[sub_resource type="AnimationNodeAdd2" id="AnimationNodeAdd2_416hh"]
[sub_resource type="AnimationNodeAdd2" id="AnimationNodeAdd2_fl1ri"]
[sub_resource type="AnimationNodeAdd2" id="AnimationNodeAdd2_0eqj6"]
[sub_resource type="AnimationNodeAdd2" id="AnimationNodeAdd2_b4nut"]
[sub_resource type="AnimationNodeAdd2" id="AnimationNodeAdd2_383x5"]
[sub_resource type="AnimationNodeAdd2" id="AnimationNodeAdd2_xvik1"]
[sub_resource type="AnimationNodeAdd2" id="AnimationNodeAdd2_n7o72"]
[sub_resource type="AnimationNodeAdd2" id="AnimationNodeAdd2_1mxs5"]
[sub_resource type="AnimationNodeAdd2" id="AnimationNodeAdd2_q7ktm"]
[sub_resource type="AnimationNodeAdd2" id="AnimationNodeAdd2_q5nup"]
[sub_resource type="AnimationNodeAdd2" id="AnimationNodeAdd2_qbmf4"]
[sub_resource type="AnimationNodeAdd2" id="AnimationNodeAdd2_7psv6"]
[sub_resource type="AnimationNodeAdd2" id="AnimationNodeAdd2_jg1qk"]
[sub_resource type="AnimationNodeAdd2" id="AnimationNodeAdd2_e5ary"]
[sub_resource type="AnimationNodeAdd2" id="AnimationNodeAdd2_tbo4q"]
[sub_resource type="AnimationNodeAdd2" id="AnimationNodeAdd2_oh3ns"]
[sub_resource type="AnimationNodeAdd2" id="AnimationNodeAdd2_28e2x"]
[sub_resource type="AnimationNodeAnimation" id="AnimationNodeAnimation_uhm8s"]
animation = &"Armature_001|Eyebrow L Down"
[sub_resource type="AnimationNodeAnimation" id="AnimationNodeAnimation_f314w"]
animation = &"Armature_001|Eyebrow L Up"
[sub_resource type="AnimationNodeAnimation" id="AnimationNodeAnimation_f21by"]
animation = &"Armature_001|Eyebrow R Down"
[sub_resource type="AnimationNodeAnimation" id="AnimationNodeAnimation_5nyrw"]
animation = &"Armature_001|Eyebrow R Up"
[sub_resource type="AnimationNodeAnimation" id="AnimationNodeAnimation_gpge7"]
animation = &"Armature_001|Eyelid L"
[sub_resource type="AnimationNodeAnimation" id="AnimationNodeAnimation_dfspo"]
animation = &"Armature_001|Eyelid R"
[sub_resource type="AnimationNodeAnimation" id="AnimationNodeAnimation_gnj27"]
animation = &"Armature_001|Eyes Down"
[sub_resource type="AnimationNodeAnimation" id="AnimationNodeAnimation_5abqp"]
animation = &"Armature_001|Eyes Left"
[sub_resource type="AnimationNodeAnimation" id="AnimationNodeAnimation_bg2ay"]
animation = &"Armature_001|Eyes Right"
[sub_resource type="AnimationNodeAnimation" id="AnimationNodeAnimation_1jkrh"]
animation = &"Armature_001|Eyes Up"
[sub_resource type="AnimationNodeAnimation" id="AnimationNodeAnimation_jbrgj"]
animation = &"Armature_001|Head Down"
[sub_resource type="AnimationNodeAnimation" id="AnimationNodeAnimation_wyleq"]
animation = &"Armature_001|Head L"
[sub_resource type="AnimationNodeAnimation" id="AnimationNodeAnimation_u8eay"]
animation = &"Armature_001|Head R"
[sub_resource type="AnimationNodeAnimation" id="AnimationNodeAnimation_u4te3"]
animation = &"Armature_001|Head Tilt L"
[sub_resource type="AnimationNodeAnimation" id="AnimationNodeAnimation_3o12v"]
animation = &"Armature_001|Head Tilt R"
[sub_resource type="AnimationNodeAnimation" id="AnimationNodeAnimation_ubl1w"]
animation = &"Armature_001|Head Up"
[sub_resource type="AnimationNodeAnimation" id="AnimationNodeAnimation_4kdpy"]
animation = &"Armature_001|Jaw"
[sub_resource type="AnimationNodeAnimation" id="AnimationNodeAnimation_cuu4h"]
animation = &"Armature_001|Underlid L"
[sub_resource type="AnimationNodeAnimation" id="AnimationNodeAnimation_qeuyy"]
animation = &"Armature_001|Underlid R"
[sub_resource type="AnimationNodeBlendTree" id="AnimationNodeBlendTree_nsphc"]
graph_offset = Vector2(1911, 239.217)
nodes/Add_1/node = SubResource("AnimationNodeAdd2_44f1i")
nodes/Add_1/position = Vector2(200, 100)
nodes/Add_10/node = SubResource("AnimationNodeAdd2_416hh")
nodes/Add_10/position = Vector2(2000, 100)
nodes/Add_11/node = SubResource("AnimationNodeAdd2_fl1ri")
nodes/Add_11/position = Vector2(2200, 100)
nodes/Add_12/node = SubResource("AnimationNodeAdd2_0eqj6")
nodes/Add_12/position = Vector2(2400, 100)
nodes/Add_13/node = SubResource("AnimationNodeAdd2_b4nut")
nodes/Add_13/position = Vector2(2600, 100)
nodes/Add_14/node = SubResource("AnimationNodeAdd2_383x5")
nodes/Add_14/position = Vector2(2800, 100)
nodes/Add_15/node = SubResource("AnimationNodeAdd2_xvik1")
nodes/Add_15/position = Vector2(3000, 100)
nodes/Add_16/node = SubResource("AnimationNodeAdd2_n7o72")
nodes/Add_16/position = Vector2(3200, 100)
nodes/Add_17/node = SubResource("AnimationNodeAdd2_1mxs5")
nodes/Add_17/position = Vector2(3400, 100)
nodes/Add_18/node = SubResource("AnimationNodeAdd2_q7ktm")
nodes/Add_18/position = Vector2(3600, 100)
nodes/Add_2/node = SubResource("AnimationNodeAdd2_q5nup")
nodes/Add_2/position = Vector2(400, 100)
nodes/Add_3/node = SubResource("AnimationNodeAdd2_qbmf4")
nodes/Add_3/position = Vector2(600, 100)
nodes/Add_4/node = SubResource("AnimationNodeAdd2_7psv6")
nodes/Add_4/position = Vector2(800, 100)
nodes/Add_5/node = SubResource("AnimationNodeAdd2_jg1qk")
nodes/Add_5/position = Vector2(1000, 100)
nodes/Add_6/node = SubResource("AnimationNodeAdd2_e5ary")
nodes/Add_6/position = Vector2(1200, 100)
nodes/Add_7/node = SubResource("AnimationNodeAdd2_tbo4q")
nodes/Add_7/position = Vector2(1400, 100)
nodes/Add_8/node = SubResource("AnimationNodeAdd2_oh3ns")
nodes/Add_8/position = Vector2(1600, 100)
nodes/Add_9/node = SubResource("AnimationNodeAdd2_28e2x")
nodes/Add_9/position = Vector2(1800, 100)
"nodes/Anim_Armature_001|Eyebrow L Down/node" = SubResource("AnimationNodeAnimation_uhm8s")
"nodes/Anim_Armature_001|Eyebrow L Down/position" = Vector2(0, 0)
"nodes/Anim_Armature_001|Eyebrow L Up/node" = SubResource("AnimationNodeAnimation_f314w")
"nodes/Anim_Armature_001|Eyebrow L Up/position" = Vector2(200, 0)
"nodes/Anim_Armature_001|Eyebrow R Down/node" = SubResource("AnimationNodeAnimation_f21by")
"nodes/Anim_Armature_001|Eyebrow R Down/position" = Vector2(400, 0)
"nodes/Anim_Armature_001|Eyebrow R Up/node" = SubResource("AnimationNodeAnimation_5nyrw")
"nodes/Anim_Armature_001|Eyebrow R Up/position" = Vector2(600, 0)
"nodes/Anim_Armature_001|Eyelid L/node" = SubResource("AnimationNodeAnimation_gpge7")
"nodes/Anim_Armature_001|Eyelid L/position" = Vector2(800, 0)
"nodes/Anim_Armature_001|Eyelid R/node" = SubResource("AnimationNodeAnimation_dfspo")
"nodes/Anim_Armature_001|Eyelid R/position" = Vector2(1000, 0)
"nodes/Anim_Armature_001|Eyes Down/node" = SubResource("AnimationNodeAnimation_gnj27")
"nodes/Anim_Armature_001|Eyes Down/position" = Vector2(1200, 0)
"nodes/Anim_Armature_001|Eyes Left/node" = SubResource("AnimationNodeAnimation_5abqp")
"nodes/Anim_Armature_001|Eyes Left/position" = Vector2(1400, 0)
"nodes/Anim_Armature_001|Eyes Right/node" = SubResource("AnimationNodeAnimation_bg2ay")
"nodes/Anim_Armature_001|Eyes Right/position" = Vector2(1600, 0)
"nodes/Anim_Armature_001|Eyes Up/node" = SubResource("AnimationNodeAnimation_1jkrh")
"nodes/Anim_Armature_001|Eyes Up/position" = Vector2(1800, 0)
"nodes/Anim_Armature_001|Head Down/node" = SubResource("AnimationNodeAnimation_jbrgj")
"nodes/Anim_Armature_001|Head Down/position" = Vector2(2000, 0)
"nodes/Anim_Armature_001|Head L/node" = SubResource("AnimationNodeAnimation_wyleq")
"nodes/Anim_Armature_001|Head L/position" = Vector2(2200, 0)
"nodes/Anim_Armature_001|Head R/node" = SubResource("AnimationNodeAnimation_u8eay")
"nodes/Anim_Armature_001|Head R/position" = Vector2(2400, 0)
"nodes/Anim_Armature_001|Head Tilt L/node" = SubResource("AnimationNodeAnimation_u4te3")
"nodes/Anim_Armature_001|Head Tilt L/position" = Vector2(2600, 0)
"nodes/Anim_Armature_001|Head Tilt R/node" = SubResource("AnimationNodeAnimation_3o12v")
"nodes/Anim_Armature_001|Head Tilt R/position" = Vector2(2800, 0)
"nodes/Anim_Armature_001|Head Up/node" = SubResource("AnimationNodeAnimation_ubl1w")
"nodes/Anim_Armature_001|Head Up/position" = Vector2(3000, 0)
nodes/Anim_Armature_001|Jaw/node = SubResource("AnimationNodeAnimation_4kdpy")
nodes/Anim_Armature_001|Jaw/position = Vector2(3200, 0)
"nodes/Anim_Armature_001|Underlid L/node" = SubResource("AnimationNodeAnimation_cuu4h")
"nodes/Anim_Armature_001|Underlid L/position" = Vector2(3400, 0)
"nodes/Anim_Armature_001|Underlid R/node" = SubResource("AnimationNodeAnimation_qeuyy")
"nodes/Anim_Armature_001|Underlid R/position" = Vector2(3600, 0)
nodes/output/position = Vector2(2200, 420)
node_connections = [&"Add_1", 0, &"Anim_Armature_001|Eyebrow L Down", &"Add_1", 1, &"Anim_Armature_001|Eyebrow L Up", &"Add_10", 0, &"Add_9", &"Add_10", 1, &"Anim_Armature_001|Head Down", &"Add_11", 0, &"Add_10", &"Add_11", 1, &"Anim_Armature_001|Head L", &"Add_12", 0, &"Add_11", &"Add_12", 1, &"Anim_Armature_001|Head R", &"Add_13", 0, &"Add_12", &"Add_13", 1, &"Anim_Armature_001|Head Tilt L", &"Add_14", 0, &"Add_13", &"Add_14", 1, &"Anim_Armature_001|Head Tilt R", &"Add_15", 0, &"Add_14", &"Add_15", 1, &"Anim_Armature_001|Head Up", &"Add_16", 0, &"Add_15", &"Add_16", 1, &"Anim_Armature_001|Jaw", &"Add_17", 0, &"Add_16", &"Add_17", 1, &"Anim_Armature_001|Underlid L", &"Add_18", 0, &"Add_17", &"Add_18", 1, &"Anim_Armature_001|Underlid R", &"Add_2", 0, &"Add_1", &"Add_2", 1, &"Anim_Armature_001|Eyebrow R Down", &"Add_3", 0, &"Add_2", &"Add_3", 1, &"Anim_Armature_001|Eyebrow R Up", &"Add_4", 0, &"Add_3", &"Add_4", 1, &"Anim_Armature_001|Eyelid L", &"Add_5", 0, &"Add_4", &"Add_5", 1, &"Anim_Armature_001|Eyelid R", &"Add_6", 0, &"Add_5", &"Add_6", 1, &"Anim_Armature_001|Eyes Down", &"Add_7", 0, &"Add_6", &"Add_7", 1, &"Anim_Armature_001|Eyes Left", &"Add_8", 0, &"Add_7", &"Add_8", 1, &"Anim_Armature_001|Eyes Right", &"Add_9", 0, &"Add_8", &"Add_9", 1, &"Anim_Armature_001|Eyes Up"]
[node name="_AnimationTree_3" type="AnimationTree"]
root_node = NodePath("../Chica")
tree_root = SubResource("AnimationNodeBlendTree_nsphc")
anim_player = NodePath("/root/Freddy\'s/Chica/Chica/AnimationPlayer")
parameters/Add_1/add_amount = 0
parameters/Add_10/add_amount = 0
parameters/Add_11/add_amount = 0
parameters/Add_12/add_amount = 0
parameters/Add_13/add_amount = 0
parameters/Add_14/add_amount = 0
parameters/Add_15/add_amount = 0
parameters/Add_16/add_amount = 0
parameters/Add_17/add_amount = 0
parameters/Add_18/add_amount = 0
parameters/Add_2/add_amount = 0
parameters/Add_3/add_amount = 0
parameters/Add_4/add_amount = 0
parameters/Add_5/add_amount = 0
parameters/Add_6/add_amount = 0
parameters/Add_7/add_amount = 0
parameters/Add_8/add_amount = 0
parameters/Add_9/add_amount = 0

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3 MiB

View file

@ -1,36 +0,0 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://fldji252qpey"
path.s3tc="res://.godot/imported/Chica_Main.png-ed504f430467d4015fe315fea792d4a0.s3tc.ctex"
path.etc2="res://.godot/imported/Chica_Main.png-ed504f430467d4015fe315fea792d4a0.etc2.ctex"
metadata={
"imported_formats": ["s3tc_bptc", "etc2_astc"],
"vram_texture": true
}
[deps]
source_file="res://Textures/Chica_Main.png"
dest_files=["res://.godot/imported/Chica_Main.png-ed504f430467d4015fe315fea792d4a0.s3tc.ctex", "res://.godot/imported/Chica_Main.png-ed504f430467d4015fe315fea792d4a0.etc2.ctex"]
[params]
compress/mode=2
compress/high_quality=false
compress/lossy_quality=0.7
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=true
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
process/fix_alpha_border=true
process/premult_alpha=false
process/normal_map_invert_y=false
process/hdr_as_srgb=false
process/hdr_clamp_exposure=false
process/size_limit=0
detect_3d/compress_to=0

Binary file not shown.

Before

Width:  |  Height:  |  Size: 14 MiB

View file

@ -1,36 +0,0 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://cev65j6tjoli8"
path.s3tc="res://.godot/imported/Chica_MaskMap.png-da402b4bd0fd237cfcfffbc191e529e9.s3tc.ctex"
path.etc2="res://.godot/imported/Chica_MaskMap.png-da402b4bd0fd237cfcfffbc191e529e9.etc2.ctex"
metadata={
"imported_formats": ["s3tc_bptc", "etc2_astc"],
"vram_texture": true
}
[deps]
source_file="res://Textures/Chica_MaskMap.png"
dest_files=["res://.godot/imported/Chica_MaskMap.png-da402b4bd0fd237cfcfffbc191e529e9.s3tc.ctex", "res://.godot/imported/Chica_MaskMap.png-da402b4bd0fd237cfcfffbc191e529e9.etc2.ctex"]
[params]
compress/mode=2
compress/high_quality=false
compress/lossy_quality=0.7
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=true
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
process/fix_alpha_border=true
process/premult_alpha=false
process/normal_map_invert_y=false
process/hdr_as_srgb=false
process/hdr_clamp_exposure=false
process/size_limit=0
detect_3d/compress_to=0

Binary file not shown.

Before

Width:  |  Height:  |  Size: 9.3 MiB

View file

@ -1,36 +0,0 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://bnrc4uavbcu8f"
path.s3tc="res://.godot/imported/Chica_NormalMap.png-69cc3ac2b8ef303f803e39dc3c32c557.s3tc.ctex"
path.etc2="res://.godot/imported/Chica_NormalMap.png-69cc3ac2b8ef303f803e39dc3c32c557.etc2.ctex"
metadata={
"imported_formats": ["s3tc_bptc", "etc2_astc"],
"vram_texture": true
}
[deps]
source_file="res://Textures/Chica_NormalMap.png"
dest_files=["res://.godot/imported/Chica_NormalMap.png-69cc3ac2b8ef303f803e39dc3c32c557.s3tc.ctex", "res://.godot/imported/Chica_NormalMap.png-69cc3ac2b8ef303f803e39dc3c32c557.etc2.ctex"]
[params]
compress/mode=2
compress/high_quality=false
compress/lossy_quality=0.7
compress/hdr_compression=1
compress/normal_map=1
compress/channel_pack=0
mipmaps/generate=true
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
process/fix_alpha_border=true
process/premult_alpha=false
process/normal_map_invert_y=false
process/hdr_as_srgb=false
process/hdr_clamp_exposure=false
process/size_limit=0
detect_3d/compress_to=0

Binary file not shown.

Before

Width:  |  Height:  |  Size: 5.3 MiB

View file

@ -1,36 +0,0 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://c6rqou6artl3b"
path.s3tc="res://.godot/imported/Chica_PaintMap.png-27b54e518bdb0ae4e5ae98e1172bf606.s3tc.ctex"
path.etc2="res://.godot/imported/Chica_PaintMap.png-27b54e518bdb0ae4e5ae98e1172bf606.etc2.ctex"
metadata={
"imported_formats": ["s3tc_bptc", "etc2_astc"],
"vram_texture": true
}
[deps]
source_file="res://Textures/Chica_PaintMap.png"
dest_files=["res://.godot/imported/Chica_PaintMap.png-27b54e518bdb0ae4e5ae98e1172bf606.s3tc.ctex", "res://.godot/imported/Chica_PaintMap.png-27b54e518bdb0ae4e5ae98e1172bf606.etc2.ctex"]
[params]
compress/mode=2
compress/high_quality=false
compress/lossy_quality=0.7
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=true
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
process/fix_alpha_border=true
process/premult_alpha=false
process/normal_map_invert_y=false
process/hdr_as_srgb=false
process/hdr_clamp_exposure=false
process/size_limit=0
detect_3d/compress_to=0

Binary file not shown.

Before

Width:  |  Height:  |  Size: 5.1 MiB

View file

@ -1,34 +0,0 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://d2njms16g6vfl"
path="res://.godot/imported/Cupcake_Main.png-d518e432db75053f895fce3ed439cd15.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://Textures/Cupcake_Main.png"
dest_files=["res://.godot/imported/Cupcake_Main.png-d518e432db75053f895fce3ed439cd15.ctex"]
[params]
compress/mode=0
compress/high_quality=false
compress/lossy_quality=0.7
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=false
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
process/fix_alpha_border=true
process/premult_alpha=false
process/normal_map_invert_y=false
process/hdr_as_srgb=false
process/hdr_clamp_exposure=false
process/size_limit=0
detect_3d/compress_to=1

Binary file not shown.

Before

Width:  |  Height:  |  Size: 6.1 MiB

View file

@ -1,34 +0,0 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://ds153o06s3h2o"
path="res://.godot/imported/Cupcake_MaskMap.png-d1b8a64b2e5697c6222c72c79b8fb35a.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://Textures/Cupcake_MaskMap.png"
dest_files=["res://.godot/imported/Cupcake_MaskMap.png-d1b8a64b2e5697c6222c72c79b8fb35a.ctex"]
[params]
compress/mode=0
compress/high_quality=false
compress/lossy_quality=0.7
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=false
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
process/fix_alpha_border=true
process/premult_alpha=false
process/normal_map_invert_y=false
process/hdr_as_srgb=false
process/hdr_clamp_exposure=false
process/size_limit=0
detect_3d/compress_to=1

Binary file not shown.

Before

Width:  |  Height:  |  Size: 5.7 MiB

View file

@ -1,34 +0,0 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://mib065wdrh1d"
path="res://.godot/imported/Cupcake_NormalMap.png-8c88436812b871309acff5c67a0a8120.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://Textures/Cupcake_NormalMap.png"
dest_files=["res://.godot/imported/Cupcake_NormalMap.png-8c88436812b871309acff5c67a0a8120.ctex"]
[params]
compress/mode=0
compress/high_quality=false
compress/lossy_quality=0.7
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=false
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
process/fix_alpha_border=true
process/premult_alpha=false
process/normal_map_invert_y=false
process/hdr_as_srgb=false
process/hdr_clamp_exposure=false
process/size_limit=0
detect_3d/compress_to=1

Binary file not shown.

Before

Width:  |  Height:  |  Size: 5.4 MiB

View file

@ -1,34 +0,0 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://ynfjrueskv6u"
path="res://.godot/imported/Cupcake_PaintMap.png-fb088a98baa56a3d9b16ccc307bd89c0.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://Textures/Cupcake_PaintMap.png"
dest_files=["res://.godot/imported/Cupcake_PaintMap.png-fb088a98baa56a3d9b16ccc307bd89c0.ctex"]
[params]
compress/mode=0
compress/high_quality=false
compress/lossy_quality=0.7
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=false
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
process/fix_alpha_border=true
process/premult_alpha=false
process/normal_map_invert_y=false
process/hdr_as_srgb=false
process/hdr_clamp_exposure=false
process/size_limit=0
detect_3d/compress_to=1

Binary file not shown.

View file

@ -1,35 +0,0 @@
[remap]
importer="font_data_dynamic"
type="FontFile"
uid="uid://d1fox3cy2qhx"
path="res://.godot/imported/lectus.otf-7c6965b88aea060243f3c50fbfb098b9.fontdata"
[deps]
source_file="res://UI/Fonts/lectus.otf"
dest_files=["res://.godot/imported/lectus.otf-7c6965b88aea060243f3c50fbfb098b9.fontdata"]
[params]
Rendering=null
antialiasing=1
generate_mipmaps=false
disable_embedded_bitmaps=true
multichannel_signed_distance_field=false
msdf_pixel_range=8
msdf_size=48
allow_system_fallback=true
force_autohinter=false
hinting=1
subpixel_positioning=4
keep_rounding_remainders=true
oversampling=0.0
Fallbacks=null
fallbacks=[]
Compress=null
compress=true
preload=[]
language_support={}
script_support={}
opentype_features={}

Binary file not shown.

View file

@ -1,35 +0,0 @@
[remap]
importer="font_data_dynamic"
type="FontFile"
uid="uid://kjbv8xwyxfmp"
path="res://.godot/imported/lectus.ttf-06bbf50f1312c892a54d0a5c8d6eacee.fontdata"
[deps]
source_file="res://UI/Fonts/lectus.ttf"
dest_files=["res://.godot/imported/lectus.ttf-06bbf50f1312c892a54d0a5c8d6eacee.fontdata"]
[params]
Rendering=null
antialiasing=1
generate_mipmaps=false
disable_embedded_bitmaps=true
multichannel_signed_distance_field=false
msdf_pixel_range=8
msdf_size=48
allow_system_fallback=true
force_autohinter=false
hinting=1
subpixel_positioning=4
keep_rounding_remainders=true
oversampling=0.0
Fallbacks=null
fallbacks=[]
Compress=null
compress=true
preload=[]
language_support={}
script_support={}
opentype_features={}

Binary file not shown.

Before

Width:  |  Height:  |  Size: 451 KiB

View file

@ -1,34 +0,0 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://cmt4jve3igkmj"
path="res://.godot/imported/GJ Thumbnail.png-fab9bdfc2c845c857afcd6f4764d463d.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://UI/GJ Thumbnail.png"
dest_files=["res://.godot/imported/GJ Thumbnail.png-fab9bdfc2c845c857afcd6f4764d463d.ctex"]
[params]
compress/mode=0
compress/high_quality=false
compress/lossy_quality=0.7
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=false
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
process/fix_alpha_border=true
process/premult_alpha=false
process/normal_map_invert_y=false
process/hdr_as_srgb=false
process/hdr_clamp_exposure=false
process/size_limit=0
detect_3d/compress_to=1

View file

@ -1,11 +1,10 @@
[gd_resource type="Theme" load_steps=3 format=3 uid="uid://b3wjoiiv6sq22"] [gd_resource type="Theme" load_steps=2 format=3 uid="uid://b3wjoiiv6sq22"]
[ext_resource type="FontFile" uid="uid://d1fox3cy2qhx" path="res://UI/Fonts/lectus.otf" id="1_crk4k"]
[ext_resource type="StyleBox" uid="uid://crsm0yvhb6rv1" path="res://UI/Themes/NodeTheme.tres" id="1_ne1i0"] [ext_resource type="StyleBox" uid="uid://crsm0yvhb6rv1" path="res://UI/Themes/NodeTheme.tres" id="1_ne1i0"]
[resource] [resource]
Label/font_sizes/font_size = 12 Label/font_sizes/font_size = 12
Label/fonts/font = ExtResource("1_crk4k") Label/fonts/font = null
MarginContainer/constants/margin_bottom = 10 MarginContainer/constants/margin_bottom = 10
MarginContainer/constants/margin_left = 10 MarginContainer/constants/margin_left = 10
MarginContainer/constants/margin_right = 10 MarginContainer/constants/margin_right = 10

View file

@ -1,7 +1,7 @@
[gd_resource type="StyleBoxFlat" format=3 uid="uid://crsm0yvhb6rv1"] [gd_resource type="StyleBoxFlat" format=3 uid="uid://crsm0yvhb6rv1"]
[resource] [resource]
bg_color = Color(0.178668, 0.310803, 0.118615, 1) bg_color = Color(0.181867, 0.1178, 0.31, 1)
border_width_left = 5 border_width_left = 5
border_width_top = 5 border_width_top = 5
border_width_right = 5 border_width_right = 5

BIN
UI/icon.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 20 KiB

View file

@ -2,16 +2,16 @@
importer="texture" importer="texture"
type="CompressedTexture2D" type="CompressedTexture2D"
uid="uid://bm7lia0bfpcyo" uid="uid://c3hmtf0h6vtnr"
path="res://.godot/imported/thelogo.png-901289f584a178b6ea0316c84739d1c4.ctex" path="res://.godot/imported/icon.png-d44ad423496976af115f803f6386bc82.ctex"
metadata={ metadata={
"vram_texture": false "vram_texture": false
} }
[deps] [deps]
source_file="res://UI/thelogo.png" source_file="res://UI/icon.png"
dest_files=["res://.godot/imported/thelogo.png-901289f584a178b6ea0316c84739d1c4.ctex"] dest_files=["res://.godot/imported/icon.png-d44ad423496976af115f803f6386bc82.ctex"]
[params] [params]

View file

@ -1 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" width="128" height="128"><rect width="124" height="124" x="2" y="2" fill="#363d52" stroke="#212532" stroke-width="4" rx="14"/><g fill="#fff" transform="translate(12.322 12.322)scale(.101)"><path d="M105 673v33q407 354 814 0v-33z"/><path fill="#478cbf" d="m105 673 152 14q12 1 15 14l4 67 132 10 8-61q2-11 15-15h162q13 4 15 15l8 61 132-10 4-67q3-13 15-14l152-14V427q30-39 56-81-35-59-83-108-43 20-82 47-40-37-88-64 7-51 8-102-59-28-123-42-26 43-46 89-49-7-98 0-20-46-46-89-64 14-123 42 1 51 8 102-48 27-88 64-39-27-82-47-48 49-83 108 26 42 56 81zm0 33v39c0 276 813 276 814 0v-39l-134 12-5 69q-2 10-14 13l-162 11q-12 0-16-11l-10-65H446l-10 65q-4 11-16 11l-162-11q-12-3-14-13l-5-69z"/><path d="M483 600c0 34 58 34 58 0v-86c0-34-58-34-58 0z"/><circle cx="725" cy="526" r="90"/><circle cx="299" cy="526" r="90"/></g><g fill="#414042" transform="translate(12.322 12.322)scale(.101)"><circle cx="307" cy="532" r="60"/><circle cx="717" cy="532" r="60"/></g></svg>

Before

Width:  |  Height:  |  Size: 994 B

View file

@ -1,37 +0,0 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://bhhh8jhxk0nm"
path="res://.godot/imported/icon.svg-c9c2a32fd2d5f8bc98ecd887f02eeda7.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://UI/icon.svg"
dest_files=["res://.godot/imported/icon.svg-c9c2a32fd2d5f8bc98ecd887f02eeda7.ctex"]
[params]
compress/mode=0
compress/high_quality=false
compress/lossy_quality=0.7
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=false
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
process/fix_alpha_border=true
process/premult_alpha=false
process/normal_map_invert_y=false
process/hdr_as_srgb=false
process/hdr_clamp_exposure=false
process/size_limit=0
detect_3d/compress_to=1
svg/scale=1.0
editor/scale_with_editor_scale=false
editor/convert_colors_with_editor_theme=false

Binary file not shown.

Before

Width:  |  Height:  |  Size: 967 KiB

View file

@ -1,34 +0,0 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://c1usct57qv2oa"
path="res://.godot/imported/logo subtitle.png-555f78e57eff7c883374a82c0c55727e.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://UI/logo subtitle.png"
dest_files=["res://.godot/imported/logo subtitle.png-555f78e57eff7c883374a82c0c55727e.ctex"]
[params]
compress/mode=0
compress/high_quality=false
compress/lossy_quality=0.7
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=false
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
process/fix_alpha_border=true
process/premult_alpha=false
process/normal_map_invert_y=false
process/hdr_as_srgb=false
process/hdr_clamp_exposure=false
process/size_limit=0
detect_3d/compress_to=1

Binary file not shown.

Before

Width:  |  Height:  |  Size: 883 KiB

376
die.tscn
View file

@ -1,376 +0,0 @@
[gd_scene load_steps=75 format=3 uid="uid://bx2kl1iqg2ivj"]
[sub_resource type="AnimationNodeAdd2" id="AnimationNodeAdd2_lbo6s"]
[sub_resource type="AnimationNodeAdd2" id="AnimationNodeAdd2_fl3nv"]
[sub_resource type="AnimationNodeAdd2" id="AnimationNodeAdd2_gxo0y"]
[sub_resource type="AnimationNodeAdd2" id="AnimationNodeAdd2_muu1c"]
[sub_resource type="AnimationNodeAdd2" id="AnimationNodeAdd2_q3244"]
[sub_resource type="AnimationNodeAdd2" id="AnimationNodeAdd2_qmayl"]
[sub_resource type="AnimationNodeAdd2" id="AnimationNodeAdd2_kwyh5"]
[sub_resource type="AnimationNodeAdd2" id="AnimationNodeAdd2_183hu"]
[sub_resource type="AnimationNodeAdd2" id="AnimationNodeAdd2_u0y2o"]
[sub_resource type="AnimationNodeAdd2" id="AnimationNodeAdd2_snfj7"]
[sub_resource type="AnimationNodeAdd2" id="AnimationNodeAdd2_85j3g"]
[sub_resource type="AnimationNodeAdd2" id="AnimationNodeAdd2_l438t"]
[sub_resource type="AnimationNodeAdd2" id="AnimationNodeAdd2_8fx4x"]
[sub_resource type="AnimationNodeAdd2" id="AnimationNodeAdd2_g5qhq"]
[sub_resource type="AnimationNodeAdd2" id="AnimationNodeAdd2_bv0h0"]
[sub_resource type="AnimationNodeAdd2" id="AnimationNodeAdd2_yaaqd"]
[sub_resource type="AnimationNodeAdd2" id="AnimationNodeAdd2_kniro"]
[sub_resource type="AnimationNodeAdd2" id="AnimationNodeAdd2_f33si"]
[sub_resource type="AnimationNodeAnimation" id="AnimationNodeAnimation_4cpll"]
animation = &"Armature_001|Eyebrow L Down"
[sub_resource type="AnimationNodeAnimation" id="AnimationNodeAnimation_qpb7f"]
animation = &"Armature_001|Eyebrow L Up"
[sub_resource type="AnimationNodeAnimation" id="AnimationNodeAnimation_lmous"]
animation = &"Armature_001|Eyebrow R Down"
[sub_resource type="AnimationNodeAnimation" id="AnimationNodeAnimation_u2bnb"]
animation = &"Armature_001|Eyebrow R Up"
[sub_resource type="AnimationNodeAnimation" id="AnimationNodeAnimation_7mtjn"]
animation = &"Armature_001|Eyelid L"
[sub_resource type="AnimationNodeAnimation" id="AnimationNodeAnimation_7h86c"]
animation = &"Armature_001|Eyelid R"
[sub_resource type="AnimationNodeAnimation" id="AnimationNodeAnimation_qlh2g"]
animation = &"Armature_001|Eyes Down"
[sub_resource type="AnimationNodeAnimation" id="AnimationNodeAnimation_cj8kg"]
animation = &"Armature_001|Eyes Left"
[sub_resource type="AnimationNodeAnimation" id="AnimationNodeAnimation_uhr37"]
animation = &"Armature_001|Eyes Right"
[sub_resource type="AnimationNodeAnimation" id="AnimationNodeAnimation_8cerg"]
animation = &"Armature_001|Eyes Up"
[sub_resource type="AnimationNodeAnimation" id="AnimationNodeAnimation_m31yb"]
animation = &"Armature_001|Head Down"
[sub_resource type="AnimationNodeAnimation" id="AnimationNodeAnimation_d5diq"]
animation = &"Armature_001|Head L"
[sub_resource type="AnimationNodeAnimation" id="AnimationNodeAnimation_xapou"]
animation = &"Armature_001|Head R"
[sub_resource type="AnimationNodeAnimation" id="AnimationNodeAnimation_rpjec"]
animation = &"Armature_001|Head Tilt L"
[sub_resource type="AnimationNodeAnimation" id="AnimationNodeAnimation_jt0mt"]
animation = &"Armature_001|Head Tilt R"
[sub_resource type="AnimationNodeAnimation" id="AnimationNodeAnimation_6210l"]
animation = &"Armature_001|Head Up"
[sub_resource type="AnimationNodeAnimation" id="AnimationNodeAnimation_77u8g"]
animation = &"Armature_001|Jaw"
[sub_resource type="AnimationNodeAnimation" id="AnimationNodeAnimation_8nlvx"]
animation = &"Armature_001|Underlid L"
[sub_resource type="AnimationNodeAnimation" id="AnimationNodeAnimation_flw6o"]
animation = &"Armature_001|Underlid R"
[sub_resource type="AnimationNodeTimeSeek" id="AnimationNodeTimeSeek_le5fc"]
[sub_resource type="AnimationNodeTimeSeek" id="AnimationNodeTimeSeek_hjrok"]
[sub_resource type="AnimationNodeTimeSeek" id="AnimationNodeTimeSeek_5tg10"]
[sub_resource type="AnimationNodeTimeSeek" id="AnimationNodeTimeSeek_pgiyy"]
[sub_resource type="AnimationNodeTimeSeek" id="AnimationNodeTimeSeek_ukuy4"]
[sub_resource type="AnimationNodeTimeSeek" id="AnimationNodeTimeSeek_7w0sy"]
[sub_resource type="AnimationNodeTimeSeek" id="AnimationNodeTimeSeek_wggr6"]
[sub_resource type="AnimationNodeTimeSeek" id="AnimationNodeTimeSeek_abofm"]
[sub_resource type="AnimationNodeTimeSeek" id="AnimationNodeTimeSeek_cq183"]
[sub_resource type="AnimationNodeTimeSeek" id="AnimationNodeTimeSeek_hvyeb"]
[sub_resource type="AnimationNodeTimeSeek" id="AnimationNodeTimeSeek_ahgo8"]
[sub_resource type="AnimationNodeTimeSeek" id="AnimationNodeTimeSeek_5y87j"]
[sub_resource type="AnimationNodeTimeSeek" id="AnimationNodeTimeSeek_7i8s2"]
[sub_resource type="AnimationNodeTimeSeek" id="AnimationNodeTimeSeek_o35r0"]
[sub_resource type="AnimationNodeTimeSeek" id="AnimationNodeTimeSeek_uqkn4"]
[sub_resource type="AnimationNodeTimeSeek" id="AnimationNodeTimeSeek_3wckt"]
[sub_resource type="AnimationNodeTimeSeek" id="AnimationNodeTimeSeek_dga0d"]
[sub_resource type="AnimationNodeTimeSeek" id="AnimationNodeTimeSeek_8kfkm"]
[sub_resource type="AnimationNodeTimeScale" id="AnimationNodeTimeScale_53c8b"]
[sub_resource type="AnimationNodeTimeScale" id="AnimationNodeTimeScale_jqjpb"]
[sub_resource type="AnimationNodeTimeScale" id="AnimationNodeTimeScale_crrmt"]
[sub_resource type="AnimationNodeTimeScale" id="AnimationNodeTimeScale_gbvq2"]
[sub_resource type="AnimationNodeTimeScale" id="AnimationNodeTimeScale_4qhyg"]
[sub_resource type="AnimationNodeTimeScale" id="AnimationNodeTimeScale_df1bn"]
[sub_resource type="AnimationNodeTimeScale" id="AnimationNodeTimeScale_l8qn7"]
[sub_resource type="AnimationNodeTimeScale" id="AnimationNodeTimeScale_slel0"]
[sub_resource type="AnimationNodeTimeScale" id="AnimationNodeTimeScale_fr3qd"]
[sub_resource type="AnimationNodeTimeScale" id="AnimationNodeTimeScale_7idei"]
[sub_resource type="AnimationNodeTimeScale" id="AnimationNodeTimeScale_6xlon"]
[sub_resource type="AnimationNodeTimeScale" id="AnimationNodeTimeScale_xi13f"]
[sub_resource type="AnimationNodeTimeScale" id="AnimationNodeTimeScale_q1qg3"]
[sub_resource type="AnimationNodeTimeScale" id="AnimationNodeTimeScale_f43wm"]
[sub_resource type="AnimationNodeTimeScale" id="AnimationNodeTimeScale_qci8h"]
[sub_resource type="AnimationNodeTimeScale" id="AnimationNodeTimeScale_7ul2e"]
[sub_resource type="AnimationNodeTimeScale" id="AnimationNodeTimeScale_attwm"]
[sub_resource type="AnimationNodeTimeScale" id="AnimationNodeTimeScale_r5o5r"]
[sub_resource type="AnimationNodeBlendTree" id="AnimationNodeBlendTree_f72i7"]
graph_offset = Vector2(-21.7794, 5509.12)
nodes/Add_1/node = SubResource("AnimationNodeAdd2_lbo6s")
nodes/Add_1/position = Vector2(800, 9180)
nodes/Add_10/node = SubResource("AnimationNodeAdd2_fl3nv")
nodes/Add_10/position = Vector2(840, 2440)
nodes/Add_11/node = SubResource("AnimationNodeAdd2_gxo0y")
nodes/Add_11/position = Vector2(840, 5100)
nodes/Add_12/node = SubResource("AnimationNodeAdd2_muu1c")
nodes/Add_12/position = Vector2(840, 5440)
nodes/Add_13/node = SubResource("AnimationNodeAdd2_q3244")
nodes/Add_13/position = Vector2(840, 5780)
nodes/Add_14/node = SubResource("AnimationNodeAdd2_qmayl")
nodes/Add_14/position = Vector2(840, 6120)
nodes/Add_15/node = SubResource("AnimationNodeAdd2_kwyh5")
nodes/Add_15/position = Vector2(840, 9520)
nodes/Add_16/node = SubResource("AnimationNodeAdd2_183hu")
nodes/Add_16/position = Vector2(840, 9860)
nodes/Add_17/node = SubResource("AnimationNodeAdd2_u0y2o")
nodes/Add_17/position = Vector2(840, 10220)
nodes/Add_18/node = SubResource("AnimationNodeAdd2_snfj7")
nodes/Add_18/position = Vector2(840, 10560)
nodes/Add_2/node = SubResource("AnimationNodeAdd2_85j3g")
nodes/Add_2/position = Vector2(840, 6460)
nodes/Add_3/node = SubResource("AnimationNodeAdd2_l438t")
nodes/Add_3/position = Vector2(840, 6800)
nodes/Add_4/node = SubResource("AnimationNodeAdd2_8fx4x")
nodes/Add_4/position = Vector2(840, 7140)
nodes/Add_5/node = SubResource("AnimationNodeAdd2_g5qhq")
nodes/Add_5/position = Vector2(840, 7480)
nodes/Add_6/node = SubResource("AnimationNodeAdd2_bv0h0")
nodes/Add_6/position = Vector2(840, 7820)
nodes/Add_7/node = SubResource("AnimationNodeAdd2_yaaqd")
nodes/Add_7/position = Vector2(840, 8160)
nodes/Add_8/node = SubResource("AnimationNodeAdd2_kniro")
nodes/Add_8/position = Vector2(840, 8500)
nodes/Add_9/node = SubResource("AnimationNodeAdd2_f33si")
nodes/Add_9/position = Vector2(840, 8840)
"nodes/Anim_Armature_001|Eyebrow L Down/node" = SubResource("AnimationNodeAnimation_4cpll")
"nodes/Anim_Armature_001|Eyebrow L Down/position" = Vector2(0, 0)
"nodes/Anim_Armature_001|Eyebrow L Up/node" = SubResource("AnimationNodeAnimation_qpb7f")
"nodes/Anim_Armature_001|Eyebrow L Up/position" = Vector2(0, 260)
"nodes/Anim_Armature_001|Eyebrow R Down/node" = SubResource("AnimationNodeAnimation_lmous")
"nodes/Anim_Armature_001|Eyebrow R Down/position" = Vector2(0, 520)
"nodes/Anim_Armature_001|Eyebrow R Up/node" = SubResource("AnimationNodeAnimation_u2bnb")
"nodes/Anim_Armature_001|Eyebrow R Up/position" = Vector2(0, 780)
"nodes/Anim_Armature_001|Eyelid L/node" = SubResource("AnimationNodeAnimation_7mtjn")
"nodes/Anim_Armature_001|Eyelid L/position" = Vector2(0, 1040)
"nodes/Anim_Armature_001|Eyelid R/node" = SubResource("AnimationNodeAnimation_7h86c")
"nodes/Anim_Armature_001|Eyelid R/position" = Vector2(0, 1300)
"nodes/Anim_Armature_001|Eyes Down/node" = SubResource("AnimationNodeAnimation_qlh2g")
"nodes/Anim_Armature_001|Eyes Down/position" = Vector2(0, 1540)
"nodes/Anim_Armature_001|Eyes Left/node" = SubResource("AnimationNodeAnimation_cj8kg")
"nodes/Anim_Armature_001|Eyes Left/position" = Vector2(0, 1800)
"nodes/Anim_Armature_001|Eyes Right/node" = SubResource("AnimationNodeAnimation_uhr37")
"nodes/Anim_Armature_001|Eyes Right/position" = Vector2(0, 2060)
"nodes/Anim_Armature_001|Eyes Up/node" = SubResource("AnimationNodeAnimation_8cerg")
"nodes/Anim_Armature_001|Eyes Up/position" = Vector2(0, 2320)
"nodes/Anim_Armature_001|Head Down/node" = SubResource("AnimationNodeAnimation_m31yb")
"nodes/Anim_Armature_001|Head Down/position" = Vector2(0, 2580)
"nodes/Anim_Armature_001|Head L/node" = SubResource("AnimationNodeAnimation_d5diq")
"nodes/Anim_Armature_001|Head L/position" = Vector2(0, 5240)
"nodes/Anim_Armature_001|Head R/node" = SubResource("AnimationNodeAnimation_xapou")
"nodes/Anim_Armature_001|Head R/position" = Vector2(0, 5580)
"nodes/Anim_Armature_001|Head Tilt L/node" = SubResource("AnimationNodeAnimation_rpjec")
"nodes/Anim_Armature_001|Head Tilt L/position" = Vector2(0, 5920)
"nodes/Anim_Armature_001|Head Tilt R/node" = SubResource("AnimationNodeAnimation_jt0mt")
"nodes/Anim_Armature_001|Head Tilt R/position" = Vector2(0, 6260)
"nodes/Anim_Armature_001|Head Up/node" = SubResource("AnimationNodeAnimation_6210l")
"nodes/Anim_Armature_001|Head Up/position" = Vector2(0, 9660)
nodes/Anim_Armature_001|Jaw/node = SubResource("AnimationNodeAnimation_77u8g")
nodes/Anim_Armature_001|Jaw/position = Vector2(0, 10000)
"nodes/Anim_Armature_001|Underlid L/node" = SubResource("AnimationNodeAnimation_8nlvx")
"nodes/Anim_Armature_001|Underlid L/position" = Vector2(0, 10340)
"nodes/Anim_Armature_001|Underlid R/node" = SubResource("AnimationNodeAnimation_flw6o")
"nodes/Anim_Armature_001|Underlid R/position" = Vector2(0, 10680)
nodes/Seek_1/node = SubResource("AnimationNodeTimeSeek_le5fc")
nodes/Seek_1/position = Vector2(440, 4920)
nodes/Seek_10/node = SubResource("AnimationNodeTimeSeek_hjrok")
nodes/Seek_10/position = Vector2(620, 2520)
nodes/Seek_11/node = SubResource("AnimationNodeTimeSeek_5tg10")
nodes/Seek_11/position = Vector2(620, 5160)
nodes/Seek_12/node = SubResource("AnimationNodeTimeSeek_pgiyy")
nodes/Seek_12/position = Vector2(620, 5500)
nodes/Seek_13/node = SubResource("AnimationNodeTimeSeek_ukuy4")
nodes/Seek_13/position = Vector2(620, 5840)
nodes/Seek_14/node = SubResource("AnimationNodeTimeSeek_7w0sy")
nodes/Seek_14/position = Vector2(620, 6180)
nodes/Seek_15/node = SubResource("AnimationNodeTimeSeek_wggr6")
nodes/Seek_15/position = Vector2(620, 9600)
nodes/Seek_16/node = SubResource("AnimationNodeTimeSeek_abofm")
nodes/Seek_16/position = Vector2(620, 9940)
nodes/Seek_17/node = SubResource("AnimationNodeTimeSeek_cq183")
nodes/Seek_17/position = Vector2(620, 10280)
nodes/Seek_18/node = SubResource("AnimationNodeTimeSeek_hvyeb")
nodes/Seek_18/position = Vector2(620, 10620)
nodes/Seek_2/node = SubResource("AnimationNodeTimeSeek_ahgo8")
nodes/Seek_2/position = Vector2(620, 2780)
nodes/Seek_3/node = SubResource("AnimationNodeTimeSeek_5y87j")
nodes/Seek_3/position = Vector2(620, 3040)
nodes/Seek_4/node = SubResource("AnimationNodeTimeSeek_7i8s2")
nodes/Seek_4/position = Vector2(620, 3300)
nodes/Seek_5/node = SubResource("AnimationNodeTimeSeek_o35r0")
nodes/Seek_5/position = Vector2(620, 3580)
nodes/Seek_6/node = SubResource("AnimationNodeTimeSeek_uqkn4")
nodes/Seek_6/position = Vector2(620, 3840)
nodes/Seek_7/node = SubResource("AnimationNodeTimeSeek_3wckt")
nodes/Seek_7/position = Vector2(620, 4100)
nodes/Seek_8/node = SubResource("AnimationNodeTimeSeek_dga0d")
nodes/Seek_8/position = Vector2(620, 4360)
nodes/Seek_9/node = SubResource("AnimationNodeTimeSeek_8kfkm")
nodes/Seek_9/position = Vector2(620, 4640)
nodes/Time_1/node = SubResource("AnimationNodeTimeScale_53c8b")
nodes/Time_1/position = Vector2(400, 220)
nodes/Time_10/node = SubResource("AnimationNodeTimeScale_jqjpb")
nodes/Time_10/position = Vector2(400, 2540)
nodes/Time_11/node = SubResource("AnimationNodeTimeScale_crrmt")
nodes/Time_11/position = Vector2(400, 5200)
nodes/Time_12/node = SubResource("AnimationNodeTimeScale_gbvq2")
nodes/Time_12/position = Vector2(400, 5540)
nodes/Time_13/node = SubResource("AnimationNodeTimeScale_4qhyg")
nodes/Time_13/position = Vector2(400, 5880)
nodes/Time_14/node = SubResource("AnimationNodeTimeScale_df1bn")
nodes/Time_14/position = Vector2(400, 6220)
nodes/Time_15/node = SubResource("AnimationNodeTimeScale_l8qn7")
nodes/Time_15/position = Vector2(400, 9620)
nodes/Time_16/node = SubResource("AnimationNodeTimeScale_slel0")
nodes/Time_16/position = Vector2(400, 9980)
nodes/Time_17/node = SubResource("AnimationNodeTimeScale_fr3qd")
nodes/Time_17/position = Vector2(400, 10320)
nodes/Time_18/node = SubResource("AnimationNodeTimeScale_7idei")
nodes/Time_18/position = Vector2(400, 10660)
nodes/Time_2/node = SubResource("AnimationNodeTimeScale_6xlon")
nodes/Time_2/position = Vector2(400, 2820)
nodes/Time_3/node = SubResource("AnimationNodeTimeScale_xi13f")
nodes/Time_3/position = Vector2(400, 3080)
nodes/Time_4/node = SubResource("AnimationNodeTimeScale_q1qg3")
nodes/Time_4/position = Vector2(400, 3340)
nodes/Time_5/node = SubResource("AnimationNodeTimeScale_f43wm")
nodes/Time_5/position = Vector2(400, 3600)
nodes/Time_6/node = SubResource("AnimationNodeTimeScale_qci8h")
nodes/Time_6/position = Vector2(400, 3880)
nodes/Time_7/node = SubResource("AnimationNodeTimeScale_7ul2e")
nodes/Time_7/position = Vector2(400, 4140)
nodes/Time_8/node = SubResource("AnimationNodeTimeScale_attwm")
nodes/Time_8/position = Vector2(400, 4400)
nodes/Time_9/node = SubResource("AnimationNodeTimeScale_r5o5r")
nodes/Time_9/position = Vector2(400, 4660)
nodes/output/position = Vector2(220, 10940)
node_connections = [&"Add_1", 0, &"Anim_Armature_001|Eyebrow L Down", &"Add_1", 1, &"Seek_1", &"Add_10", 1, &"Seek_10", &"Add_11", 1, &"Seek_11", &"Add_12", 1, &"Seek_12", &"Add_13", 1, &"Seek_13", &"Add_14", 1, &"Seek_14", &"Add_15", 1, &"Seek_15", &"Add_16", 1, &"Seek_16", &"Add_17", 1, &"Seek_17", &"Add_18", 1, &"Seek_18", &"Add_2", 1, &"Seek_2", &"Add_3", 1, &"Seek_3", &"Add_4", 1, &"Seek_4", &"Add_5", 1, &"Seek_5", &"Add_6", 1, &"Seek_6", &"Add_7", 1, &"Seek_7", &"Add_8", 1, &"Seek_8", &"Add_9", 1, &"Seek_9", &"Seek_1", 0, &"Time_1", &"Seek_10", 0, &"Time_10", &"Seek_11", 0, &"Time_11", &"Seek_12", 0, &"Time_12", &"Seek_13", 0, &"Time_13", &"Seek_14", 0, &"Time_14", &"Seek_15", 0, &"Time_15", &"Seek_16", 0, &"Time_16", &"Seek_17", 0, &"Time_17", &"Seek_18", 0, &"Time_18", &"Seek_2", 0, &"Time_2", &"Seek_3", 0, &"Time_3", &"Seek_4", 0, &"Time_4", &"Seek_5", 0, &"Time_5", &"Seek_6", 0, &"Time_6", &"Seek_7", 0, &"Time_7", &"Seek_8", 0, &"Time_8", &"Seek_9", 0, &"Time_9", &"Time_1", 0, &"Anim_Armature_001|Eyebrow L Up", &"Time_10", 0, &"Anim_Armature_001|Head Down", &"Time_11", 0, &"Anim_Armature_001|Head L", &"Time_12", 0, &"Anim_Armature_001|Head R", &"Time_13", 0, &"Anim_Armature_001|Head Tilt L", &"Time_14", 0, &"Anim_Armature_001|Head Tilt R", &"Time_15", 0, &"Anim_Armature_001|Head Up", &"Time_16", 0, &"Anim_Armature_001|Jaw", &"Time_17", 0, &"Anim_Armature_001|Underlid L", &"Time_18", 0, &"Anim_Armature_001|Underlid R", &"Time_2", 0, &"Anim_Armature_001|Eyebrow R Down", &"Time_3", 0, &"Anim_Armature_001|Eyebrow R Up", &"Time_4", 0, &"Anim_Armature_001|Eyelid L", &"Time_5", 0, &"Anim_Armature_001|Eyelid R", &"Time_6", 0, &"Anim_Armature_001|Eyes Down", &"Time_7", 0, &"Anim_Armature_001|Eyes Left", &"Time_8", 0, &"Anim_Armature_001|Eyes Right", &"Time_9", 0, &"Anim_Armature_001|Eyes Up"]
[node name="_AnimationTree_3" type="AnimationTree"]
root_node = NodePath("../Chica")
tree_root = SubResource("AnimationNodeBlendTree_f72i7")
anim_player = NodePath("/root/Freddy\'s/Chica/Chica/AnimationPlayer")
parameters/Add_1/add_amount = 1.0
parameters/Add_10/add_amount = 1.0
parameters/Add_11/add_amount = 1.0
parameters/Add_12/add_amount = 1.0
parameters/Add_13/add_amount = 1.0
parameters/Add_14/add_amount = 1.0
parameters/Add_15/add_amount = 1.0
parameters/Add_16/add_amount = 1.0
parameters/Add_17/add_amount = 1.0
parameters/Add_18/add_amount = 1.0
parameters/Add_2/add_amount = 1.0
parameters/Add_3/add_amount = 1.0
parameters/Add_4/add_amount = 1.0
parameters/Add_5/add_amount = 1.0
parameters/Add_6/add_amount = 1.0
parameters/Add_7/add_amount = 1.0
parameters/Add_8/add_amount = 1.0
parameters/Add_9/add_amount = 1.0
parameters/Seek_1/seek_request = 0
parameters/Seek_10/seek_request = 0
parameters/Seek_11/seek_request = 0
parameters/Seek_12/seek_request = 0
parameters/Seek_13/seek_request = 0
parameters/Seek_14/seek_request = 0
parameters/Seek_15/seek_request = 0
parameters/Seek_16/seek_request = 0
parameters/Seek_17/seek_request = 0
parameters/Seek_18/seek_request = 0
parameters/Seek_2/seek_request = 0
parameters/Seek_3/seek_request = 0
parameters/Seek_4/seek_request = 0
parameters/Seek_5/seek_request = 0
parameters/Seek_6/seek_request = 0
parameters/Seek_7/seek_request = 0
parameters/Seek_8/seek_request = 0
parameters/Seek_9/seek_request = 0
parameters/Time_1/scale = 0
parameters/Time_10/scale = 0
parameters/Time_11/scale = 0
parameters/Time_12/scale = 0
parameters/Time_13/scale = 0
parameters/Time_14/scale = 0
parameters/Time_15/scale = 0
parameters/Time_16/scale = 0
parameters/Time_17/scale = 0
parameters/Time_18/scale = 0
parameters/Time_2/scale = 0
parameters/Time_3/scale = 0
parameters/Time_4/scale = 0
parameters/Time_5/scale = 0
parameters/Time_6/scale = 0
parameters/Time_7/scale = 0
parameters/Time_8/scale = 0
parameters/Time_9/scale = 0

View file

@ -10,12 +10,12 @@ config_version=5
[application] [application]
config/name="Give LIFE" config/name="Give LIFE Cybers"
config/description="The sequel to Faz-Anim" config/description="Cyberamics Simulator and programmer using Give LIFE's engine"
config/version="0.1a" config/version="rolling"
run/main_scene="uid://qvo7vlvac8o5" run/main_scene="uid://qvo7vlvac8o5"
config/features=PackedStringArray("4.4", "Forward Plus") config/features=PackedStringArray("4.4", "Forward Plus")
config/icon="uid://c1usct57qv2oa" config/icon="uid://c3hmtf0h6vtnr"
[filesystem] [filesystem]

200
test.tscn
View file

@ -1,200 +0,0 @@
[gd_scene load_steps=40 format=3 uid="uid://i53ndclribr8"]
[sub_resource type="AnimationNodeAdd2" id="AnimationNodeAdd2_mf4mk"]
[sub_resource type="AnimationNodeAdd2" id="AnimationNodeAdd2_37kl0"]
[sub_resource type="AnimationNodeAdd2" id="AnimationNodeAdd2_8uh7m"]
[sub_resource type="AnimationNodeAdd2" id="AnimationNodeAdd2_6uqi0"]
[sub_resource type="AnimationNodeAdd2" id="AnimationNodeAdd2_ppyta"]
[sub_resource type="AnimationNodeAdd2" id="AnimationNodeAdd2_ykrsh"]
[sub_resource type="AnimationNodeAdd2" id="AnimationNodeAdd2_g14j6"]
[sub_resource type="AnimationNodeAdd2" id="AnimationNodeAdd2_vbegm"]
[sub_resource type="AnimationNodeAdd2" id="AnimationNodeAdd2_ehkex"]
[sub_resource type="AnimationNodeAdd2" id="AnimationNodeAdd2_xersf"]
[sub_resource type="AnimationNodeAdd2" id="AnimationNodeAdd2_00tp4"]
[sub_resource type="AnimationNodeAdd2" id="AnimationNodeAdd2_77dp3"]
[sub_resource type="AnimationNodeAdd2" id="AnimationNodeAdd2_5tkv4"]
[sub_resource type="AnimationNodeAdd2" id="AnimationNodeAdd2_0m0f1"]
[sub_resource type="AnimationNodeAdd2" id="AnimationNodeAdd2_b0q6j"]
[sub_resource type="AnimationNodeAdd2" id="AnimationNodeAdd2_mhym6"]
[sub_resource type="AnimationNodeAdd2" id="AnimationNodeAdd2_a3se8"]
[sub_resource type="AnimationNodeAdd2" id="AnimationNodeAdd2_uty7l"]
[sub_resource type="AnimationNodeAnimation" id="AnimationNodeAnimation_45l4g"]
animation = &"Armature_001|Eyebrow L Down"
[sub_resource type="AnimationNodeAnimation" id="AnimationNodeAnimation_4uo0j"]
animation = &"Armature_001|Eyebrow L Up"
[sub_resource type="AnimationNodeAnimation" id="AnimationNodeAnimation_vxl6d"]
animation = &"Armature_001|Eyebrow R Down"
[sub_resource type="AnimationNodeAnimation" id="AnimationNodeAnimation_eski5"]
animation = &"Armature_001|Eyebrow R Up"
[sub_resource type="AnimationNodeAnimation" id="AnimationNodeAnimation_pdf00"]
animation = &"Armature_001|Eyelid L"
[sub_resource type="AnimationNodeAnimation" id="AnimationNodeAnimation_a6gra"]
animation = &"Armature_001|Eyelid R"
[sub_resource type="AnimationNodeAnimation" id="AnimationNodeAnimation_dwqlq"]
animation = &"Armature_001|Eyes Down"
[sub_resource type="AnimationNodeAnimation" id="AnimationNodeAnimation_15c7i"]
animation = &"Armature_001|Eyes Left"
[sub_resource type="AnimationNodeAnimation" id="AnimationNodeAnimation_xpeyw"]
animation = &"Armature_001|Eyes Right"
[sub_resource type="AnimationNodeAnimation" id="AnimationNodeAnimation_dpmuy"]
animation = &"Armature_001|Eyes Up"
[sub_resource type="AnimationNodeAnimation" id="AnimationNodeAnimation_j75vh"]
animation = &"Armature_001|Head L"
[sub_resource type="AnimationNodeAnimation" id="AnimationNodeAnimation_rrpoi"]
animation = &"Armature_001|Head R"
[sub_resource type="AnimationNodeAnimation" id="AnimationNodeAnimation_34fux"]
animation = &"Armature_001|Head Tilt L"
[sub_resource type="AnimationNodeAnimation" id="AnimationNodeAnimation_ppv7d"]
animation = &"Armature_001|Head Tilt R"
[sub_resource type="AnimationNodeAnimation" id="AnimationNodeAnimation_naet1"]
animation = &"Armature_001|Head Up"
[sub_resource type="AnimationNodeAnimation" id="AnimationNodeAnimation_6qlrc"]
animation = &"Armature_001|Jaw"
[sub_resource type="AnimationNodeAnimation" id="AnimationNodeAnimation_shobf"]
animation = &"Armature_001|Underlid L"
[sub_resource type="AnimationNodeAnimation" id="AnimationNodeAnimation_lb1cv"]
animation = &"Armature_001|Underlid R"
[sub_resource type="AnimationNodeAnimation" id="AnimationNodeAnimation_yww54"]
animation = &"Armature_001|Head Down"
[sub_resource type="AnimationNodeOutput" id="AnimationNodeOutput_2h37t"]
[sub_resource type="AnimationNodeBlendTree" id="AnimationNodeBlendTree_adp8l"]
graph_offset = Vector2(1784.38, 49.2519)
nodes/Add_1/node = SubResource("AnimationNodeAdd2_mf4mk")
nodes/Add_1/position = Vector2(200, 100)
nodes/Add_10/node = SubResource("AnimationNodeAdd2_37kl0")
nodes/Add_10/position = Vector2(2000, 100)
nodes/Add_11/node = SubResource("AnimationNodeAdd2_8uh7m")
nodes/Add_11/position = Vector2(2200, 100)
nodes/Add_12/node = SubResource("AnimationNodeAdd2_6uqi0")
nodes/Add_12/position = Vector2(2400, 100)
nodes/Add_13/node = SubResource("AnimationNodeAdd2_ppyta")
nodes/Add_13/position = Vector2(2600, 100)
nodes/Add_14/node = SubResource("AnimationNodeAdd2_ykrsh")
nodes/Add_14/position = Vector2(2800, 100)
nodes/Add_15/node = SubResource("AnimationNodeAdd2_g14j6")
nodes/Add_15/position = Vector2(3000, 100)
nodes/Add_16/node = SubResource("AnimationNodeAdd2_vbegm")
nodes/Add_16/position = Vector2(3200, 100)
nodes/Add_17/node = SubResource("AnimationNodeAdd2_ehkex")
nodes/Add_17/position = Vector2(3400, 100)
nodes/Add_18/node = SubResource("AnimationNodeAdd2_xersf")
nodes/Add_18/position = Vector2(3600, 100)
nodes/Add_2/node = SubResource("AnimationNodeAdd2_00tp4")
nodes/Add_2/position = Vector2(400, 100)
nodes/Add_3/node = SubResource("AnimationNodeAdd2_77dp3")
nodes/Add_3/position = Vector2(600, 100)
nodes/Add_4/node = SubResource("AnimationNodeAdd2_5tkv4")
nodes/Add_4/position = Vector2(800, 100)
nodes/Add_5/node = SubResource("AnimationNodeAdd2_0m0f1")
nodes/Add_5/position = Vector2(1000, 100)
nodes/Add_6/node = SubResource("AnimationNodeAdd2_b0q6j")
nodes/Add_6/position = Vector2(1200, 100)
nodes/Add_7/node = SubResource("AnimationNodeAdd2_mhym6")
nodes/Add_7/position = Vector2(1400, 100)
nodes/Add_8/node = SubResource("AnimationNodeAdd2_a3se8")
nodes/Add_8/position = Vector2(1600, 100)
nodes/Add_9/node = SubResource("AnimationNodeAdd2_uty7l")
nodes/Add_9/position = Vector2(1800, 100)
"nodes/Anim_Armature_001|Eyebrow L Down/node" = SubResource("AnimationNodeAnimation_45l4g")
"nodes/Anim_Armature_001|Eyebrow L Down/position" = Vector2(-200, 120)
"nodes/Anim_Armature_001|Eyebrow L Up/node" = SubResource("AnimationNodeAnimation_4uo0j")
"nodes/Anim_Armature_001|Eyebrow L Up/position" = Vector2(-200, 340)
"nodes/Anim_Armature_001|Eyebrow R Down/node" = SubResource("AnimationNodeAnimation_vxl6d")
"nodes/Anim_Armature_001|Eyebrow R Down/position" = Vector2(400, 0)
"nodes/Anim_Armature_001|Eyebrow R Up/node" = SubResource("AnimationNodeAnimation_eski5")
"nodes/Anim_Armature_001|Eyebrow R Up/position" = Vector2(600, 0)
"nodes/Anim_Armature_001|Eyelid L/node" = SubResource("AnimationNodeAnimation_pdf00")
"nodes/Anim_Armature_001|Eyelid L/position" = Vector2(800, 0)
"nodes/Anim_Armature_001|Eyelid R/node" = SubResource("AnimationNodeAnimation_a6gra")
"nodes/Anim_Armature_001|Eyelid R/position" = Vector2(1000, 0)
"nodes/Anim_Armature_001|Eyes Down/node" = SubResource("AnimationNodeAnimation_dwqlq")
"nodes/Anim_Armature_001|Eyes Down/position" = Vector2(1200, 0)
"nodes/Anim_Armature_001|Eyes Left/node" = SubResource("AnimationNodeAnimation_15c7i")
"nodes/Anim_Armature_001|Eyes Left/position" = Vector2(1400, 0)
"nodes/Anim_Armature_001|Eyes Right/node" = SubResource("AnimationNodeAnimation_xpeyw")
"nodes/Anim_Armature_001|Eyes Right/position" = Vector2(1600, 0)
"nodes/Anim_Armature_001|Eyes Up/node" = SubResource("AnimationNodeAnimation_dpmuy")
"nodes/Anim_Armature_001|Eyes Up/position" = Vector2(980, -200)
"nodes/Anim_Armature_001|Head L/node" = SubResource("AnimationNodeAnimation_j75vh")
"nodes/Anim_Armature_001|Head L/position" = Vector2(1480, -220)
"nodes/Anim_Armature_001|Head R/node" = SubResource("AnimationNodeAnimation_rrpoi")
"nodes/Anim_Armature_001|Head R/position" = Vector2(1780, -220)
"nodes/Anim_Armature_001|Head Tilt L/node" = SubResource("AnimationNodeAnimation_34fux")
"nodes/Anim_Armature_001|Head Tilt L/position" = Vector2(2120, -240)
"nodes/Anim_Armature_001|Head Tilt R/node" = SubResource("AnimationNodeAnimation_ppv7d")
"nodes/Anim_Armature_001|Head Tilt R/position" = Vector2(2500, -260)
"nodes/Anim_Armature_001|Head Up/node" = SubResource("AnimationNodeAnimation_naet1")
"nodes/Anim_Armature_001|Head Up/position" = Vector2(2860, -180)
nodes/Anim_Armature_001|Jaw/node = SubResource("AnimationNodeAnimation_6qlrc")
nodes/Anim_Armature_001|Jaw/position = Vector2(3100, -140)
"nodes/Anim_Armature_001|Underlid L/node" = SubResource("AnimationNodeAnimation_shobf")
"nodes/Anim_Armature_001|Underlid L/position" = Vector2(3340, -120)
"nodes/Anim_Armature_001|Underlid R/node" = SubResource("AnimationNodeAnimation_lb1cv")
"nodes/Anim_Armature_001|Underlid R/position" = Vector2(3660, -80)
"nodes/Anim_Armature_new_add_name001|Head Down/node" = SubResource("AnimationNodeAnimation_yww54")
"nodes/Anim_Armature_new_add_name001|Head Down/position" = Vector2(1200, -460)
nodes/Output/node = SubResource("AnimationNodeOutput_2h37t")
nodes/Output/position = Vector2(4000, 100)
nodes/output/position = Vector2(4040, 280)
node_connections = [&"Add_1", 0, &"Anim_Armature_001|Eyebrow L Down", &"Add_1", 1, &"Anim_Armature_001|Eyebrow L Up", &"Add_10", 0, &"Add_9", &"Add_10", 1, &"Anim_Armature_new_add_name001|Head Down", &"Add_11", 0, &"Add_10", &"Add_11", 1, &"Anim_Armature_001|Head L", &"Add_12", 0, &"Add_11", &"Add_12", 1, &"Anim_Armature_001|Head R", &"Add_13", 0, &"Add_12", &"Add_13", 1, &"Anim_Armature_001|Head Tilt L", &"Add_14", 0, &"Add_13", &"Add_14", 1, &"Anim_Armature_001|Head Tilt R", &"Add_15", 0, &"Add_14", &"Add_15", 1, &"Anim_Armature_001|Head Up", &"Add_16", 0, &"Add_15", &"Add_16", 1, &"Anim_Armature_001|Jaw", &"Add_17", 0, &"Add_16", &"Add_17", 1, &"Anim_Armature_001|Underlid L", &"Add_18", 0, &"Add_17", &"Add_18", 1, &"Anim_Armature_001|Underlid R", &"Add_2", 0, &"Add_1", &"Add_2", 1, &"Anim_Armature_001|Eyebrow R Down", &"Add_3", 0, &"Add_2", &"Add_3", 1, &"Anim_Armature_001|Eyebrow R Up", &"Add_4", 0, &"Add_3", &"Add_4", 1, &"Anim_Armature_001|Eyelid L", &"Add_5", 0, &"Add_4", &"Add_5", 1, &"Anim_Armature_001|Eyelid R", &"Add_6", 0, &"Add_5", &"Add_6", 1, &"Anim_Armature_001|Eyes Down", &"Add_7", 0, &"Add_6", &"Add_7", 1, &"Anim_Armature_001|Eyes Left", &"Add_8", 0, &"Add_7", &"Add_8", 1, &"Anim_Armature_001|Eyes Right", &"Add_9", 0, &"Add_8", &"Add_9", 1, &"Anim_Armature_001|Eyes Up", &"output", 0, &"Add_18"]
[node name="_AnimationTree_3" type="AnimationTree"]
root_node = NodePath("../Chica")
tree_root = SubResource("AnimationNodeBlendTree_adp8l")
anim_player = NodePath("/root/Freddy\'s/Chica/Chica/AnimationPlayer")
parameters/Add_1/add_amount = 1.0
parameters/Add_10/add_amount = 1.0
parameters/Add_11/add_amount = 1.0
parameters/Add_12/add_amount = 1.0
parameters/Add_13/add_amount = 1.0
parameters/Add_14/add_amount = 1.0
parameters/Add_15/add_amount = 1.0
parameters/Add_16/add_amount = 1.0
parameters/Add_17/add_amount = 1.0
parameters/Add_18/add_amount = 1.0
parameters/Add_2/add_amount = 1.0
parameters/Add_3/add_amount = 1.0
parameters/Add_4/add_amount = 1.0
parameters/Add_5/add_amount = 1.0
parameters/Add_6/add_amount = 1.0
parameters/Add_7/add_amount = 1.0
parameters/Add_8/add_amount = 1.0
parameters/Add_9/add_amount = 1.0

View file

@ -1,196 +0,0 @@
[gd_scene load_steps=39 format=3 uid="uid://cnh4p6a6wy1w"]
[sub_resource type="AnimationNodeAdd2" id="AnimationNodeAdd2_po782"]
[sub_resource type="AnimationNodeAdd2" id="AnimationNodeAdd2_lnpje"]
[sub_resource type="AnimationNodeAdd2" id="AnimationNodeAdd2_jq1x4"]
[sub_resource type="AnimationNodeAdd2" id="AnimationNodeAdd2_svvfb"]
[sub_resource type="AnimationNodeAdd2" id="AnimationNodeAdd2_8hojv"]
[sub_resource type="AnimationNodeAdd2" id="AnimationNodeAdd2_qj7nf"]
[sub_resource type="AnimationNodeAdd2" id="AnimationNodeAdd2_3du0l"]
[sub_resource type="AnimationNodeAdd2" id="AnimationNodeAdd2_833nb"]
[sub_resource type="AnimationNodeAdd2" id="AnimationNodeAdd2_605kl"]
[sub_resource type="AnimationNodeAdd2" id="AnimationNodeAdd2_bqkbb"]
[sub_resource type="AnimationNodeAdd2" id="AnimationNodeAdd2_0gudw"]
[sub_resource type="AnimationNodeAdd2" id="AnimationNodeAdd2_uamae"]
[sub_resource type="AnimationNodeAdd2" id="AnimationNodeAdd2_iacw3"]
[sub_resource type="AnimationNodeAdd2" id="AnimationNodeAdd2_vx16h"]
[sub_resource type="AnimationNodeAdd2" id="AnimationNodeAdd2_aw5a4"]
[sub_resource type="AnimationNodeAdd2" id="AnimationNodeAdd2_t7bsg"]
[sub_resource type="AnimationNodeAdd2" id="AnimationNodeAdd2_tfmfu"]
[sub_resource type="AnimationNodeAdd2" id="AnimationNodeAdd2_uesa7"]
[sub_resource type="AnimationNodeAnimation" id="AnimationNodeAnimation_eknxq"]
animation = &"Armature_001|Eyebrow L Down"
[sub_resource type="AnimationNodeAnimation" id="AnimationNodeAnimation_aeder"]
animation = &"Armature_001|Eyebrow L Up"
[sub_resource type="AnimationNodeAnimation" id="AnimationNodeAnimation_g83ja"]
animation = &"Armature_001|Eyebrow R Down"
[sub_resource type="AnimationNodeAnimation" id="AnimationNodeAnimation_fdf5l"]
animation = &"Armature_001|Eyebrow R Up"
[sub_resource type="AnimationNodeAnimation" id="AnimationNodeAnimation_vomoc"]
animation = &"Armature_001|Eyelid L"
[sub_resource type="AnimationNodeAnimation" id="AnimationNodeAnimation_jsjy2"]
animation = &"Armature_001|Eyelid R"
[sub_resource type="AnimationNodeAnimation" id="AnimationNodeAnimation_odiqw"]
animation = &"Armature_001|Eyes Down"
[sub_resource type="AnimationNodeAnimation" id="AnimationNodeAnimation_ll0tw"]
animation = &"Armature_001|Eyes Left"
[sub_resource type="AnimationNodeAnimation" id="AnimationNodeAnimation_t8fma"]
animation = &"Armature_001|Eyes Right"
[sub_resource type="AnimationNodeAnimation" id="AnimationNodeAnimation_w5qji"]
animation = &"Armature_001|Eyes Up"
[sub_resource type="AnimationNodeAnimation" id="AnimationNodeAnimation_18f0g"]
animation = &"Armature_001|Head Down"
[sub_resource type="AnimationNodeAnimation" id="AnimationNodeAnimation_ufvow"]
animation = &"Armature_001|Head L"
[sub_resource type="AnimationNodeAnimation" id="AnimationNodeAnimation_02yle"]
animation = &"Armature_001|Head R"
[sub_resource type="AnimationNodeAnimation" id="AnimationNodeAnimation_bsav2"]
animation = &"Armature_001|Head Tilt L"
[sub_resource type="AnimationNodeAnimation" id="AnimationNodeAnimation_58xho"]
animation = &"Armature_001|Head Tilt R"
[sub_resource type="AnimationNodeAnimation" id="AnimationNodeAnimation_13bbb"]
animation = &"Armature_001|Head Up"
[sub_resource type="AnimationNodeAnimation" id="AnimationNodeAnimation_a2h4w"]
animation = &"Armature_001|Jaw"
[sub_resource type="AnimationNodeAnimation" id="AnimationNodeAnimation_ee7ng"]
animation = &"Armature_001|Underlid L"
[sub_resource type="AnimationNodeAnimation" id="AnimationNodeAnimation_xrs43"]
animation = &"Armature_001|Underlid R"
[sub_resource type="AnimationNodeBlendTree" id="AnimationNodeBlendTree_r5cy4"]
graph_offset = Vector2(-653.223, 16.3686)
nodes/Add_1/node = SubResource("AnimationNodeAdd2_po782")
nodes/Add_1/position = Vector2(200, 100)
nodes/Add_10/node = SubResource("AnimationNodeAdd2_lnpje")
nodes/Add_10/position = Vector2(2000, 100)
nodes/Add_11/node = SubResource("AnimationNodeAdd2_jq1x4")
nodes/Add_11/position = Vector2(2200, 100)
nodes/Add_12/node = SubResource("AnimationNodeAdd2_svvfb")
nodes/Add_12/position = Vector2(2400, 100)
nodes/Add_13/node = SubResource("AnimationNodeAdd2_8hojv")
nodes/Add_13/position = Vector2(2600, 100)
nodes/Add_14/node = SubResource("AnimationNodeAdd2_qj7nf")
nodes/Add_14/position = Vector2(2800, 100)
nodes/Add_15/node = SubResource("AnimationNodeAdd2_3du0l")
nodes/Add_15/position = Vector2(3000, 100)
nodes/Add_16/node = SubResource("AnimationNodeAdd2_833nb")
nodes/Add_16/position = Vector2(3200, 100)
nodes/Add_17/node = SubResource("AnimationNodeAdd2_605kl")
nodes/Add_17/position = Vector2(3400, 100)
nodes/Add_18/node = SubResource("AnimationNodeAdd2_bqkbb")
nodes/Add_18/position = Vector2(3600, 100)
nodes/Add_2/node = SubResource("AnimationNodeAdd2_0gudw")
nodes/Add_2/position = Vector2(400, 100)
nodes/Add_3/node = SubResource("AnimationNodeAdd2_uamae")
nodes/Add_3/position = Vector2(600, 100)
nodes/Add_4/node = SubResource("AnimationNodeAdd2_iacw3")
nodes/Add_4/position = Vector2(800, 100)
nodes/Add_5/node = SubResource("AnimationNodeAdd2_vx16h")
nodes/Add_5/position = Vector2(1000, 100)
nodes/Add_7/node = SubResource("AnimationNodeAdd2_aw5a4")
nodes/Add_7/position = Vector2(1400, 100)
nodes/Add_8/node = SubResource("AnimationNodeAdd2_t7bsg")
nodes/Add_8/position = Vector2(1600, 100)
nodes/Add_9/node = SubResource("AnimationNodeAdd2_tfmfu")
nodes/Add_9/position = Vector2(1800, 100)
"nodes/Addshould just im_6/node" = SubResource("AnimationNodeAdd2_uesa7")
"nodes/Addshould just im_6/position" = Vector2(1200, 100)
"nodes/Anim_Armature_001|Eyebrow L Down/node" = SubResource("AnimationNodeAnimation_eknxq")
"nodes/Anim_Armature_001|Eyebrow L Down/position" = Vector2(0, 0)
"nodes/Anim_Armature_001|Eyebrow L Up/node" = SubResource("AnimationNodeAnimation_aeder")
"nodes/Anim_Armature_001|Eyebrow L Up/position" = Vector2(200, 0)
"nodes/Anim_Armature_001|Eyebrow R Down/node" = SubResource("AnimationNodeAnimation_g83ja")
"nodes/Anim_Armature_001|Eyebrow R Down/position" = Vector2(400, 0)
"nodes/Anim_Armature_001|Eyebrow R Up/node" = SubResource("AnimationNodeAnimation_fdf5l")
"nodes/Anim_Armature_001|Eyebrow R Up/position" = Vector2(600, 0)
"nodes/Anim_Armature_001|Eyelid L/node" = SubResource("AnimationNodeAnimation_vomoc")
"nodes/Anim_Armature_001|Eyelid L/position" = Vector2(800, 0)
"nodes/Anim_Armature_001|Eyelid R/node" = SubResource("AnimationNodeAnimation_jsjy2")
"nodes/Anim_Armature_001|Eyelid R/position" = Vector2(1000, 0)
"nodes/Anim_Armature_001|Eyes Down/node" = SubResource("AnimationNodeAnimation_odiqw")
"nodes/Anim_Armature_001|Eyes Down/position" = Vector2(1200, 0)
"nodes/Anim_Armature_001|Eyes Left/node" = SubResource("AnimationNodeAnimation_ll0tw")
"nodes/Anim_Armature_001|Eyes Left/position" = Vector2(1400, 0)
"nodes/Anim_Armature_001|Eyes Right/node" = SubResource("AnimationNodeAnimation_t8fma")
"nodes/Anim_Armature_001|Eyes Right/position" = Vector2(1600, 0)
"nodes/Anim_Armature_001|Eyes Up/node" = SubResource("AnimationNodeAnimation_w5qji")
"nodes/Anim_Armature_001|Eyes Up/position" = Vector2(1800, 0)
"nodes/Anim_Armature_001|Head Down/node" = SubResource("AnimationNodeAnimation_18f0g")
"nodes/Anim_Armature_001|Head Down/position" = Vector2(2000, 0)
"nodes/Anim_Armature_001|Head L/node" = SubResource("AnimationNodeAnimation_ufvow")
"nodes/Anim_Armature_001|Head L/position" = Vector2(2200, 0)
"nodes/Anim_Armature_001|Head R/node" = SubResource("AnimationNodeAnimation_02yle")
"nodes/Anim_Armature_001|Head R/position" = Vector2(2400, 0)
"nodes/Anim_Armature_001|Head Tilt L/node" = SubResource("AnimationNodeAnimation_bsav2")
"nodes/Anim_Armature_001|Head Tilt L/position" = Vector2(2600, 0)
"nodes/Anim_Armature_001|Head Tilt R/node" = SubResource("AnimationNodeAnimation_58xho")
"nodes/Anim_Armature_001|Head Tilt R/position" = Vector2(2800, 0)
"nodes/Anim_Armature_001|Head Up/node" = SubResource("AnimationNodeAnimation_13bbb")
"nodes/Anim_Armature_001|Head Up/position" = Vector2(3000, 0)
nodes/Anim_Armature_001|Jaw/node = SubResource("AnimationNodeAnimation_a2h4w")
nodes/Anim_Armature_001|Jaw/position = Vector2(3200, 0)
"nodes/Anim_Armature_001|Underlid L/node" = SubResource("AnimationNodeAnimation_ee7ng")
"nodes/Anim_Armature_001|Underlid L/position" = Vector2(3400, 0)
"nodes/Anim_Armature_001|Underlid R/node" = SubResource("AnimationNodeAnimation_xrs43")
"nodes/Anim_Armature_001|Underlid R/position" = Vector2(3600, 0)
nodes/output/position = Vector2(2820, 420)
node_connections = [&"Add_1", 0, &"Anim_Armature_001|Eyebrow L Down", &"Add_1", 1, &"Anim_Armature_001|Eyebrow L Up", &"Add_10", 0, &"Add_9", &"Add_10", 1, &"Anim_Armature_001|Head Down", &"Add_11", 0, &"Add_10", &"Add_11", 1, &"Anim_Armature_001|Head L", &"Add_12", 0, &"Add_11", &"Add_12", 1, &"Anim_Armature_001|Head R", &"Add_13", 0, &"Add_12", &"Add_13", 1, &"Anim_Armature_001|Head Tilt L", &"Add_14", 0, &"Add_13", &"Add_14", 1, &"Anim_Armature_001|Head Tilt R", &"Add_15", 0, &"Add_14", &"Add_15", 1, &"Anim_Armature_001|Head Up", &"Add_16", 0, &"Add_15", &"Add_16", 1, &"Anim_Armature_001|Jaw", &"Add_17", 0, &"Add_16", &"Add_17", 1, &"Anim_Armature_001|Underlid L", &"Add_18", 0, &"Add_17", &"Add_18", 1, &"Anim_Armature_001|Underlid R", &"Add_2", 0, &"Add_1", &"Add_2", 1, &"Anim_Armature_001|Eyebrow R Down", &"Add_3", 0, &"Add_2", &"Add_3", 1, &"Anim_Armature_001|Eyebrow R Up", &"Add_4", 0, &"Add_3", &"Add_4", 1, &"Anim_Armature_001|Eyelid L", &"Add_5", 0, &"Add_4", &"Add_5", 1, &"Anim_Armature_001|Eyelid R", &"Add_7", 0, &"Addshould just im_6", &"Add_7", 1, &"Anim_Armature_001|Eyes Left", &"Add_8", 0, &"Add_7", &"Add_8", 1, &"Anim_Armature_001|Eyes Right", &"Add_9", 0, &"Add_8", &"Add_9", 1, &"Anim_Armature_001|Eyes Up", &"Addshould just im_6", 0, &"Add_5", &"Addshould just im_6", 1, &"Anim_Armature_001|Eyes Down", &"output", 0, &"Add_18"]
[node name="_AnimationTree_3" type="AnimationTree"]
root_node = NodePath("../Chica")
tree_root = SubResource("AnimationNodeBlendTree_r5cy4")
anim_player = NodePath("/root/Freddy\'s/Chica/Chica/AnimationPlayer")
parameters/Add_1/add_amount = 0
parameters/Add_10/add_amount = 0
parameters/Add_11/add_amount = 0
parameters/Add_12/add_amount = 0
parameters/Add_13/add_amount = 0
parameters/Add_14/add_amount = 0
parameters/Add_15/add_amount = 0
parameters/Add_16/add_amount = 0
parameters/Add_17/add_amount = 0
parameters/Add_18/add_amount = 1.0
parameters/Add_2/add_amount = 0
parameters/Add_3/add_amount = 0
parameters/Add_4/add_amount = 0
parameters/Add_5/add_amount = 0
parameters/Add_7/add_amount = 0
parameters/Add_8/add_amount = 0
parameters/Add_9/add_amount = 0
"parameters/Addshould just im_6/add_amount" = 0

View file

@ -1,212 +0,0 @@
[gd_scene load_steps=42 format=3 uid="uid://bb004cdud1qnj"]
[sub_resource type="AnimationNodeAdd2" id="AnimationNodeAdd2_x54fa"]
[sub_resource type="AnimationNodeAdd2" id="AnimationNodeAdd2_d61hk"]
[sub_resource type="AnimationNodeAdd2" id="AnimationNodeAdd2_qxfyu"]
[sub_resource type="AnimationNodeAdd2" id="AnimationNodeAdd2_qru2l"]
[sub_resource type="AnimationNodeAdd2" id="AnimationNodeAdd2_qm8xs"]
[sub_resource type="AnimationNodeAdd2" id="AnimationNodeAdd2_u7hql"]
[sub_resource type="AnimationNodeAdd2" id="AnimationNodeAdd2_ye4m3"]
[sub_resource type="AnimationNodeAdd2" id="AnimationNodeAdd2_o6gik"]
[sub_resource type="AnimationNodeAdd2" id="AnimationNodeAdd2_ip4l6"]
[sub_resource type="AnimationNodeAdd2" id="AnimationNodeAdd2_ckal1"]
[sub_resource type="AnimationNodeAdd2" id="AnimationNodeAdd2_ibgny"]
[sub_resource type="AnimationNodeAdd2" id="AnimationNodeAdd2_dwc8p"]
[sub_resource type="AnimationNodeAdd2" id="AnimationNodeAdd2_cbqyw"]
[sub_resource type="AnimationNodeAdd2" id="AnimationNodeAdd2_1myad"]
[sub_resource type="AnimationNodeAdd2" id="AnimationNodeAdd2_f5iex"]
[sub_resource type="AnimationNodeAdd2" id="AnimationNodeAdd2_i3bg6"]
[sub_resource type="AnimationNodeAdd2" id="AnimationNodeAdd2_hx4q6"]
[sub_resource type="AnimationNodeAdd2" id="AnimationNodeAdd2_ujn16"]
[sub_resource type="AnimationNodeAnimation" id="AnimationNodeAnimation_0ipva"]
animation = &"Armature_001|Eyebrow L Up"
[sub_resource type="AnimationNodeAnimation" id="AnimationNodeAnimation_1465b"]
animation = &"Armature_001|Eyebrow R Down"
[sub_resource type="AnimationNodeAnimation" id="AnimationNodeAnimation_yemhi"]
animation = &"Armature_001|Eyebrow R Up"
[sub_resource type="AnimationNodeAnimation" id="AnimationNodeAnimation_ehx5t"]
animation = &"Armature_001|Eyelid L"
[sub_resource type="AnimationNodeAnimation" id="AnimationNodeAnimation_mrlmf"]
animation = &"Armature_001|Eyelid R"
[sub_resource type="AnimationNodeAnimation" id="AnimationNodeAnimation_dwkga"]
animation = &"Armature_001|Eyes Down"
[sub_resource type="AnimationNodeAnimation" id="AnimationNodeAnimation_s8o4k"]
animation = &"Armature_001|Eyes Left"
[sub_resource type="AnimationNodeAnimation" id="AnimationNodeAnimation_5bg5e"]
animation = &"Armature_001|Eyes Right"
[sub_resource type="AnimationNodeAnimation" id="AnimationNodeAnimation_xd8h7"]
animation = &"Armature_001|Eyes Up"
[sub_resource type="AnimationNodeAnimation" id="AnimationNodeAnimation_ywl6w"]
animation = &"Armature_001|Head Down"
[sub_resource type="AnimationNodeAnimation" id="AnimationNodeAnimation_heluu"]
animation = &"Armature_001|Head L"
[sub_resource type="AnimationNodeAnimation" id="AnimationNodeAnimation_6fg05"]
animation = &"Armature_001|Head R"
[sub_resource type="AnimationNodeAnimation" id="AnimationNodeAnimation_fhno2"]
animation = &"Armature_001|Head Tilt L"
[sub_resource type="AnimationNodeAnimation" id="AnimationNodeAnimation_rxjjn"]
animation = &"Armature_001|Head Tilt R"
[sub_resource type="AnimationNodeAnimation" id="AnimationNodeAnimation_23h45"]
animation = &"Armature_001|Head Up"
[sub_resource type="AnimationNodeAnimation" id="AnimationNodeAnimation_mb8rh"]
animation = &"Armature_001|Jaw"
[sub_resource type="AnimationNodeAnimation" id="AnimationNodeAnimation_ack4d"]
animation = &"Armature_001|Underlid L"
[sub_resource type="AnimationNodeAnimation" id="AnimationNodeAnimation_24th1"]
animation = &"Armature_001|Underlid R"
[sub_resource type="AnimationNodeOutput" id="AnimationNodeOutput_1kfqo"]
[sub_resource type="AnimationNodeTimeSeek" id="AnimationNodeTimeSeek_x54fa"]
[sub_resource type="AnimationNodeTimeScale" id="AnimationNodeTimeScale_d61hk"]
[sub_resource type="AnimationNodeAnimation" id="AnimationNodeAnimation_aipfx"]
animation = &"Armature_001|Eyebrow L Down"
[sub_resource type="AnimationNodeBlendTree" id="AnimationNodeBlendTree_mob0c"]
graph_offset = Vector2(-574.867, -45.2357)
nodes/Add_1/node = SubResource("AnimationNodeAdd2_x54fa")
nodes/Add_1/position = Vector2(400, -40)
nodes/Add_10/node = SubResource("AnimationNodeAdd2_d61hk")
nodes/Add_10/position = Vector2(2460, -340)
nodes/Add_11/node = SubResource("AnimationNodeAdd2_qxfyu")
nodes/Add_11/position = Vector2(2680, -380)
nodes/Add_12/node = SubResource("AnimationNodeAdd2_qru2l")
nodes/Add_12/position = Vector2(2920, -400)
nodes/Add_13/node = SubResource("AnimationNodeAdd2_qm8xs")
nodes/Add_13/position = Vector2(3140, -440)
nodes/Add_14/node = SubResource("AnimationNodeAdd2_u7hql")
nodes/Add_14/position = Vector2(3380, -480)
nodes/Add_15/node = SubResource("AnimationNodeAdd2_ye4m3")
nodes/Add_15/position = Vector2(3600, -520)
nodes/Add_16/node = SubResource("AnimationNodeAdd2_o6gik")
nodes/Add_16/position = Vector2(3820, -540)
nodes/Add_17/node = SubResource("AnimationNodeAdd2_ip4l6")
nodes/Add_17/position = Vector2(4060, -580)
nodes/Add_18/node = SubResource("AnimationNodeAdd2_ckal1")
nodes/Add_18/position = Vector2(4280, -620)
nodes/Add_2/node = SubResource("AnimationNodeAdd2_ibgny")
nodes/Add_2/position = Vector2(620, -60)
nodes/Add_3/node = SubResource("AnimationNodeAdd2_dwc8p")
nodes/Add_3/position = Vector2(860, -100)
nodes/Add_4/node = SubResource("AnimationNodeAdd2_cbqyw")
nodes/Add_4/position = Vector2(1080, -140)
nodes/Add_5/node = SubResource("AnimationNodeAdd2_1myad")
nodes/Add_5/position = Vector2(1300, -160)
nodes/Add_6/node = SubResource("AnimationNodeAdd2_f5iex")
nodes/Add_6/position = Vector2(1540, -200)
nodes/Add_7/node = SubResource("AnimationNodeAdd2_i3bg6")
nodes/Add_7/position = Vector2(1760, -240)
nodes/Add_8/node = SubResource("AnimationNodeAdd2_hx4q6")
nodes/Add_8/position = Vector2(2000, -280)
nodes/Add_9/node = SubResource("AnimationNodeAdd2_ujn16")
nodes/Add_9/position = Vector2(2220, -300)
"nodes/Anim_Armature_001|Eyebrow L Up/node" = SubResource("AnimationNodeAnimation_0ipva")
"nodes/Anim_Armature_001|Eyebrow L Up/position" = Vector2(0, 260)
"nodes/Anim_Armature_001|Eyebrow R Down/node" = SubResource("AnimationNodeAnimation_1465b")
"nodes/Anim_Armature_001|Eyebrow R Down/position" = Vector2(0, 520)
"nodes/Anim_Armature_001|Eyebrow R Up/node" = SubResource("AnimationNodeAnimation_yemhi")
"nodes/Anim_Armature_001|Eyebrow R Up/position" = Vector2(0, 780)
"nodes/Anim_Armature_001|Eyelid L/node" = SubResource("AnimationNodeAnimation_ehx5t")
"nodes/Anim_Armature_001|Eyelid L/position" = Vector2(0, 1040)
"nodes/Anim_Armature_001|Eyelid R/node" = SubResource("AnimationNodeAnimation_mrlmf")
"nodes/Anim_Armature_001|Eyelid R/position" = Vector2(0, 1300)
"nodes/Anim_Armature_001|Eyes Down/node" = SubResource("AnimationNodeAnimation_dwkga")
"nodes/Anim_Armature_001|Eyes Down/position" = Vector2(0, 1540)
"nodes/Anim_Armature_001|Eyes Left/node" = SubResource("AnimationNodeAnimation_s8o4k")
"nodes/Anim_Armature_001|Eyes Left/position" = Vector2(0, 1800)
"nodes/Anim_Armature_001|Eyes Right/node" = SubResource("AnimationNodeAnimation_5bg5e")
"nodes/Anim_Armature_001|Eyes Right/position" = Vector2(0, 2060)
"nodes/Anim_Armature_001|Eyes Up/node" = SubResource("AnimationNodeAnimation_xd8h7")
"nodes/Anim_Armature_001|Eyes Up/position" = Vector2(0, 2320)
"nodes/Anim_Armature_001|Head Down/node" = SubResource("AnimationNodeAnimation_ywl6w")
"nodes/Anim_Armature_001|Head Down/position" = Vector2(0, 2580)
"nodes/Anim_Armature_001|Head L/node" = SubResource("AnimationNodeAnimation_heluu")
"nodes/Anim_Armature_001|Head L/position" = Vector2(0, 2840)
"nodes/Anim_Armature_001|Head R/node" = SubResource("AnimationNodeAnimation_6fg05")
"nodes/Anim_Armature_001|Head R/position" = Vector2(0, 3100)
"nodes/Anim_Armature_001|Head Tilt L/node" = SubResource("AnimationNodeAnimation_fhno2")
"nodes/Anim_Armature_001|Head Tilt L/position" = Vector2(0, 3360)
"nodes/Anim_Armature_001|Head Tilt R/node" = SubResource("AnimationNodeAnimation_rxjjn")
"nodes/Anim_Armature_001|Head Tilt R/position" = Vector2(0, 3620)
"nodes/Anim_Armature_001|Head Up/node" = SubResource("AnimationNodeAnimation_23h45")
"nodes/Anim_Armature_001|Head Up/position" = Vector2(0, 3880)
nodes/Anim_Armature_001|Jaw/node = SubResource("AnimationNodeAnimation_mb8rh")
nodes/Anim_Armature_001|Jaw/position = Vector2(0, 4120)
"nodes/Anim_Armature_001|Underlid L/node" = SubResource("AnimationNodeAnimation_ack4d")
"nodes/Anim_Armature_001|Underlid L/position" = Vector2(0, 4380)
"nodes/Anim_Armature_001|Underlid R/node" = SubResource("AnimationNodeAnimation_24th1")
"nodes/Anim_Armature_001|Underlid R/position" = Vector2(0, 4640)
nodes/Output/node = SubResource("AnimationNodeOutput_1kfqo")
nodes/Output/position = Vector2(160, 4900)
nodes/TimeSationNodeBlendTree_mob0ceekationNodeBlendTree_mob0c/node = SubResource("AnimationNodeTimeSeek_x54fa")
nodes/TimeSationNodeBlendTree_mob0ceekationNodeBlendTree_mob0c/position = Vector2(280, -60)
nodes/TimeScale/node = SubResource("AnimationNodeTimeScale_d61hk")
nodes/TimeScale/position = Vector2(-200, -120)
nodes/a/node = SubResource("AnimationNodeAnimation_aipfx")
nodes/a/position = Vector2(-580, -20)
nodes/output/position = Vector2(4520, -600)
node_connections = [&"Add_1", 1, &"Anim_Armature_001|Eyebrow L Up", &"Add_10", 0, &"Add_9", &"Add_10", 1, &"Anim_Armature_001|Head Down", &"Add_11", 0, &"Add_10", &"Add_11", 1, &"Anim_Armature_001|Head L", &"Add_12", 0, &"Add_11", &"Add_12", 1, &"Anim_Armature_001|Head R", &"Add_13", 0, &"Add_12", &"Add_13", 1, &"Anim_Armature_001|Head Tilt L", &"Add_14", 0, &"Add_13", &"Add_14", 1, &"Anim_Armature_001|Head Tilt R", &"Add_15", 0, &"Add_14", &"Add_15", 1, &"Anim_Armature_001|Head Up", &"Add_16", 0, &"Add_15", &"Add_16", 1, &"Anim_Armature_001|Jaw", &"Add_17", 0, &"Add_16", &"Add_17", 1, &"Anim_Armature_001|Underlid L", &"Add_18", 0, &"Add_17", &"Add_18", 1, &"Anim_Armature_001|Underlid R", &"Add_2", 0, &"Add_1", &"Add_2", 1, &"Anim_Armature_001|Eyebrow R Down", &"Add_3", 0, &"Add_2", &"Add_3", 1, &"Anim_Armature_001|Eyebrow R Up", &"Add_4", 0, &"Add_3", &"Add_4", 1, &"Anim_Armature_001|Eyelid L", &"Add_5", 0, &"Add_4", &"Add_5", 1, &"Anim_Armature_001|Eyelid R", &"Add_6", 0, &"Add_5", &"Add_6", 1, &"Anim_Armature_001|Eyes Down", &"Add_7", 0, &"Add_6", &"Add_7", 1, &"Anim_Armature_001|Eyes Left", &"Add_8", 0, &"Add_7", &"Add_8", 1, &"Anim_Armature_001|Eyes Right", &"Add_9", 0, &"Add_8", &"Add_9", 1, &"Anim_Armature_001|Eyes Up", &"TimeSationNodeBlendTree_mob0ceekationNodeBlendTree_mob0c", 0, &"TimeScale", &"TimeScale", 0, &"a", &"output", 0, &"Add_18"]
[node name="_AnimationTree_3" type="AnimationTree"]
root_node = NodePath(".")
tree_root = SubResource("AnimationNodeBlendTree_mob0c")
anim_player = NodePath("AnimationPlayer")
parameters/Add_1/add_amount = 1.0
parameters/Add_10/add_amount = 1.0
parameters/Add_11/add_amount = 1.0
parameters/Add_12/add_amount = 1.0
parameters/Add_13/add_amount = 1.0
parameters/Add_14/add_amount = 1.0
parameters/Add_15/add_amount = 1.0
parameters/Add_16/add_amount = 1.0
parameters/Add_17/add_amount = 1.0
parameters/Add_18/add_amount = 1.0
parameters/Add_2/add_amount = 1.0
parameters/Add_3/add_amount = 1.0
parameters/Add_4/add_amount = 1.0
parameters/Add_5/add_amount = 1.0
parameters/Add_6/add_amount = 1.0
parameters/Add_7/add_amount = 1.0
parameters/Add_8/add_amount = 1.0
parameters/Add_9/add_amount = 1.0
parameters/TimeSationNodeBlendTree_mob0ceekationNodeBlendTree_mob0c/seek_request = 98.02
parameters/TimeScale/scale = -47.49
[node name="AnimationPlayer" type="AnimationPlayer" parent="."]

View file

@ -1,376 +0,0 @@
[gd_scene load_steps=75 format=3 uid="uid://dwwl76ovr08cn"]
[sub_resource type="AnimationNodeAdd2" id="AnimationNodeAdd2_cn2km"]
[sub_resource type="AnimationNodeAdd2" id="AnimationNodeAdd2_x8bp0"]
[sub_resource type="AnimationNodeAdd2" id="AnimationNodeAdd2_te08d"]
[sub_resource type="AnimationNodeAdd2" id="AnimationNodeAdd2_m6rs4"]
[sub_resource type="AnimationNodeAdd2" id="AnimationNodeAdd2_h5gjp"]
[sub_resource type="AnimationNodeAdd2" id="AnimationNodeAdd2_nx15v"]
[sub_resource type="AnimationNodeAdd2" id="AnimationNodeAdd2_8a8nn"]
[sub_resource type="AnimationNodeAdd2" id="AnimationNodeAdd2_vyvv0"]
[sub_resource type="AnimationNodeAdd2" id="AnimationNodeAdd2_l62w7"]
[sub_resource type="AnimationNodeAdd2" id="AnimationNodeAdd2_6pojw"]
[sub_resource type="AnimationNodeAdd2" id="AnimationNodeAdd2_p7m28"]
[sub_resource type="AnimationNodeAdd2" id="AnimationNodeAdd2_b4s1y"]
[sub_resource type="AnimationNodeAdd2" id="AnimationNodeAdd2_wtllb"]
[sub_resource type="AnimationNodeAdd2" id="AnimationNodeAdd2_rccxp"]
[sub_resource type="AnimationNodeAdd2" id="AnimationNodeAdd2_f5fuw"]
[sub_resource type="AnimationNodeAdd2" id="AnimationNodeAdd2_10oc2"]
[sub_resource type="AnimationNodeAdd2" id="AnimationNodeAdd2_3duk8"]
[sub_resource type="AnimationNodeAdd2" id="AnimationNodeAdd2_dxpms"]
[sub_resource type="AnimationNodeAnimation" id="AnimationNodeAnimation_mnxbd"]
animation = &"Armature_001|Eyebrow L Down"
[sub_resource type="AnimationNodeAnimation" id="AnimationNodeAnimation_kktee"]
animation = &"Armature_001|Eyebrow L Up"
[sub_resource type="AnimationNodeAnimation" id="AnimationNodeAnimation_sxbu5"]
animation = &"Armature_001|Eyebrow R Down"
[sub_resource type="AnimationNodeAnimation" id="AnimationNodeAnimation_jijo2"]
animation = &"Armature_001|Eyebrow R Up"
[sub_resource type="AnimationNodeAnimation" id="AnimationNodeAnimation_clpi8"]
animation = &"Armature_001|Eyelid L"
[sub_resource type="AnimationNodeAnimation" id="AnimationNodeAnimation_ewowv"]
animation = &"Armature_001|Eyelid R"
[sub_resource type="AnimationNodeAnimation" id="AnimationNodeAnimation_y6fj7"]
animation = &"Armature_001|Eyes Down"
[sub_resource type="AnimationNodeAnimation" id="AnimationNodeAnimation_rn5yg"]
animation = &"Armature_001|Eyes Left"
[sub_resource type="AnimationNodeAnimation" id="AnimationNodeAnimation_6bq74"]
animation = &"Armature_001|Eyes Right"
[sub_resource type="AnimationNodeAnimation" id="AnimationNodeAnimation_ktacc"]
animation = &"Armature_001|Eyes Up"
[sub_resource type="AnimationNodeAnimation" id="AnimationNodeAnimation_6nmjk"]
animation = &"Armature_001|Head Down"
[sub_resource type="AnimationNodeAnimation" id="AnimationNodeAnimation_phwt5"]
animation = &"Armature_001|Head L"
[sub_resource type="AnimationNodeAnimation" id="AnimationNodeAnimation_wxhct"]
animation = &"Armature_001|Head R"
[sub_resource type="AnimationNodeAnimation" id="AnimationNodeAnimation_cih8x"]
animation = &"Armature_001|Head Tilt L"
[sub_resource type="AnimationNodeAnimation" id="AnimationNodeAnimation_6geux"]
animation = &"Armature_001|Head Tilt R"
[sub_resource type="AnimationNodeAnimation" id="AnimationNodeAnimation_2dbgd"]
animation = &"Armature_001|Head Up"
[sub_resource type="AnimationNodeAnimation" id="AnimationNodeAnimation_r4i6k"]
animation = &"Armature_001|Jaw"
[sub_resource type="AnimationNodeAnimation" id="AnimationNodeAnimation_8014d"]
animation = &"Armature_001|Underlid L"
[sub_resource type="AnimationNodeAnimation" id="AnimationNodeAnimation_yi0pf"]
animation = &"Armature_001|Underlid R"
[sub_resource type="AnimationNodeTimeSeek" id="AnimationNodeTimeSeek_vg2ge"]
[sub_resource type="AnimationNodeTimeSeek" id="AnimationNodeTimeSeek_nwvxa"]
[sub_resource type="AnimationNodeTimeSeek" id="AnimationNodeTimeSeek_46c20"]
[sub_resource type="AnimationNodeTimeSeek" id="AnimationNodeTimeSeek_o3ji5"]
[sub_resource type="AnimationNodeTimeSeek" id="AnimationNodeTimeSeek_bnxdd"]
[sub_resource type="AnimationNodeTimeSeek" id="AnimationNodeTimeSeek_4t5x4"]
[sub_resource type="AnimationNodeTimeSeek" id="AnimationNodeTimeSeek_4w7im"]
[sub_resource type="AnimationNodeTimeSeek" id="AnimationNodeTimeSeek_8r4ga"]
[sub_resource type="AnimationNodeTimeSeek" id="AnimationNodeTimeSeek_7ip44"]
[sub_resource type="AnimationNodeTimeSeek" id="AnimationNodeTimeSeek_jk2s7"]
[sub_resource type="AnimationNodeTimeSeek" id="AnimationNodeTimeSeek_ywf75"]
[sub_resource type="AnimationNodeTimeSeek" id="AnimationNodeTimeSeek_8odpf"]
[sub_resource type="AnimationNodeTimeSeek" id="AnimationNodeTimeSeek_fdavu"]
[sub_resource type="AnimationNodeTimeSeek" id="AnimationNodeTimeSeek_8kdjr"]
[sub_resource type="AnimationNodeTimeSeek" id="AnimationNodeTimeSeek_yfuwc"]
[sub_resource type="AnimationNodeTimeSeek" id="AnimationNodeTimeSeek_slo5n"]
[sub_resource type="AnimationNodeTimeSeek" id="AnimationNodeTimeSeek_vantn"]
[sub_resource type="AnimationNodeTimeSeek" id="AnimationNodeTimeSeek_y80px"]
[sub_resource type="AnimationNodeTimeScale" id="AnimationNodeTimeScale_yl10v"]
[sub_resource type="AnimationNodeTimeScale" id="AnimationNodeTimeScale_78t4h"]
[sub_resource type="AnimationNodeTimeScale" id="AnimationNodeTimeScale_iw5bp"]
[sub_resource type="AnimationNodeTimeScale" id="AnimationNodeTimeScale_v3epd"]
[sub_resource type="AnimationNodeTimeScale" id="AnimationNodeTimeScale_gwde8"]
[sub_resource type="AnimationNodeTimeScale" id="AnimationNodeTimeScale_ut4um"]
[sub_resource type="AnimationNodeTimeScale" id="AnimationNodeTimeScale_t16cc"]
[sub_resource type="AnimationNodeTimeScale" id="AnimationNodeTimeScale_5fy0b"]
[sub_resource type="AnimationNodeTimeScale" id="AnimationNodeTimeScale_85hp2"]
[sub_resource type="AnimationNodeTimeScale" id="AnimationNodeTimeScale_oohxp"]
[sub_resource type="AnimationNodeTimeScale" id="AnimationNodeTimeScale_hu0d2"]
[sub_resource type="AnimationNodeTimeScale" id="AnimationNodeTimeScale_alpwc"]
[sub_resource type="AnimationNodeTimeScale" id="AnimationNodeTimeScale_futfp"]
[sub_resource type="AnimationNodeTimeScale" id="AnimationNodeTimeScale_ufukg"]
[sub_resource type="AnimationNodeTimeScale" id="AnimationNodeTimeScale_ia1a7"]
[sub_resource type="AnimationNodeTimeScale" id="AnimationNodeTimeScale_veuxd"]
[sub_resource type="AnimationNodeTimeScale" id="AnimationNodeTimeScale_n5pxs"]
[sub_resource type="AnimationNodeTimeScale" id="AnimationNodeTimeScale_hvv16"]
[sub_resource type="AnimationNodeBlendTree" id="AnimationNodeBlendTree_v6irv"]
graph_offset = Vector2(-183.88, 4143.02)
nodes/Add_1/node = SubResource("AnimationNodeAdd2_cn2km")
nodes/Add_1/position = Vector2(220, 6280)
nodes/Add_10/node = SubResource("AnimationNodeAdd2_x8bp0")
nodes/Add_10/position = Vector2(0, 0)
nodes/Add_11/node = SubResource("AnimationNodeAdd2_te08d")
nodes/Add_11/position = Vector2(0, 340)
nodes/Add_12/node = SubResource("AnimationNodeAdd2_m6rs4")
nodes/Add_12/position = Vector2(0, 680)
nodes/Add_13/node = SubResource("AnimationNodeAdd2_h5gjp")
nodes/Add_13/position = Vector2(0, 1020)
nodes/Add_14/node = SubResource("AnimationNodeAdd2_nx15v")
nodes/Add_14/position = Vector2(0, 1360)
nodes/Add_15/node = SubResource("AnimationNodeAdd2_8a8nn")
nodes/Add_15/position = Vector2(0, 1700)
nodes/Add_16/node = SubResource("AnimationNodeAdd2_vyvv0")
nodes/Add_16/position = Vector2(0, 2040)
nodes/Add_17/node = SubResource("AnimationNodeAdd2_l62w7")
nodes/Add_17/position = Vector2(0, 2380)
nodes/Add_18/node = SubResource("AnimationNodeAdd2_6pojw")
nodes/Add_18/position = Vector2(0, 2720)
nodes/Add_2/node = SubResource("AnimationNodeAdd2_p7m28")
nodes/Add_2/position = Vector2(0, 3060)
nodes/Add_3/node = SubResource("AnimationNodeAdd2_b4s1y")
nodes/Add_3/position = Vector2(0, 3420)
nodes/Add_4/node = SubResource("AnimationNodeAdd2_wtllb")
nodes/Add_4/position = Vector2(0, 3760)
nodes/Add_5/node = SubResource("AnimationNodeAdd2_rccxp")
nodes/Add_5/position = Vector2(0, 4100)
nodes/Add_6/node = SubResource("AnimationNodeAdd2_f5fuw")
nodes/Add_6/position = Vector2(0, 4440)
nodes/Add_7/node = SubResource("AnimationNodeAdd2_10oc2")
nodes/Add_7/position = Vector2(0, 4780)
nodes/Add_8/node = SubResource("AnimationNodeAdd2_3duk8")
nodes/Add_8/position = Vector2(0, 5120)
nodes/Add_9/node = SubResource("AnimationNodeAdd2_dxpms")
nodes/Add_9/position = Vector2(0, 5460)
"nodes/Anim_Armature_001|Eyebrow L Down/node" = SubResource("AnimationNodeAnimation_mnxbd")
"nodes/Anim_Armature_001|Eyebrow L Down/position" = Vector2(-160, 5800)
"nodes/Anim_Armature_001|Eyebrow L Up/node" = SubResource("AnimationNodeAnimation_kktee")
"nodes/Anim_Armature_001|Eyebrow L Up/position" = Vector2(-160, 6060)
"nodes/Anim_Armature_001|Eyebrow R Down/node" = SubResource("AnimationNodeAnimation_sxbu5")
"nodes/Anim_Armature_001|Eyebrow R Down/position" = Vector2(-160, 6320)
"nodes/Anim_Armature_001|Eyebrow R Up/node" = SubResource("AnimationNodeAnimation_jijo2")
"nodes/Anim_Armature_001|Eyebrow R Up/position" = Vector2(-160, 6580)
"nodes/Anim_Armature_001|Eyelid L/node" = SubResource("AnimationNodeAnimation_clpi8")
"nodes/Anim_Armature_001|Eyelid L/position" = Vector2(-160, 6820)
"nodes/Anim_Armature_001|Eyelid R/node" = SubResource("AnimationNodeAnimation_ewowv")
"nodes/Anim_Armature_001|Eyelid R/position" = Vector2(-160, 7880)
"nodes/Anim_Armature_001|Eyes Down/node" = SubResource("AnimationNodeAnimation_y6fj7")
"nodes/Anim_Armature_001|Eyes Down/position" = Vector2(-160, 8140)
"nodes/Anim_Armature_001|Eyes Left/node" = SubResource("AnimationNodeAnimation_rn5yg")
"nodes/Anim_Armature_001|Eyes Left/position" = Vector2(-160, 8400)
"nodes/Anim_Armature_001|Eyes Right/node" = SubResource("AnimationNodeAnimation_6bq74")
"nodes/Anim_Armature_001|Eyes Right/position" = Vector2(-160, 8660)
"nodes/Anim_Armature_001|Eyes Up/node" = SubResource("AnimationNodeAnimation_ktacc")
"nodes/Anim_Armature_001|Eyes Up/position" = Vector2(-160, 8920)
"nodes/Anim_Armature_001|Head Down/node" = SubResource("AnimationNodeAnimation_6nmjk")
"nodes/Anim_Armature_001|Head Down/position" = Vector2(-160, 9180)
"nodes/Anim_Armature_001|Head L/node" = SubResource("AnimationNodeAnimation_phwt5")
"nodes/Anim_Armature_001|Head L/position" = Vector2(-160, 9440)
"nodes/Anim_Armature_001|Head R/node" = SubResource("AnimationNodeAnimation_wxhct")
"nodes/Anim_Armature_001|Head R/position" = Vector2(-160, 9700)
"nodes/Anim_Armature_001|Head Tilt L/node" = SubResource("AnimationNodeAnimation_cih8x")
"nodes/Anim_Armature_001|Head Tilt L/position" = Vector2(-160, 9980)
"nodes/Anim_Armature_001|Head Tilt R/node" = SubResource("AnimationNodeAnimation_6geux")
"nodes/Anim_Armature_001|Head Tilt R/position" = Vector2(-160, 10240)
"nodes/Anim_Armature_001|Head Up/node" = SubResource("AnimationNodeAnimation_2dbgd")
"nodes/Anim_Armature_001|Head Up/position" = Vector2(-160, 10500)
nodes/Anim_Armature_001|Jaw/node = SubResource("AnimationNodeAnimation_r4i6k")
nodes/Anim_Armature_001|Jaw/position = Vector2(-160, 10760)
"nodes/Anim_Armature_001|Underlid L/node" = SubResource("AnimationNodeAnimation_8014d")
"nodes/Anim_Armature_001|Underlid L/position" = Vector2(-160, 11020)
"nodes/Anim_Armature_001|Underlid R/node" = SubResource("AnimationNodeAnimation_yi0pf")
"nodes/Anim_Armature_001|Underlid R/position" = Vector2(-160, 12360)
nodes/Seek_1/node = SubResource("AnimationNodeTimeSeek_vg2ge")
nodes/Seek_1/position = Vector2(460, 7020)
nodes/Seek_10/node = SubResource("AnimationNodeTimeSeek_nwvxa")
nodes/Seek_10/position = Vector2(460, 14420)
nodes/Seek_11/node = SubResource("AnimationNodeTimeSeek_46c20")
nodes/Seek_11/position = Vector2(460, 14140)
nodes/Seek_12/node = SubResource("AnimationNodeTimeSeek_o3ji5")
nodes/Seek_12/position = Vector2(460, 13880)
nodes/Seek_13/node = SubResource("AnimationNodeTimeSeek_bnxdd")
nodes/Seek_13/position = Vector2(460, 13620)
nodes/Seek_14/node = SubResource("AnimationNodeTimeSeek_4t5x4")
nodes/Seek_14/position = Vector2(460, 13360)
nodes/Seek_15/node = SubResource("AnimationNodeTimeSeek_4w7im")
nodes/Seek_15/position = Vector2(460, 13080)
nodes/Seek_16/node = SubResource("AnimationNodeTimeSeek_8r4ga")
nodes/Seek_16/position = Vector2(460, 12820)
nodes/Seek_17/node = SubResource("AnimationNodeTimeSeek_7ip44")
nodes/Seek_17/position = Vector2(460, 12560)
nodes/Seek_18/node = SubResource("AnimationNodeTimeSeek_jk2s7")
nodes/Seek_18/position = Vector2(460, 12300)
nodes/Seek_2/node = SubResource("AnimationNodeTimeSeek_ywf75")
nodes/Seek_2/position = Vector2(460, 7560)
nodes/Seek_3/node = SubResource("AnimationNodeTimeSeek_8odpf")
nodes/Seek_3/position = Vector2(460, 7300)
nodes/Seek_4/node = SubResource("AnimationNodeTimeSeek_fdavu")
nodes/Seek_4/position = Vector2(460, 6760)
nodes/Seek_5/node = SubResource("AnimationNodeTimeSeek_8kdjr")
nodes/Seek_5/position = Vector2(460, 12020)
nodes/Seek_6/node = SubResource("AnimationNodeTimeSeek_yfuwc")
nodes/Seek_6/position = Vector2(460, 11760)
nodes/Seek_7/node = SubResource("AnimationNodeTimeSeek_slo5n")
nodes/Seek_7/position = Vector2(460, 11500)
nodes/Seek_8/node = SubResource("AnimationNodeTimeSeek_vantn")
nodes/Seek_8/position = Vector2(460, 11240)
nodes/Seek_9/node = SubResource("AnimationNodeTimeSeek_y80px")
nodes/Seek_9/position = Vector2(460, 10960)
nodes/Time_1/node = SubResource("AnimationNodeTimeScale_yl10v")
nodes/Time_1/position = Vector2(220, 6020)
nodes/Time_10/node = SubResource("AnimationNodeTimeScale_78t4h")
nodes/Time_10/position = Vector2(220, 9140)
nodes/Time_11/node = SubResource("AnimationNodeTimeScale_iw5bp")
nodes/Time_11/position = Vector2(220, 9420)
nodes/Time_12/node = SubResource("AnimationNodeTimeScale_v3epd")
nodes/Time_12/position = Vector2(220, 9680)
nodes/Time_13/node = SubResource("AnimationNodeTimeScale_gwde8")
nodes/Time_13/position = Vector2(220, 9940)
nodes/Time_14/node = SubResource("AnimationNodeTimeScale_ut4um")
nodes/Time_14/position = Vector2(220, 10200)
nodes/Time_15/node = SubResource("AnimationNodeTimeScale_t16cc")
nodes/Time_15/position = Vector2(220, 10480)
nodes/Time_16/node = SubResource("AnimationNodeTimeScale_5fy0b")
nodes/Time_16/position = Vector2(220, 10740)
nodes/Time_17/node = SubResource("AnimationNodeTimeScale_85hp2")
nodes/Time_17/position = Vector2(220, 12600)
nodes/Time_18/node = SubResource("AnimationNodeTimeScale_oohxp")
nodes/Time_18/position = Vector2(220, 12320)
nodes/Time_2/node = SubResource("AnimationNodeTimeScale_hu0d2")
nodes/Time_2/position = Vector2(220, 7600)
nodes/Time_3/node = SubResource("AnimationNodeTimeScale_alpwc")
nodes/Time_3/position = Vector2(220, 7320)
nodes/Time_4/node = SubResource("AnimationNodeTimeScale_futfp")
nodes/Time_4/position = Vector2(220, 6800)
nodes/Time_5/node = SubResource("AnimationNodeTimeScale_ufukg")
nodes/Time_5/position = Vector2(220, 7860)
nodes/Time_6/node = SubResource("AnimationNodeTimeScale_ia1a7")
nodes/Time_6/position = Vector2(220, 11800)
nodes/Time_7/node = SubResource("AnimationNodeTimeScale_veuxd")
nodes/Time_7/position = Vector2(220, 11540)
nodes/Time_8/node = SubResource("AnimationNodeTimeScale_n5pxs")
nodes/Time_8/position = Vector2(220, 11260)
nodes/Time_9/node = SubResource("AnimationNodeTimeScale_hvv16")
nodes/Time_9/position = Vector2(220, 11000)
nodes/output/position = Vector2(40, 11280)
node_connections = [&"Add_1", 0, &"Anim_Armature_001|Eyebrow L Down", &"Seek_1", 0, &"Time_1", &"Seek_10", 0, &"Time_10", &"Seek_11", 0, &"Time_11", &"Seek_12", 0, &"Time_12", &"Seek_13", 0, &"Time_13", &"Seek_14", 0, &"Time_14", &"Seek_15", 0, &"Time_15", &"Seek_16", 0, &"Time_16", &"Seek_17", 0, &"Time_17", &"Seek_18", 0, &"Time_18", &"Seek_2", 0, &"Time_2", &"Seek_3", 0, &"Time_3", &"Seek_4", 0, &"Time_4", &"Seek_5", 0, &"Time_5", &"Seek_6", 0, &"Time_6", &"Seek_7", 0, &"Time_7", &"Seek_8", 0, &"Time_8", &"Seek_9", 0, &"Time_9", &"Time_1", 0, &"Anim_Armature_001|Eyebrow L Up", &"Time_10", 0, &"Anim_Armature_001|Head Down", &"Time_11", 0, &"Anim_Armature_001|Head L", &"Time_12", 0, &"Anim_Armature_001|Head R", &"Time_13", 0, &"Anim_Armature_001|Head Tilt L", &"Time_14", 0, &"Anim_Armature_001|Head Tilt R", &"Time_15", 0, &"Anim_Armature_001|Head Up", &"Time_16", 0, &"Anim_Armature_001|Jaw", &"Time_17", 0, &"Anim_Armature_001|Underlid L", &"Time_18", 0, &"Anim_Armature_001|Underlid R", &"Time_2", 0, &"Anim_Armature_001|Eyebrow R Down", &"Time_3", 0, &"Anim_Armature_001|Eyebrow R Up", &"Time_4", 0, &"Anim_Armature_001|Eyelid L", &"Time_5", 0, &"Anim_Armature_001|Eyelid R", &"Time_6", 0, &"Anim_Armature_001|Eyes Down", &"Time_7", 0, &"Anim_Armature_001|Eyes Left", &"Time_8", 0, &"Anim_Armature_001|Eyes Right", &"Time_9", 0, &"Anim_Armature_001|Eyes Up"]
[node name="_AnimationTree_3" type="AnimationTree"]
root_node = NodePath("../Chica")
tree_root = SubResource("AnimationNodeBlendTree_v6irv")
anim_player = NodePath("/root/Freddy\'s/Chica/Chica/AnimationPlayer")
parameters/Add_1/add_amount = 1.0
parameters/Add_10/add_amount = 1.0
parameters/Add_11/add_amount = 1.0
parameters/Add_12/add_amount = 1.0
parameters/Add_13/add_amount = 1.0
parameters/Add_14/add_amount = 1.0
parameters/Add_15/add_amount = 1.0
parameters/Add_16/add_amount = 1.0
parameters/Add_17/add_amount = 1.0
parameters/Add_18/add_amount = 1.0
parameters/Add_2/add_amount = 1.0
parameters/Add_3/add_amount = 1.0
parameters/Add_4/add_amount = 1.0
parameters/Add_5/add_amount = 1.0
parameters/Add_6/add_amount = 1.0
parameters/Add_7/add_amount = 1.0
parameters/Add_8/add_amount = 1.0
parameters/Add_9/add_amount = 1.0
parameters/Seek_1/seek_request = 0
parameters/Seek_10/seek_request = 0
parameters/Seek_11/seek_request = 0
parameters/Seek_12/seek_request = 0
parameters/Seek_13/seek_request = 0
parameters/Seek_14/seek_request = 0
parameters/Seek_15/seek_request = 0
parameters/Seek_16/seek_request = 0
parameters/Seek_17/seek_request = 95.6
parameters/Seek_18/seek_request = 254.94
parameters/Seek_2/seek_request = 2.85
parameters/Seek_3/seek_request = 1.65
parameters/Seek_4/seek_request = 0
parameters/Seek_5/seek_request = 0
parameters/Seek_6/seek_request = 0
parameters/Seek_7/seek_request = 0
parameters/Seek_8/seek_request = 0
parameters/Seek_9/seek_request = 0
parameters/Time_1/scale = 0
parameters/Time_10/scale = 0
parameters/Time_11/scale = 0
parameters/Time_12/scale = 0
parameters/Time_13/scale = 0
parameters/Time_14/scale = 0
parameters/Time_15/scale = 0
parameters/Time_16/scale = 0
parameters/Time_17/scale = 0
parameters/Time_18/scale = 0
parameters/Time_2/scale = 0
parameters/Time_3/scale = 0
parameters/Time_4/scale = 0
parameters/Time_5/scale = 0
parameters/Time_6/scale = 0
parameters/Time_7/scale = 0
parameters/Time_8/scale = 0
parameters/Time_9/scale = 0