You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
114 lines
3.4 KiB
114 lines
3.4 KiB
[gd_scene load_steps=3 format=2]
|
|
|
|
[ext_resource path="res://Poisson.gd" type="Script" id=1]
|
|
[ext_resource path="res://Previsualisation.gd" type="Script" id=2]
|
|
|
|
[node name="Poisson" type="Control"]
|
|
anchor_right = 1.0
|
|
anchor_bottom = 1.0
|
|
script = ExtResource( 1 )
|
|
|
|
[node name="HBoxContainer" type="HBoxContainer" parent="."]
|
|
margin_right = 40.0
|
|
margin_bottom = 40.0
|
|
|
|
[node name="Properties" type="VBoxContainer" parent="HBoxContainer"]
|
|
margin_right = 121.0
|
|
margin_bottom = 152.0
|
|
|
|
[node name="width" type="HBoxContainer" parent="HBoxContainer/Properties"]
|
|
margin_right = 121.0
|
|
margin_bottom = 24.0
|
|
|
|
[node name="width_label" type="Label" parent="HBoxContainer/Properties/width"]
|
|
margin_top = 5.0
|
|
margin_right = 55.0
|
|
margin_bottom = 19.0
|
|
text = "Largeur :"
|
|
|
|
[node name="width_edit" type="LineEdit" parent="HBoxContainer/Properties/width"]
|
|
margin_left = 59.0
|
|
margin_right = 117.0
|
|
margin_bottom = 24.0
|
|
|
|
[node name="height" type="HBoxContainer" parent="HBoxContainer/Properties"]
|
|
margin_top = 28.0
|
|
margin_right = 121.0
|
|
margin_bottom = 52.0
|
|
|
|
[node name="height_label" type="Label" parent="HBoxContainer/Properties/height"]
|
|
margin_top = 5.0
|
|
margin_right = 59.0
|
|
margin_bottom = 19.0
|
|
text = "Hauteur :"
|
|
|
|
[node name="height_edit" type="LineEdit" parent="HBoxContainer/Properties/height"]
|
|
margin_left = 63.0
|
|
margin_right = 121.0
|
|
margin_bottom = 24.0
|
|
|
|
[node name="spacing" type="HBoxContainer" parent="HBoxContainer/Properties"]
|
|
margin_top = 56.0
|
|
margin_right = 121.0
|
|
margin_bottom = 80.0
|
|
|
|
[node name="spacing_label" type="Label" parent="HBoxContainer/Properties/spacing"]
|
|
margin_top = 5.0
|
|
margin_right = 58.0
|
|
margin_bottom = 19.0
|
|
text = "Densité :"
|
|
|
|
[node name="spacing_edit" type="LineEdit" parent="HBoxContainer/Properties/spacing"]
|
|
margin_left = 62.0
|
|
margin_right = 120.0
|
|
margin_bottom = 24.0
|
|
|
|
[node name="generate" type="Button" parent="HBoxContainer/Properties"]
|
|
margin_top = 84.0
|
|
margin_right = 121.0
|
|
margin_bottom = 104.0
|
|
text = "Générer"
|
|
|
|
[node name="open" type="Button" parent="HBoxContainer/Properties"]
|
|
margin_top = 108.0
|
|
margin_right = 121.0
|
|
margin_bottom = 128.0
|
|
text = "Ouvrir"
|
|
|
|
[node name="save" type="Button" parent="HBoxContainer/Properties"]
|
|
margin_top = 132.0
|
|
margin_right = 121.0
|
|
margin_bottom = 152.0
|
|
text = "Enregistrer"
|
|
|
|
[node name="ScrollContainer" type="ScrollContainer" parent="."]
|
|
margin_left = 125.0
|
|
margin_right = 653.0
|
|
margin_bottom = 502.0
|
|
|
|
[node name="Previsualisation" type="TextureRect" parent="ScrollContainer"]
|
|
script = ExtResource( 2 )
|
|
|
|
[node name="SaveFileDialog" type="FileDialog" parent="."]
|
|
margin_left = 83.0
|
|
margin_top = 133.0
|
|
margin_right = 649.0
|
|
margin_bottom = 505.0
|
|
window_title = "Enregistrer un fichier"
|
|
access = 2
|
|
|
|
[node name="OpenFileDialog" type="FileDialog" parent="."]
|
|
margin_left = 83.0
|
|
margin_top = 133.0
|
|
margin_right = 649.0
|
|
margin_bottom = 505.0
|
|
window_title = "Ouvrir un fichier"
|
|
mode = 0
|
|
access = 2
|
|
|
|
[connection signal="new_poisson" from="." to="ScrollContainer/Previsualisation" method="_on_Control_new_poisson"]
|
|
[connection signal="pressed" from="HBoxContainer/Properties/generate" to="." method="_on_Button_pressed"]
|
|
[connection signal="pressed" from="HBoxContainer/Properties/open" to="." method="_on_open_pressed"]
|
|
[connection signal="pressed" from="HBoxContainer/Properties/save" to="." method="_on_save_pressed"]
|
|
[connection signal="file_selected" from="SaveFileDialog" to="." method="_on_SaveFileDialog_file_selected"]
|
|
[connection signal="file_selected" from="OpenFileDialog" to="." method="_on_OpenFileDialog_file_selected"]
|
|
|