add munch and start of 2st props
This commit is contained in:
parent
16b7d5e8d5
commit
514125005b
29 changed files with 541 additions and 45 deletions
67
Scenes/Animatables/CyberMunch.tscn
Normal file
67
Scenes/Animatables/CyberMunch.tscn
Normal file
|
@ -0,0 +1,67 @@
|
|||
[gd_scene load_steps=3 format=3 uid="uid://tjgw1b6x4iqo"]
|
||||
|
||||
[ext_resource type="Script" uid="uid://iqrmm33dxvui" path="res://Scripts/GL_Animatronic.gd" id="1_7luna"]
|
||||
[ext_resource type="PackedScene" uid="uid://4qc8ltvuemre" path="res://Models/Animatronics/CyberMunch/munch.glb" id="2_7luna"]
|
||||
|
||||
[node name="CyberMunch" type="Node3D" groups=["AA_CYBERMUNCH"]]
|
||||
script = ExtResource("1_7luna")
|
||||
animParameters = {
|
||||
"Eyelids": {
|
||||
"in_speed": 5.0,
|
||||
"out_speed": 5.0,
|
||||
"signal_value": 0,
|
||||
"type": "standard",
|
||||
"value": 0.0
|
||||
},
|
||||
"Eyes Left": {
|
||||
"in_speed": 5.0,
|
||||
"out_speed": 5.0,
|
||||
"signal_value": 0,
|
||||
"type": "standard",
|
||||
"value": 0.0
|
||||
},
|
||||
"Eyes Right": {
|
||||
"in_speed": 5.0,
|
||||
"out_speed": 5.0,
|
||||
"signal_value": 0,
|
||||
"type": "standard",
|
||||
"value": 0.0
|
||||
},
|
||||
"Head Left": {
|
||||
"in_speed": 5.0,
|
||||
"out_speed": 5.0,
|
||||
"signal_value": 0,
|
||||
"type": "standard",
|
||||
"value": 0.0
|
||||
},
|
||||
"Head Right": {
|
||||
"in_speed": 5.0,
|
||||
"out_speed": 5.0,
|
||||
"signal_value": 0,
|
||||
"type": "standard",
|
||||
"value": 0.0
|
||||
},
|
||||
"Left Arm": {
|
||||
"in_speed": 5.0,
|
||||
"out_speed": 5.0,
|
||||
"signal_value": 0,
|
||||
"type": "standard",
|
||||
"value": 0.0
|
||||
},
|
||||
"Mouth": {
|
||||
"in_speed": 5.0,
|
||||
"out_speed": 5.0,
|
||||
"signal_value": 0,
|
||||
"type": "standard",
|
||||
"value": 0.0
|
||||
},
|
||||
"Right Arm": {
|
||||
"in_speed": 5.0,
|
||||
"out_speed": 5.0,
|
||||
"signal_value": 0,
|
||||
"type": "standard",
|
||||
"value": 0.0
|
||||
}
|
||||
}
|
||||
|
||||
[node name="munch" parent="." instance=ExtResource("2_7luna")]
|
26
Scenes/Node Types/CyberMunch.tscn
Normal file
26
Scenes/Node Types/CyberMunch.tscn
Normal file
|
@ -0,0 +1,26 @@
|
|||
[gd_scene load_steps=3 format=3 uid="uid://cqe7k0r2uh8df"]
|
||||
|
||||
[ext_resource type="PackedScene" uid="uid://b0arjg8r75f8y" path="res://Scenes/Nodes/Node.tscn" id="1_ud4vq"]
|
||||
[ext_resource type="Script" uid="uid://t8bsiegtsiwo" path="res://Scripts/GL_Output.gd" id="2_2xofx"]
|
||||
|
||||
[node name="Node" type="Control"]
|
||||
layout_mode = 3
|
||||
anchors_preset = 15
|
||||
anchor_right = 1.0
|
||||
anchor_bottom = 1.0
|
||||
offset_right = -1152.0
|
||||
offset_bottom = -648.0
|
||||
grow_horizontal = 2
|
||||
grow_vertical = 2
|
||||
|
||||
[node name="Node" parent="." groups=["GL Node"] instance=ExtResource("1_ud4vq")]
|
||||
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_2xofx")
|
||||
identification = "AA_CYBERMUNCH"
|
||||
visual_name = "Mr. Munch (Tux)"
|
||||
names = PackedStringArray("Mouth", "Head Right", "Head Left", "Eyes Right", "Eyes Left", "Eyelids", "Right Arm", "Left Arm")
|
||||
types = PackedStringArray("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"]
|
17
Scenes/Node Types/MiscKeys.tscn
Normal file
17
Scenes/Node Types/MiscKeys.tscn
Normal file
|
@ -0,0 +1,17 @@
|
|||
[gd_scene load_steps=3 format=3 uid="uid://cobd87j1kub76"]
|
||||
|
||||
[ext_resource type="PackedScene" uid="uid://b0arjg8r75f8y" path="res://Scenes/Nodes/Node.tscn" id="1_m8mov"]
|
||||
[ext_resource type="Script" uid="uid://bj0lla8757tnh" path="res://Scripts/GL_MiscKeys.gd" id="2_m8mov"]
|
||||
|
||||
[node name="Node" type="Control"]
|
||||
layout_mode = 3
|
||||
anchors_preset = 0
|
||||
mouse_filter = 1
|
||||
|
||||
[node name="Node" parent="." groups=["GL Node"] instance=ExtResource("1_m8mov")]
|
||||
layout_mode = 0
|
||||
tooltip_text = "Sets a bool for any of the number keys that are pressed."
|
||||
script = ExtResource("2_m8mov")
|
||||
|
||||
[connection signal="mouse_entered" from="Node" to="Node" method="mouse_enter"]
|
||||
[connection signal="mouse_exited" from="Node" to="Node" method="mouse_exit"]
|
|
@ -1,17 +1,17 @@
|
|||
[gd_scene load_steps=3 format=3 uid="uid://jmwqwspljwjc"]
|
||||
|
||||
[ext_resource type="PackedScene" uid="uid://b0arjg8r75f8y" path="res://Scenes/Nodes/Node.tscn" id="1_ua37n"]
|
||||
[ext_resource type="Script" uid="uid://e6v6exlrhtaq" path="res://Scripts/GL_Keystrokes.gd" id="2_ua37n"]
|
||||
[ext_resource type="PackedScene" uid="uid://b0arjg8r75f8y" path="res://Scenes/Nodes/Node.tscn" id="1_nt2x2"]
|
||||
[ext_resource type="Script" uid="uid://e6v6exlrhtaq" path="res://Scripts/GL_NumberKeys.gd" id="2_gnbp1"]
|
||||
|
||||
[node name="Node" type="Control"]
|
||||
layout_mode = 3
|
||||
anchors_preset = 0
|
||||
mouse_filter = 1
|
||||
|
||||
[node name="Node" parent="." groups=["GL Node"] instance=ExtResource("1_ua37n")]
|
||||
[node name="Node" parent="." groups=["GL Node"] instance=ExtResource("1_nt2x2")]
|
||||
layout_mode = 0
|
||||
tooltip_text = "Sets a bool for any of the number keys that are pressed."
|
||||
script = ExtResource("2_ua37n")
|
||||
script = ExtResource("2_gnbp1")
|
||||
|
||||
[connection signal="mouse_entered" from="Node" to="Node" method="mouse_enter"]
|
||||
[connection signal="mouse_exited" from="Node" to="Node" method="mouse_exit"]
|
|
@ -1,40 +0,0 @@
|
|||
[gd_scene load_steps=8 format=3 uid="uid://qvo7vlvac8o5"]
|
||||
|
||||
[ext_resource type="PackedScene" uid="uid://biu7cbgleyuq8" path="res://Scenes/Animatables/CyberHelen.tscn" id="1_cd1y8"]
|
||||
[ext_resource type="PackedScene" uid="uid://dhpife36refiy" path="res://Scenes/Animatables/CyberChuck.tscn" id="1_cxuso"]
|
||||
[ext_resource type="Script" uid="uid://8vyuhyx0xogt" path="res://Scripts/freecam.gd" id="2_cxuso"]
|
||||
[ext_resource type="PackedScene" uid="uid://clixk4m0rm0mu" path="res://Scenes/UI/HUD.tscn" id="4_cxuso"]
|
||||
[ext_resource type="PackedScene" uid="uid://c57u187iciexi" path="res://Scenes/UI/Node Map.tscn" id="4_dksio"]
|
||||
|
||||
[sub_resource type="PlaneMesh" id="PlaneMesh_8xxbx"]
|
||||
|
||||
[sub_resource type="Environment" id="Environment_re3v0"]
|
||||
background_mode = 1
|
||||
ambient_light_source = 3
|
||||
ambient_light_color = Color(1, 1, 1, 1)
|
||||
ambient_light_energy = 0.25
|
||||
|
||||
[node name="1Stage" type="Node3D"]
|
||||
|
||||
[node name="CyberChuck" parent="." instance=ExtResource("1_cxuso")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -2, 0, 0)
|
||||
|
||||
[node name="CyberHelen" parent="." instance=ExtResource("1_cd1y8")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 2, 0, 0)
|
||||
|
||||
[node name="MeshInstance3D" type="MeshInstance3D" parent="."]
|
||||
transform = Transform3D(5, 0, 0, 0, 5, 0, 0, 0, 5, 0, 0, 0)
|
||||
mesh = SubResource("PlaneMesh_8xxbx")
|
||||
|
||||
[node name="WorldEnvironment" type="WorldEnvironment" parent="."]
|
||||
environment = SubResource("Environment_re3v0")
|
||||
|
||||
[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, 4.74284)
|
||||
script = ExtResource("2_cxuso")
|
||||
toggle_key = 4194305
|
||||
overlay_text = false
|
||||
|
||||
[node name="HUD" parent="Camera3D" instance=ExtResource("4_cxuso")]
|
||||
|
||||
[node name="NodeMap" parent="." instance=ExtResource("4_dksio")]
|
49
Scenes/Stages/2Stage.tscn
Normal file
49
Scenes/Stages/2Stage.tscn
Normal file
|
@ -0,0 +1,49 @@
|
|||
[gd_scene load_steps=10 format=3 uid="uid://qvo7vlvac8o5"]
|
||||
|
||||
[ext_resource type="Script" uid="uid://8vyuhyx0xogt" path="res://Scripts/freecam.gd" id="1_ru8gb"]
|
||||
[ext_resource type="PackedScene" uid="uid://clixk4m0rm0mu" path="res://Scenes/UI/HUD.tscn" id="2_yrqm3"]
|
||||
[ext_resource type="PackedScene" uid="uid://c57u187iciexi" path="res://Scenes/UI/Node Map.tscn" id="3_u0wf5"]
|
||||
[ext_resource type="PackedScene" uid="uid://dwdcfwbmoo36b" path="res://Models/Props/stage_base.glb" id="4_ol4ys"]
|
||||
[ext_resource type="PackedScene" uid="uid://dlf6gkpsv5g05" path="res://Models/Props/keyboard.glb" id="5_ti4ja"]
|
||||
[ext_resource type="PackedScene" uid="uid://dhpife36refiy" path="res://Scenes/Animatables/CyberChuck.tscn" id="6_2m2n1"]
|
||||
[ext_resource type="PackedScene" uid="uid://biu7cbgleyuq8" path="res://Scenes/Animatables/CyberHelen.tscn" id="7_hmuo4"]
|
||||
[ext_resource type="PackedScene" uid="uid://tjgw1b6x4iqo" path="res://Scenes/Animatables/CyberMunch.tscn" id="8_hbltw"]
|
||||
|
||||
[sub_resource type="Environment" id="Environment_re3v0"]
|
||||
background_mode = 1
|
||||
ambient_light_source = 3
|
||||
ambient_light_color = Color(1, 1, 1, 1)
|
||||
ambient_light_energy = 0.25
|
||||
|
||||
[node name="1Stage" type="Node3D"]
|
||||
|
||||
[node name="WorldEnvironment" type="WorldEnvironment" parent="."]
|
||||
environment = SubResource("Environment_re3v0")
|
||||
|
||||
[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, 9.74284)
|
||||
script = ExtResource("1_ru8gb")
|
||||
toggle_key = 4194305
|
||||
overlay_text = false
|
||||
|
||||
[node name="HUD" parent="Camera3D" instance=ExtResource("2_yrqm3")]
|
||||
|
||||
[node name="NodeMap" parent="." instance=ExtResource("3_u0wf5")]
|
||||
|
||||
[node name="Props" type="Node" parent="."]
|
||||
|
||||
[node name="stage_base2" parent="Props" instance=ExtResource("4_ol4ys")]
|
||||
|
||||
[node name="keyboard" parent="Props" instance=ExtResource("5_ti4ja")]
|
||||
transform = Transform3D(-4.37114e-08, 0, -1, 0, 1, 0, 1, 0, -4.37114e-08, 2, 0, 1)
|
||||
|
||||
[node name="Bots" type="Node" parent="."]
|
||||
|
||||
[node name="CyberChuck" parent="Bots" instance=ExtResource("6_2m2n1")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -8, 0, 0)
|
||||
|
||||
[node name="CyberHelen" parent="Bots" instance=ExtResource("7_hmuo4")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -1, 0, 0)
|
||||
|
||||
[node name="CyberMunch" parent="Bots" instance=ExtResource("8_hbltw")]
|
||||
transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 2, 0, 0)
|
Loading…
Add table
Add a link
Reference in a new issue