move standalone projects into own directory

This commit is contained in:
2023-04-27 11:39:41 -06:00
parent 5d593e22b0
commit acda704057
369 changed files with 1170 additions and 5 deletions

View File

@@ -0,0 +1,14 @@
[gd_scene format=2]
[node name="About" type="AcceptDialog"]
margin_right = 83.0
margin_bottom = 58.0
window_title = "About Haxe support"
dialog_text = "This plugin adds support for the Haxe programming language.
Haxe support is in alpha.
Discuss usage at: https://github.com/HaxeGodot/godot/discussions
Report bugs about the editor plugin at: https://github.com/HaxeGodot/editor-plugin/issues/
Report bugs about the code support at: https://github.com/HaxeGodot/godot/issues/
"

View File

@@ -0,0 +1,47 @@
[gd_scene load_steps=3 format=2]
[ext_resource path="res://addons/haxe/scripts/building.gd" type="Script" id=1]
[sub_resource type="StyleBoxFlat" id=1]
bg_color = Color( 0.219608, 0.211765, 0.227451, 1 )
border_width_left = 3
border_width_top = 3
border_width_right = 3
border_width_bottom = 3
border_color = Color( 0.270588, 0.270588, 0.270588, 1 )
corner_radius_top_left = 4
[node name="Control" type="Control"]
anchor_left = 0.5
anchor_top = 0.5
anchor_right = 0.5
anchor_bottom = 0.5
margin_left = -152.0
margin_top = -38.5
margin_right = 152.0
margin_bottom = 38.5
script = ExtResource( 1 )
[node name="Background" type="Panel" parent="."]
anchor_right = 1.0
anchor_bottom = 1.0
custom_styles/panel = SubResource( 1 )
[node name="Label" type="Label" parent="."]
anchor_right = 1.0
margin_bottom = 26.0
text = "Building Haxe project..."
align = 1
valign = 1
autowrap = true
clip_text = true
[node name="ProgressBar" type="ProgressBar" parent="."]
anchor_top = 0.5
anchor_right = 1.0
anchor_bottom = 0.5
margin_left = 11.0
margin_top = -6.5
margin_right = -11.0
margin_bottom = 7.5
max_value = 1.0

View File

@@ -0,0 +1,130 @@
[gd_scene load_steps=2 format=2]
[ext_resource path="res://addons/haxe/scripts/new_script.gd" type="Script" id=1]
[node name="NewScript" type="WindowDialog"]
margin_right = 350.0
margin_bottom = 270.0
size_flags_horizontal = 3
size_flags_vertical = 3
window_title = "Attach Node Haxe Script"
script = ExtResource( 1 )
__meta__ = {
"_edit_use_anchors_": false
}
[node name="MarginContainer" type="MarginContainer" parent="."]
anchor_right = 1.0
anchor_bottom = 1.0
margin_left = 10.0
margin_top = 10.0
margin_right = -10.0
margin_bottom = -10.0
__meta__ = {
"_edit_use_anchors_": false
}
[node name="VBoxContainer" type="VBoxContainer" parent="MarginContainer"]
margin_right = 330.0
margin_bottom = 250.0
__meta__ = {
"_edit_use_anchors_": false
}
[node name="GridContainer" type="GridContainer" parent="MarginContainer/VBoxContainer"]
margin_right = 330.0
margin_bottom = 52.0
columns = 2
__meta__ = {
"_edit_use_anchors_": false
}
[node name="ClassLabel" type="Label" parent="MarginContainer/VBoxContainer/GridContainer"]
margin_top = 5.0
margin_right = 54.0
margin_bottom = 19.0
text = "Inherits:"
[node name="ClassValue" type="LineEdit" parent="MarginContainer/VBoxContainer/GridContainer"]
margin_left = 58.0
margin_right = 330.0
margin_bottom = 24.0
size_flags_horizontal = 3
text = "VBoxContainer"
[node name="PathLabel" type="Label" parent="MarginContainer/VBoxContainer/GridContainer"]
margin_top = 33.0
margin_right = 54.0
margin_bottom = 47.0
text = "Path:"
__meta__ = {
"_edit_use_anchors_": false
}
[node name="Path" type="HBoxContainer" parent="MarginContainer/VBoxContainer/GridContainer"]
margin_left = 58.0
margin_top = 28.0
margin_right = 330.0
margin_bottom = 52.0
[node name="PathValue" type="LineEdit" parent="MarginContainer/VBoxContainer/GridContainer/Path"]
margin_right = 256.0
margin_bottom = 24.0
size_flags_horizontal = 3
text = "res://scripts/VBoxContainer.hx"
[node name="Load" type="Button" parent="MarginContainer/VBoxContainer/GridContainer/Path"]
margin_left = 260.0
margin_right = 272.0
margin_bottom = 24.0
[node name="PaddingTop" type="Control" parent="MarginContainer/VBoxContainer"]
margin_top = 56.0
margin_right = 330.0
margin_bottom = 66.0
rect_min_size = Vector2( 0, 10 )
[node name="TextEdit" type="RichTextLabel" parent="MarginContainer/VBoxContainer"]
margin_top = 70.0
margin_right = 330.0
margin_bottom = 212.0
rect_min_size = Vector2( 0, 110 )
size_flags_vertical = 3
bbcode_enabled = true
scroll_active = false
[node name="PaddingBottom" type="Control" parent="MarginContainer/VBoxContainer"]
margin_top = 216.0
margin_right = 330.0
margin_bottom = 226.0
rect_min_size = Vector2( 0, 10 )
[node name="Buttons" type="HBoxContainer" parent="MarginContainer/VBoxContainer"]
margin_top = 230.0
margin_right = 330.0
margin_bottom = 250.0
alignment = 1
__meta__ = {
"_edit_use_anchors_": false
}
[node name="Left" type="Button" parent="MarginContainer/VBoxContainer/Buttons"]
margin_left = 92.0
margin_right = 146.0
margin_bottom = 20.0
text = "Cancel"
[node name="Padding" type="Control" parent="MarginContainer/VBoxContainer/Buttons"]
margin_left = 150.0
margin_right = 180.0
margin_bottom = 20.0
rect_min_size = Vector2( 30, 0 )
__meta__ = {
"_edit_use_anchors_": false
}
[node name="Right" type="Button" parent="MarginContainer/VBoxContainer/Buttons"]
margin_left = 184.0
margin_right = 237.0
margin_bottom = 20.0
text = "Create"

View File

@@ -0,0 +1,35 @@
[gd_scene load_steps=2 format=2]
[ext_resource path="res://addons/haxe/scripts/tab.gd" type="Script" id=1]
[node name="Tab" type="Control"]
margin_right = 40.0
margin_bottom = 40.0
rect_min_size = Vector2( 0, 200 )
script = ExtResource( 1 )
__meta__ = {
"_edit_use_anchors_": false
}
[node name="VBoxContainer" type="VBoxContainer" parent="."]
anchor_right = 1.0
anchor_bottom = 1.0
rect_min_size = Vector2( 0, 200 )
__meta__ = {
"_edit_use_anchors_": false
}
[node name="Button" type="Button" parent="VBoxContainer"]
margin_right = 130.0
margin_bottom = 20.0
size_flags_horizontal = 0
text = "Build Haxe Project"
[node name="TextLog" type="TextEdit" parent="VBoxContainer"]
margin_top = 24.0
margin_right = 130.0
margin_bottom = 200.0
size_flags_horizontal = 3
size_flags_vertical = 3
readonly = true
context_menu_enabled = false