-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
342f729
commit de37486
Showing
12 changed files
with
551 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
extends WindowDialog | ||
|
||
onready var hbox = $HBox | ||
|
||
func _popup(instrument_name, settings, editor): | ||
window_title = "Edit %s" % instrument_name | ||
popup() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,36 @@ | ||
[gd_scene format=2] | ||
[gd_scene load_steps=2 format=2] | ||
|
||
[ext_resource path="res://Editor/Scenes/Dialogues/TrackEditor/TrackEditor.gd" type="Script" id=1] | ||
|
||
[node name="TrackEditor" type="WindowDialog"] | ||
margin_right = 48.0 | ||
margin_bottom = 40.0 | ||
rect_min_size = Vector2( 876, 480 ) | ||
window_title = "Track Editor" | ||
script = ExtResource( 1 ) | ||
|
||
[node name="HBox" type="HBoxContainer" parent="."] | ||
margin_right = 40.0 | ||
margin_bottom = 40.0 | ||
|
||
[node name="Control" type="Control" parent="HBox"] | ||
margin_right = 40.0 | ||
margin_bottom = 40.0 | ||
|
||
[node name="VBox" type="VBoxContainer" parent="HBox"] | ||
margin_right = 40.0 | ||
margin_bottom = 40.0 | ||
|
||
[node name="HBox" type="HBoxContainer" parent="HBox/VBox"] | ||
margin_right = 40.0 | ||
margin_bottom = 40.0 | ||
|
||
[node name="HBoxContainer" type="HBoxContainer" parent="."] | ||
anchor_right = 1.0 | ||
anchor_bottom = 1.0 | ||
[node name="NoteNameScrol" type="ScrollContainer" parent="HBox/VBox/HBox"] | ||
margin_right = 40.0 | ||
margin_bottom = 40.0 | ||
|
||
[node name="NotesScrol" type="ScrollContainer" parent="HBox/VBox/HBox"] | ||
margin_right = 40.0 | ||
margin_bottom = 40.0 | ||
|
||
[connection signal="popup_hide" from="." to="." method="_unpopup"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
[remap] | ||
|
||
importer="texture" | ||
type="StreamTexture" | ||
path="res://.import/Paint_Active.svg-9463c9e117517180ef1a7d67647eeec1.stex" | ||
metadata={ | ||
"vram_texture": false | ||
} | ||
|
||
[deps] | ||
|
||
source_file="res://Themes/Default/ButtonIcons/Paint_Active.svg" | ||
dest_files=[ "res://.import/Paint_Active.svg-9463c9e117517180ef1a7d67647eeec1.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 | ||
stream=false | ||
size_limit=0 | ||
detect_3d=true | ||
svg/scale=1.0 |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
[remap] | ||
|
||
importer="texture" | ||
type="StreamTexture" | ||
path="res://.import/Paint_Inactive.svg-db9fef898e648bb4726192124a33c375.stex" | ||
metadata={ | ||
"vram_texture": false | ||
} | ||
|
||
[deps] | ||
|
||
source_file="res://Themes/Default/ButtonIcons/Paint_Inactive.svg" | ||
dest_files=[ "res://.import/Paint_Inactive.svg-db9fef898e648bb4726192124a33c375.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 | ||
stream=false | ||
size_limit=0 | ||
detect_3d=true | ||
svg/scale=1.0 |
Oops, something went wrong.