Send it
Time to get started
This commit is contained in:
parent
3173b21368
commit
ffe98d4910
69 changed files with 18490 additions and 33946 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -3,3 +3,4 @@
|
|||
.export/
|
||||
.itchio/
|
||||
.steam/
|
||||
.DS_Store
|
||||
|
|
|
@ -1,2 +1,3 @@
|
|||
This is a Godot 4.1.2 stable project. Not sure if everything will work in future version.
|
||||
This code is very bad so be warned this is a SLOP project
|
||||
This wass a Godot 4.1.2 stable project. I'm trying to fix it
|
||||
This code is very bad I'm trying to turn it into not a SLOP project
|
||||
Upstream: https://github.com/kaiakairos/PNGTuber-Plus.git
|
||||
|
|
|
@ -1,21 +0,0 @@
|
|||
MIT License
|
||||
|
||||
Copyright (c) 2016-2023 The Godot Engine community
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
of this software and associated documentation files (the "Software"), to deal
|
||||
in the Software without restriction, including without limitation the rights
|
||||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||
copies of the Software, and to permit persons to whom the Software is
|
||||
furnished to do so, subject to the following conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be included in all
|
||||
copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
||||
SOFTWARE.
|
File diff suppressed because it is too large
Load diff
|
@ -1,12 +0,0 @@
|
|||
[configuration]
|
||||
|
||||
entry_symbol = "git_plugin_init"
|
||||
compatibility_minimum = "4.1.0"
|
||||
|
||||
[libraries]
|
||||
|
||||
macos.editor = "macos/libgit_plugin.macos.editor.universal.dylib"
|
||||
windows.editor.x86_64 = "win64/libgit_plugin.windows.editor.x86_64.dll"
|
||||
linux.editor.x86_64 = "linux/libgit_plugin.linux.editor.x86_64.so"
|
||||
linux.editor.arm64 = "linux/libgit_plugin.linux.editor.arm64.so"
|
||||
linux.editor.rv64 = ""
|
Binary file not shown.
Binary file not shown.
|
@ -1,7 +0,0 @@
|
|||
[plugin]
|
||||
|
||||
name="Godot Git Plugin"
|
||||
description="This plugin lets you interact with Git without leaving the Godot editor. More information can be found at https://github.com/godotengine/godot-git-plugin/wiki"
|
||||
author="twaritwaikar"
|
||||
version="v3.1.0"
|
||||
script="godot-git-plugin.gd"
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
1
addons/godot-streamdeck-addon/plugin.gd.uid
Normal file
1
addons/godot-streamdeck-addon/plugin.gd.uid
Normal file
|
@ -0,0 +1 @@
|
|||
uid://bk2qg75nb2na1
|
1
addons/godot-streamdeck-addon/singleton.gd.uid
Normal file
1
addons/godot-streamdeck-addon/singleton.gd.uid
Normal file
|
@ -0,0 +1 @@
|
|||
uid://c7f5vdg8nixqh
|
1
autoload/defaultAvatarData.gd.uid
Normal file
1
autoload/defaultAvatarData.gd.uid
Normal file
|
@ -0,0 +1 @@
|
|||
uid://dqsikysw3ch7s
|
|
@ -68,7 +68,7 @@ func createMicrophone():
|
|||
var mic = AudioStreamMicrophone.new()
|
||||
playa.stream = mic
|
||||
playa.autoplay = true
|
||||
playa.bus = "MIC"
|
||||
playa.bus = &"MIC"
|
||||
add_child(playa)
|
||||
currentMicrophone = playa
|
||||
await get_tree().create_timer(micResetTime).timeout
|
||||
|
|
1
autoload/global.gd.uid
Normal file
1
autoload/global.gd.uid
Normal file
|
@ -0,0 +1 @@
|
|||
uid://bmpjqfd2aoh2t
|
1
autoload/saving.gd.uid
Normal file
1
autoload/saving.gd.uid
Normal file
|
@ -0,0 +1 @@
|
|||
uid://cxa11b2rlruyu
|
|
@ -1,23 +0,0 @@
|
|||
[configuration]
|
||||
|
||||
entry_symbol = "example_library_init"
|
||||
compatibility_minimum = "4.1"
|
||||
|
||||
[libraries]
|
||||
|
||||
macos.debug = "res://bin/libgdexamplemacostemplate_debug.framework/libgdexamplemacostemplate_debug.dylib"
|
||||
macos.release = "res://bin/libgdexamplemacostemplate_release.framework/libgdexamplemacostemplate_release.dylib"
|
||||
windows.debug.x86_32 = "res://bin/libgdexample.windows.template_debug.x86_32.dll"
|
||||
windows.release.x86_32 = "res://bin/libgdexample.windows.template_release.x86_32.dll"
|
||||
windows.debug.x86_64 = "res://bin/libgdexample.windows.template_debug.x86_64.dll"
|
||||
windows.release.x86_64 = "res://bin/libgdexample.windows.template_release.x86_64.dll"
|
||||
linux.debug.x86_64 = "res://bin/libgdexample.linux.template_debug.x86_64.so"
|
||||
linux.release.x86_64 = "res://bin/libgdexample.linux.template_release.x86_64.so"
|
||||
linux.debug.arm64 = "res://bin/libgdexample.linux.template_debug.arm64.so"
|
||||
linux.release.arm64 = "res://bin/libgdexample.linux.template_release.arm64.so"
|
||||
linux.debug.rv64 = "res://bin/libgdexample.linux.template_debug.rv64.so"
|
||||
linux.release.rv64 = "res://bin/libgdexample.linux.template_release.rv64.so"
|
||||
android.debug.x86_64 = "res://bin/libgdexample.android.template_debug.x86_64.so"
|
||||
android.release.x86_64 = "res://bin/libgdexample.android.template_release.x86_64.so"
|
||||
android.debug.arm64 = "res://bin/libgdexample.android.template_debug.arm64.so"
|
||||
android.release.arm64 = "res://bin/libgdexample.android.template_release.arm64.so"
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
|
@ -12,9 +12,9 @@ fft_size = 0
|
|||
[resource]
|
||||
bus/1/name = &"MIC"
|
||||
bus/1/solo = false
|
||||
bus/1/mute = false
|
||||
bus/1/mute = true
|
||||
bus/1/bypass_fx = false
|
||||
bus/1/volume_db = -80.0
|
||||
bus/1/volume_db = 0.0672607
|
||||
bus/1/send = &"Master"
|
||||
bus/1/effect/0/effect = SubResource("AudioEffectRecord_ucpvm")
|
||||
bus/1/effect/0/enabled = true
|
||||
|
|
|
@ -15,6 +15,7 @@ dest_files=["res://.godot/imported/I-pixel-u.ttf-93d60f2456fb1937becfef150a57054
|
|||
Rendering=null
|
||||
antialiasing=1
|
||||
generate_mipmaps=false
|
||||
disable_embedded_bitmaps=true
|
||||
multichannel_signed_distance_field=false
|
||||
msdf_pixel_range=8
|
||||
msdf_size=48
|
||||
|
@ -22,6 +23,7 @@ allow_system_fallback=true
|
|||
force_autohinter=false
|
||||
hinting=1
|
||||
subpixel_positioning=1
|
||||
keep_rounding_remainders=true
|
||||
oversampling=0.0
|
||||
Fallbacks=null
|
||||
fallbacks=[]
|
||||
|
|
|
@ -15,6 +15,7 @@ dest_files=["res://.godot/imported/g.ttf-9f6d8c807fc8c8b1e0b9d659d48298ec.fontda
|
|||
Rendering=null
|
||||
antialiasing=1
|
||||
generate_mipmaps=false
|
||||
disable_embedded_bitmaps=true
|
||||
multichannel_signed_distance_field=false
|
||||
msdf_pixel_range=8
|
||||
msdf_size=48
|
||||
|
@ -22,6 +23,7 @@ allow_system_fallback=true
|
|||
force_autohinter=false
|
||||
hinting=1
|
||||
subpixel_positioning=1
|
||||
keep_rounding_remainders=true
|
||||
oversampling=0.0
|
||||
Fallbacks=null
|
||||
fallbacks=[]
|
||||
|
|
|
@ -15,6 +15,7 @@ dest_files=["res://.godot/imported/goober_pixel.ttf-62c290ad12346c410d17e4f718a2
|
|||
Rendering=null
|
||||
antialiasing=1
|
||||
generate_mipmaps=false
|
||||
disable_embedded_bitmaps=true
|
||||
multichannel_signed_distance_field=false
|
||||
msdf_pixel_range=8
|
||||
msdf_size=48
|
||||
|
@ -22,6 +23,7 @@ allow_system_fallback=true
|
|||
force_autohinter=false
|
||||
hinting=1
|
||||
subpixel_positioning=1
|
||||
keep_rounding_remainders=true
|
||||
oversampling=0.0
|
||||
Fallbacks=null
|
||||
fallbacks=[]
|
||||
|
|
1
main_scenes/ControlPanel.gd.uid
Normal file
1
main_scenes/ControlPanel.gd.uid
Normal file
|
@ -0,0 +1 @@
|
|||
uid://dcy2f8diew3qb
|
1
main_scenes/EditControls.gd.uid
Normal file
1
main_scenes/EditControls.gd.uid
Normal file
|
@ -0,0 +1 @@
|
|||
uid://b27vlfjb0ar3b
|
1
main_scenes/MicInputSelect.gd.uid
Normal file
1
main_scenes/MicInputSelect.gd.uid
Normal file
|
@ -0,0 +1 @@
|
|||
uid://0iwapd86ob8s
|
1
main_scenes/Tutorial.gd.uid
Normal file
1
main_scenes/Tutorial.gd.uid
Normal file
|
@ -0,0 +1 @@
|
|||
uid://cl3qgg2fqmofd
|
1
main_scenes/main.gd.uid
Normal file
1
main_scenes/main.gd.uid
Normal file
|
@ -0,0 +1 @@
|
|||
uid://d13pkrb3lwjy4
|
14160
main_scenes/main.tscn
14160
main_scenes/main.tscn
File diff suppressed because one or more lines are too long
1
main_scenes/originLineDrawing.gd.uid
Normal file
1
main_scenes/originLineDrawing.gd.uid
Normal file
|
@ -0,0 +1 @@
|
|||
uid://dv5tr27gk58pf
|
|
@ -12,12 +12,12 @@ config_version=5
|
|||
|
||||
config/name="PNGTuberPlus"
|
||||
run/main_scene="res://main_scenes/main.tscn"
|
||||
config/features=PackedStringArray("4.1", "GL Compatibility")
|
||||
config/features=PackedStringArray("4.4", "GL Compatibility")
|
||||
run/max_fps=60
|
||||
boot_splash/bg_color=Color(0.0313726, 0.0313726, 0.0313726, 1)
|
||||
boot_splash/image="res://splash.png"
|
||||
boot_splash/fullsize=false
|
||||
boot_splash/use_filter=false
|
||||
boot_splash/image="res://splash.png"
|
||||
config/icon="res://icon.png"
|
||||
|
||||
[audio]
|
||||
|
@ -65,79 +65,79 @@ mouse_left={
|
|||
}
|
||||
origin={
|
||||
"deadzone": 0.5,
|
||||
"events": [Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":-1,"window_id":0,"alt_pressed":false,"shift_pressed":false,"ctrl_pressed":false,"meta_pressed":false,"pressed":false,"keycode":0,"physical_keycode":79,"key_label":0,"unicode":111,"echo":false,"script":null)
|
||||
"events": [Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":-1,"window_id":0,"alt_pressed":false,"shift_pressed":false,"ctrl_pressed":false,"meta_pressed":false,"pressed":false,"keycode":0,"physical_keycode":79,"key_label":0,"unicode":111,"location":0,"echo":false,"script":null)
|
||||
]
|
||||
}
|
||||
move_up={
|
||||
"deadzone": 0.5,
|
||||
"events": [Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":-1,"window_id":0,"alt_pressed":false,"shift_pressed":false,"ctrl_pressed":false,"meta_pressed":false,"pressed":false,"keycode":0,"physical_keycode":87,"key_label":0,"unicode":119,"echo":false,"script":null)
|
||||
"events": [Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":-1,"window_id":0,"alt_pressed":false,"shift_pressed":false,"ctrl_pressed":false,"meta_pressed":false,"pressed":false,"keycode":0,"physical_keycode":87,"key_label":0,"unicode":119,"location":0,"echo":false,"script":null)
|
||||
]
|
||||
}
|
||||
move_left={
|
||||
"deadzone": 0.5,
|
||||
"events": [Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":-1,"window_id":0,"alt_pressed":false,"shift_pressed":false,"ctrl_pressed":false,"meta_pressed":false,"pressed":false,"keycode":0,"physical_keycode":65,"key_label":0,"unicode":97,"echo":false,"script":null)
|
||||
"events": [Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":-1,"window_id":0,"alt_pressed":false,"shift_pressed":false,"ctrl_pressed":false,"meta_pressed":false,"pressed":false,"keycode":0,"physical_keycode":65,"key_label":0,"unicode":97,"location":0,"echo":false,"script":null)
|
||||
]
|
||||
}
|
||||
move_right={
|
||||
"deadzone": 0.5,
|
||||
"events": [Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":-1,"window_id":0,"alt_pressed":false,"shift_pressed":false,"ctrl_pressed":false,"meta_pressed":false,"pressed":false,"keycode":0,"physical_keycode":68,"key_label":0,"unicode":100,"echo":false,"script":null)
|
||||
"events": [Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":-1,"window_id":0,"alt_pressed":false,"shift_pressed":false,"ctrl_pressed":false,"meta_pressed":false,"pressed":false,"keycode":0,"physical_keycode":68,"key_label":0,"unicode":100,"location":0,"echo":false,"script":null)
|
||||
]
|
||||
}
|
||||
move_down={
|
||||
"deadzone": 0.5,
|
||||
"events": [Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":-1,"window_id":0,"alt_pressed":false,"shift_pressed":false,"ctrl_pressed":false,"meta_pressed":false,"pressed":false,"keycode":0,"physical_keycode":83,"key_label":0,"unicode":115,"echo":false,"script":null)
|
||||
"events": [Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":-1,"window_id":0,"alt_pressed":false,"shift_pressed":false,"ctrl_pressed":false,"meta_pressed":false,"pressed":false,"keycode":0,"physical_keycode":83,"key_label":0,"unicode":115,"location":0,"echo":false,"script":null)
|
||||
]
|
||||
}
|
||||
reparent={
|
||||
"deadzone": 0.5,
|
||||
"events": [Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":-1,"window_id":0,"alt_pressed":false,"shift_pressed":false,"ctrl_pressed":false,"meta_pressed":false,"pressed":false,"keycode":0,"physical_keycode":80,"key_label":0,"unicode":112,"echo":false,"script":null)
|
||||
"events": [Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":-1,"window_id":0,"alt_pressed":false,"shift_pressed":false,"ctrl_pressed":false,"meta_pressed":false,"pressed":false,"keycode":0,"physical_keycode":80,"key_label":0,"unicode":112,"location":0,"echo":false,"script":null)
|
||||
]
|
||||
}
|
||||
zDown={
|
||||
"deadzone": 0.5,
|
||||
"events": [Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":-1,"window_id":0,"alt_pressed":false,"shift_pressed":false,"ctrl_pressed":false,"meta_pressed":false,"pressed":false,"keycode":0,"physical_keycode":81,"key_label":0,"unicode":113,"echo":false,"script":null)
|
||||
"events": [Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":-1,"window_id":0,"alt_pressed":false,"shift_pressed":false,"ctrl_pressed":false,"meta_pressed":false,"pressed":false,"keycode":0,"physical_keycode":81,"key_label":0,"unicode":113,"location":0,"echo":false,"script":null)
|
||||
]
|
||||
}
|
||||
zUp={
|
||||
"deadzone": 0.5,
|
||||
"events": [Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":-1,"window_id":0,"alt_pressed":false,"shift_pressed":false,"ctrl_pressed":false,"meta_pressed":false,"pressed":false,"keycode":0,"physical_keycode":69,"key_label":0,"unicode":101,"echo":false,"script":null)
|
||||
"events": [Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":-1,"window_id":0,"alt_pressed":false,"shift_pressed":false,"ctrl_pressed":false,"meta_pressed":false,"pressed":false,"keycode":0,"physical_keycode":69,"key_label":0,"unicode":101,"location":0,"echo":false,"script":null)
|
||||
]
|
||||
}
|
||||
openFolder={
|
||||
"deadzone": 0.5,
|
||||
"events": [Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":-1,"window_id":0,"alt_pressed":false,"shift_pressed":false,"ctrl_pressed":false,"meta_pressed":false,"pressed":false,"keycode":0,"physical_keycode":4194305,"key_label":0,"unicode":0,"echo":false,"script":null)
|
||||
"events": [Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":-1,"window_id":0,"alt_pressed":false,"shift_pressed":false,"ctrl_pressed":false,"meta_pressed":false,"pressed":false,"keycode":0,"physical_keycode":4194305,"key_label":0,"unicode":0,"location":0,"echo":false,"script":null)
|
||||
]
|
||||
}
|
||||
scrollUp={
|
||||
"deadzone": 0.5,
|
||||
"events": [Object(InputEventMouseButton,"resource_local_to_scene":false,"resource_name":"","device":-1,"window_id":0,"alt_pressed":false,"shift_pressed":false,"ctrl_pressed":false,"meta_pressed":false,"button_mask":0,"position":Vector2(0, 0),"global_position":Vector2(0, 0),"factor":1.0,"button_index":4,"canceled":false,"pressed":false,"double_click":false,"script":null)
|
||||
, Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":-1,"window_id":0,"alt_pressed":false,"shift_pressed":false,"ctrl_pressed":false,"meta_pressed":false,"pressed":false,"keycode":0,"physical_keycode":4194320,"key_label":0,"unicode":0,"echo":false,"script":null)
|
||||
, Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":-1,"window_id":0,"alt_pressed":false,"shift_pressed":false,"ctrl_pressed":false,"meta_pressed":false,"pressed":false,"keycode":0,"physical_keycode":4194320,"key_label":0,"unicode":0,"location":0,"echo":false,"script":null)
|
||||
]
|
||||
}
|
||||
scrollDown={
|
||||
"deadzone": 0.5,
|
||||
"events": [Object(InputEventMouseButton,"resource_local_to_scene":false,"resource_name":"","device":-1,"window_id":0,"alt_pressed":false,"shift_pressed":false,"ctrl_pressed":false,"meta_pressed":false,"button_mask":0,"position":Vector2(0, 0),"global_position":Vector2(0, 0),"factor":1.0,"button_index":5,"canceled":false,"pressed":false,"double_click":false,"script":null)
|
||||
, Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":-1,"window_id":0,"alt_pressed":false,"shift_pressed":false,"ctrl_pressed":false,"meta_pressed":false,"pressed":false,"keycode":0,"physical_keycode":4194322,"key_label":0,"unicode":0,"echo":false,"script":null)
|
||||
, Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":-1,"window_id":0,"alt_pressed":false,"shift_pressed":false,"ctrl_pressed":false,"meta_pressed":false,"pressed":false,"keycode":0,"physical_keycode":4194322,"key_label":0,"unicode":0,"location":0,"echo":false,"script":null)
|
||||
]
|
||||
}
|
||||
refresh={
|
||||
"deadzone": 0.5,
|
||||
"events": [Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":-1,"window_id":0,"alt_pressed":false,"shift_pressed":false,"ctrl_pressed":false,"meta_pressed":false,"pressed":false,"keycode":0,"physical_keycode":82,"key_label":0,"unicode":114,"echo":false,"script":null)
|
||||
"events": [Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":-1,"window_id":0,"alt_pressed":false,"shift_pressed":false,"ctrl_pressed":false,"meta_pressed":false,"pressed":false,"keycode":0,"physical_keycode":82,"key_label":0,"unicode":114,"location":0,"echo":false,"script":null)
|
||||
]
|
||||
}
|
||||
unlink={
|
||||
"deadzone": 0.5,
|
||||
"events": [Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":-1,"window_id":0,"alt_pressed":false,"shift_pressed":false,"ctrl_pressed":false,"meta_pressed":false,"pressed":false,"keycode":0,"physical_keycode":85,"key_label":0,"unicode":117,"echo":false,"script":null)
|
||||
"events": [Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":-1,"window_id":0,"alt_pressed":false,"shift_pressed":false,"ctrl_pressed":false,"meta_pressed":false,"pressed":false,"keycode":0,"physical_keycode":85,"key_label":0,"unicode":117,"location":0,"echo":false,"script":null)
|
||||
]
|
||||
}
|
||||
control={
|
||||
"deadzone": 0.5,
|
||||
"events": [Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":-1,"window_id":0,"alt_pressed":false,"shift_pressed":false,"ctrl_pressed":false,"meta_pressed":false,"pressed":false,"keycode":0,"physical_keycode":4194326,"key_label":0,"unicode":0,"echo":false,"script":null)
|
||||
"events": [Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":-1,"window_id":0,"alt_pressed":false,"shift_pressed":false,"ctrl_pressed":false,"meta_pressed":false,"pressed":false,"keycode":0,"physical_keycode":4194326,"key_label":0,"unicode":0,"location":0,"echo":false,"script":null)
|
||||
]
|
||||
}
|
||||
saveImages={
|
||||
"deadzone": 0.5,
|
||||
"events": [Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":-1,"window_id":0,"alt_pressed":false,"shift_pressed":false,"ctrl_pressed":false,"meta_pressed":false,"pressed":false,"keycode":0,"physical_keycode":76,"key_label":0,"unicode":108,"echo":false,"script":null)
|
||||
"events": [Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":-1,"window_id":0,"alt_pressed":false,"shift_pressed":false,"ctrl_pressed":false,"meta_pressed":false,"pressed":false,"keycode":0,"physical_keycode":76,"key_label":0,"unicode":108,"location":0,"echo":false,"script":null)
|
||||
]
|
||||
}
|
||||
|
||||
|
|
BIN
rcedit-x64.exe
BIN
rcedit-x64.exe
Binary file not shown.
1
shader/wobble.gdshader.uid
Normal file
1
shader/wobble.gdshader.uid
Normal file
|
@ -0,0 +1 @@
|
|||
uid://ddgp8n4l7veuh
|
14098
the_button_theme.tres
Normal file
14098
the_button_theme.tres
Normal file
File diff suppressed because one or more lines are too long
1
ui_scenes/VolumeBar.gd.uid
Normal file
1
ui_scenes/VolumeBar.gd.uid
Normal file
|
@ -0,0 +1 @@
|
|||
uid://br4vs3bp516du
|
1
ui_scenes/microphoneSelect/mic_select_button.gd.uid
Normal file
1
ui_scenes/microphoneSelect/mic_select_button.gd.uid
Normal file
|
@ -0,0 +1 @@
|
|||
uid://baaqyc5a1mdvc
|
File diff suppressed because one or more lines are too long
1
ui_scenes/mouse/mouse_cursor.gd.uid
Normal file
1
ui_scenes/mouse/mouse_cursor.gd.uid
Normal file
|
@ -0,0 +1 @@
|
|||
uid://ef8sxkkpmdso
|
|
@ -1,6 +1,6 @@
|
|||
[gd_scene load_steps=6 format=3 uid="uid://fxku5nddarp8"]
|
||||
|
||||
[ext_resource type="Script" path="res://ui_scenes/mouse/mouse_cursor.gd" id="1_t6obd"]
|
||||
[ext_resource type="Script" uid="uid://ef8sxkkpmdso" path="res://ui_scenes/mouse/mouse_cursor.gd" id="1_t6obd"]
|
||||
[ext_resource type="Texture2D" uid="uid://23rqddatjku3" path="res://ui_scenes/mouse/tooltipBox.png" id="2_qcn8h"]
|
||||
[ext_resource type="FontFile" uid="uid://ukj8gv8ucqsg" path="res://font/goober_pixel.ttf" id="3_v627m"]
|
||||
|
||||
|
|
1
ui_scenes/pushUpdates/push_updates.gd.uid
Normal file
1
ui_scenes/pushUpdates/push_updates.gd.uid
Normal file
|
@ -0,0 +1 @@
|
|||
uid://wjd0ycw7q2jb
|
|
@ -1,6 +1,6 @@
|
|||
[gd_scene load_steps=2 format=3 uid="uid://cgto2hfjsb1oe"]
|
||||
|
||||
[ext_resource type="Script" path="res://ui_scenes/pushUpdates/push_updates.gd" id="1_6h2o8"]
|
||||
[ext_resource type="Script" uid="uid://wjd0ycw7q2jb" path="res://ui_scenes/pushUpdates/push_updates.gd" id="1_6h2o8"]
|
||||
|
||||
[node name="PushUpdates" type="Node2D"]
|
||||
script = ExtResource("1_6h2o8")
|
||||
|
|
1
ui_scenes/selectedSprite/outline.gdshader.uid
Normal file
1
ui_scenes/selectedSprite/outline.gdshader.uid
Normal file
|
@ -0,0 +1 @@
|
|||
uid://cuynh55it7o0u
|
|
@ -1,6 +1,6 @@
|
|||
[gd_scene load_steps=6 format=3 uid="uid://brka0vhju0bi3"]
|
||||
|
||||
[ext_resource type="Shader" path="res://ui_scenes/selectedSprite/outline.gdshader" id="1_5obyk"]
|
||||
[ext_resource type="Shader" uid="uid://cuynh55it7o0u" path="res://ui_scenes/selectedSprite/outline.gdshader" id="1_5obyk"]
|
||||
[ext_resource type="Texture2D" uid="uid://c4ie3egchfcg0" path="res://ui_scenes/selectedSprite/shader.png" id="2_7nkk4"]
|
||||
|
||||
[sub_resource type="Gradient" id="Gradient_dhq1b"]
|
||||
|
@ -14,9 +14,9 @@ width = 128
|
|||
[sub_resource type="ShaderMaterial" id="ShaderMaterial_td48g"]
|
||||
shader = ExtResource("1_5obyk")
|
||||
shader_parameter/speed = 0.0
|
||||
shader_parameter/palette_speed = 1.3
|
||||
shader_parameter/backImg = ExtResource("2_7nkk4")
|
||||
shader_parameter/palette = SubResource("GradientTexture1D_ly2o5")
|
||||
shader_parameter/palette_speed = 1.3
|
||||
|
||||
[node name="Line2D" type="Line2D"]
|
||||
z_index = 2096
|
||||
|
|
1
ui_scenes/selectedSprite/spriteObject.gd.uid
Normal file
1
ui_scenes/selectedSprite/spriteObject.gd.uid
Normal file
|
@ -0,0 +1 @@
|
|||
uid://h25kftbauouf
|
|
@ -1,6 +1,6 @@
|
|||
[gd_scene load_steps=3 format=3 uid="uid://b4v5uvwp3q4dh"]
|
||||
|
||||
[ext_resource type="Script" path="res://ui_scenes/selectedSprite/spriteObject.gd" id="1_r8clt"]
|
||||
[ext_resource type="Script" uid="uid://h25kftbauouf" path="res://ui_scenes/selectedSprite/spriteObject.gd" id="1_r8clt"]
|
||||
[ext_resource type="Texture2D" uid="uid://b0qvkbedini2y" path="res://ui_scenes/selectedSprite/origin.png" id="4_i4lmg"]
|
||||
|
||||
[node name="Sprite" type="Node2D" groups=["saved"]]
|
||||
|
|
1
ui_scenes/settings/settings_menu.gd.uid
Normal file
1
ui_scenes/settings/settings_menu.gd.uid
Normal file
|
@ -0,0 +1 @@
|
|||
uid://cvh6o0ak05heu
|
File diff suppressed because one or more lines are too long
1
ui_scenes/spriteEditMenu/chain.gd.uid
Normal file
1
ui_scenes/spriteEditMenu/chain.gd.uid
Normal file
|
@ -0,0 +1 @@
|
|||
uid://d2y73ts07yg0d
|
1
ui_scenes/spriteEditMenu/chain.gdshader.uid
Normal file
1
ui_scenes/spriteEditMenu/chain.gdshader.uid
Normal file
|
@ -0,0 +1 @@
|
|||
uid://1r5wbo6vrgxf
|
|
@ -1,7 +1,7 @@
|
|||
[gd_scene load_steps=8 format=3 uid="uid://6ah4i0nx1tu6"]
|
||||
|
||||
[ext_resource type="Script" path="res://ui_scenes/spriteEditMenu/chain.gd" id="1_66udn"]
|
||||
[ext_resource type="Shader" path="res://ui_scenes/spriteEditMenu/chain.gdshader" id="2_58fpx"]
|
||||
[ext_resource type="Script" uid="uid://d2y73ts07yg0d" path="res://ui_scenes/spriteEditMenu/chain.gd" id="1_66udn"]
|
||||
[ext_resource type="Shader" uid="uid://1r5wbo6vrgxf" path="res://ui_scenes/spriteEditMenu/chain.gdshader" id="2_58fpx"]
|
||||
[ext_resource type="Texture2D" uid="uid://7antbeiop3my" path="res://ui_scenes/spriteEditMenu/buh.png" id="3_rsife"]
|
||||
[ext_resource type="Texture2D" uid="uid://cc5kaiuc8ikpx" path="res://ui_scenes/spriteEditMenu/plug.png" id="4_gywbm"]
|
||||
|
||||
|
@ -14,9 +14,9 @@ gradient = SubResource("Gradient_bmcbo")
|
|||
|
||||
[sub_resource type="ShaderMaterial" id="ShaderMaterial_12eg4"]
|
||||
shader = ExtResource("2_58fpx")
|
||||
shader_parameter/speed = null
|
||||
shader_parameter/palette_speed = 1.0
|
||||
shader_parameter/speed = 0.0
|
||||
shader_parameter/palette = SubResource("GradientTexture1D_vomwt")
|
||||
shader_parameter/palette_speed = 1.0
|
||||
|
||||
[node name="Chain" type="Node2D"]
|
||||
script = ExtResource("1_66udn")
|
||||
|
|
1
ui_scenes/spriteEditMenu/sprite_viewer.gd.uid
Normal file
1
ui_scenes/spriteEditMenu/sprite_viewer.gd.uid
Normal file
|
@ -0,0 +1 @@
|
|||
uid://bc3bt733nxp3v
|
1
ui_scenes/spriteEditMenu/sprite_viewer.gdshader.uid
Normal file
1
ui_scenes/spriteEditMenu/sprite_viewer.gdshader.uid
Normal file
|
@ -0,0 +1 @@
|
|||
uid://de66pv0sqwdla
|
File diff suppressed because one or more lines are too long
1
ui_scenes/spriteList/sprite_list_object.gd.uid
Normal file
1
ui_scenes/spriteList/sprite_list_object.gd.uid
Normal file
|
@ -0,0 +1 @@
|
|||
uid://g2hbcww035j8
|
File diff suppressed because one or more lines are too long
1
ui_scenes/spriteList/viewer.gd.uid
Normal file
1
ui_scenes/spriteList/viewer.gd.uid
Normal file
|
@ -0,0 +1 @@
|
|||
uid://dw3gyu3sjfh8t
|
File diff suppressed because one or more lines are too long
1
ui_scenes/volume/Sensitive.gd.uid
Normal file
1
ui_scenes/volume/Sensitive.gd.uid
Normal file
|
@ -0,0 +1 @@
|
|||
uid://dxyjv07x6d6ws
|
1
ui_scenes/volume/sensitiveSlider.gd.uid
Normal file
1
ui_scenes/volume/sensitiveSlider.gd.uid
Normal file
|
@ -0,0 +1 @@
|
|||
uid://420sxl4b2usk
|
1
ui_scenes/volume/volumeSlider.gd.uid
Normal file
1
ui_scenes/volume/volumeSlider.gd.uid
Normal file
|
@ -0,0 +1 @@
|
|||
uid://w3p2qn4p3odx
|
Loading…
Add table
Add a link
Reference in a new issue