summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJacob Lee <jacob@unabridgedsoftware.com>2021-12-10 14:57:40 -0500
committerJacob Lee <jacob@unabridgedsoftware.com>2021-12-10 14:57:40 -0500
commit887247d8a54ee54ec891aeefc19c18c241af6c09 (patch)
treea0586afafcc760ad50e5c373ac6e100998eeeeaf
parent009bbfc41b18a795b3363dd90654a5d59cdf6d1d (diff)
Wire up the sprite
-rw-r--r--klangfarb/.import/moog.JPG-f233f2842c5d6fb78dc4e01163dddabf.md53
-rw-r--r--klangfarb/.import/moog.JPG-f233f2842c5d6fb78dc4e01163dddabf.stexbin0 -> 747954 bytes
-rw-r--r--klangfarb/.import/synth.jpeg-0d3692b736009049abb06e73100121d7.md53
-rw-r--r--klangfarb/.import/synth.jpeg-0d3692b736009049abb06e73100121d7.stexbin0 -> 154838 bytes
-rw-r--r--klangfarb/.import/synth.jpeg-e88e182ce09e6038fdb429a43ce25107.md53
-rw-r--r--klangfarb/.import/synth.jpeg-e88e182ce09e6038fdb429a43ce25107.stexbin0 -> 154838 bytes
-rw-r--r--klangfarb/Main.tscn22
-rw-r--r--klangfarb/assets/moog.JPG.import1
-rw-r--r--klangfarb/assets/synth.jpegbin0 -> 42409 bytes
-rw-r--r--klangfarb/assets/synth.jpeg.import35
10 files changed, 65 insertions, 2 deletions
diff --git a/klangfarb/.import/moog.JPG-f233f2842c5d6fb78dc4e01163dddabf.md5 b/klangfarb/.import/moog.JPG-f233f2842c5d6fb78dc4e01163dddabf.md5
new file mode 100644
index 0000000..43909b3
--- /dev/null
+++ b/klangfarb/.import/moog.JPG-f233f2842c5d6fb78dc4e01163dddabf.md5
@@ -0,0 +1,3 @@
+source_md5="ea1fa85ada33c6852316eb5f00b525a5"
+dest_md5="edb6d41933dc6183728db6b64b09448b"
+
diff --git a/klangfarb/.import/moog.JPG-f233f2842c5d6fb78dc4e01163dddabf.stex b/klangfarb/.import/moog.JPG-f233f2842c5d6fb78dc4e01163dddabf.stex
new file mode 100644
index 0000000..525cfdd
--- /dev/null
+++ b/klangfarb/.import/moog.JPG-f233f2842c5d6fb78dc4e01163dddabf.stex
Binary files differ
diff --git a/klangfarb/.import/synth.jpeg-0d3692b736009049abb06e73100121d7.md5 b/klangfarb/.import/synth.jpeg-0d3692b736009049abb06e73100121d7.md5
new file mode 100644
index 0000000..ccc292e
--- /dev/null
+++ b/klangfarb/.import/synth.jpeg-0d3692b736009049abb06e73100121d7.md5
@@ -0,0 +1,3 @@
+source_md5="d498c1c17a165ccec560a6f7bcea499f"
+dest_md5="fc9e68541a6ca3e8b38cab50fa09065d"
+
diff --git a/klangfarb/.import/synth.jpeg-0d3692b736009049abb06e73100121d7.stex b/klangfarb/.import/synth.jpeg-0d3692b736009049abb06e73100121d7.stex
new file mode 100644
index 0000000..137cb83
--- /dev/null
+++ b/klangfarb/.import/synth.jpeg-0d3692b736009049abb06e73100121d7.stex
Binary files differ
diff --git a/klangfarb/.import/synth.jpeg-e88e182ce09e6038fdb429a43ce25107.md5 b/klangfarb/.import/synth.jpeg-e88e182ce09e6038fdb429a43ce25107.md5
new file mode 100644
index 0000000..ccc292e
--- /dev/null
+++ b/klangfarb/.import/synth.jpeg-e88e182ce09e6038fdb429a43ce25107.md5
@@ -0,0 +1,3 @@
+source_md5="d498c1c17a165ccec560a6f7bcea499f"
+dest_md5="fc9e68541a6ca3e8b38cab50fa09065d"
+
diff --git a/klangfarb/.import/synth.jpeg-e88e182ce09e6038fdb429a43ce25107.stex b/klangfarb/.import/synth.jpeg-e88e182ce09e6038fdb429a43ce25107.stex
new file mode 100644
index 0000000..137cb83
--- /dev/null
+++ b/klangfarb/.import/synth.jpeg-e88e182ce09e6038fdb429a43ce25107.stex
Binary files differ
diff --git a/klangfarb/Main.tscn b/klangfarb/Main.tscn
index c7c5939..a5f123c 100644
--- a/klangfarb/Main.tscn
+++ b/klangfarb/Main.tscn
@@ -1,6 +1,8 @@
-[gd_scene load_steps=3 format=2]
+[gd_scene load_steps=5 format=2]
+[ext_resource path="res://assets/moog.JPG" type="Texture" id=1]
[ext_resource path="res://main.gd" type="Script" id=2]
+[ext_resource path="res://Power.gd" type="Script" id=3]
[sub_resource type="AudioStreamGenerator" id=1]
@@ -8,8 +10,24 @@
stream = SubResource( 1 )
volume_db = -13.216
script = ExtResource( 2 )
-play_instrument = true
continuous = false
decay = 1000
release = 500
fm_index = 100.0
+
+[node name="Moog" type="Sprite" parent="."]
+position = Vector2( 512, 306 )
+texture = ExtResource( 1 )
+__meta__ = {
+"_edit_lock_": true
+}
+
+[node name="Control" type="Control" parent="."]
+margin_left = 900.0
+margin_top = 73.0
+margin_right = 940.0
+margin_bottom = 113.0
+script = ExtResource( 3 )
+__meta__ = {
+"_edit_use_anchors_": false
+}
diff --git a/klangfarb/assets/moog.JPG.import b/klangfarb/assets/moog.JPG.import
index 56836c1..b091701 100644
--- a/klangfarb/assets/moog.JPG.import
+++ b/klangfarb/assets/moog.JPG.import
@@ -28,6 +28,7 @@ process/fix_alpha_border=true
process/premult_alpha=false
process/HDR_as_SRGB=false
process/invert_color=false
+process/normal_map_invert_y=false
stream=false
size_limit=0
detect_3d=true
diff --git a/klangfarb/assets/synth.jpeg b/klangfarb/assets/synth.jpeg
new file mode 100644
index 0000000..4af97d7
--- /dev/null
+++ b/klangfarb/assets/synth.jpeg
Binary files differ
diff --git a/klangfarb/assets/synth.jpeg.import b/klangfarb/assets/synth.jpeg.import
new file mode 100644
index 0000000..13dc94f
--- /dev/null
+++ b/klangfarb/assets/synth.jpeg.import
@@ -0,0 +1,35 @@
+[remap]
+
+importer="texture"
+type="StreamTexture"
+path="res://.import/synth.jpeg-0d3692b736009049abb06e73100121d7.stex"
+metadata={
+"vram_texture": false
+}
+
+[deps]
+
+source_file="res://assets/synth.jpeg"
+dest_files=[ "res://.import/synth.jpeg-0d3692b736009049abb06e73100121d7.stex" ]
+
+[params]
+
+compress/mode=0
+compress/lossy_quality=0.7
+compress/hdr_mode=0
+compress/bptc_ldr=0
+compress/normal_map=0
+flags/repeat=0
+flags/filter=true
+flags/mipmaps=false
+flags/anisotropic=false
+flags/srgb=2
+process/fix_alpha_border=true
+process/premult_alpha=false
+process/HDR_as_SRGB=false
+process/invert_color=false
+process/normal_map_invert_y=false
+stream=false
+size_limit=0
+detect_3d=true
+svg/scale=1.0