-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest.tscn
66 lines (52 loc) · 2.3 KB
/
test.tscn
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
[gd_scene load_steps=7 format=3 uid="uid://be2boapsrlwbu"]
[ext_resource type="Script" path="res://test.gd" id="1_e5tok"]
[ext_resource type="PackedScene" uid="uid://dp3e0qs2y2ex5" path="res://src/components/file_system.tscn" id="1_fs11v"]
[ext_resource type="PackedScene" uid="uid://caa8hyoisho7m" path="res://src/components/file_aside.tscn" id="2_ikjm5"]
[ext_resource type="PackedScene" uid="uid://dv8fo5r33wyc" path="res://src/components/markdown_editor.tscn" id="2_oyicy"]
[ext_resource type="PackedScene" uid="uid://fhrx5fhi5epg" path="res://src/components/markdown_aside.tscn" id="3_ufg7a"]
[sub_resource type="GDScript" id="GDScript_n5b7k"]
resource_name = "AAA"
script/source = "extends Node
# Called when the node enters the scene tree for the first time.
func _ready() -> void:
print(MarkdownLexer.pretty_print(MarkdownLexer.tokenize(\"# aa*aa*aa \\n# aa~~a~~\")))
"
[node name="mod" type="Control"]
layout_mode = 3
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
script = ExtResource("1_e5tok")
[node name="FileDialog" type="FileDialog" parent="."]
title = "Open a Directory"
ok_button_text = "Select Current Folder"
file_mode = 2
access = 2
use_native_dialog = true
[node name="HSplitContainer" type="HSplitContainer" parent="."]
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
[node name="ShelfManager" parent="HSplitContainer" node_paths=PackedStringArray("file_dialog") instance=ExtResource("1_fs11v")]
layout_mode = 2
file_dialog = NodePath("../../FileDialog")
[node name="HSplitContainer" type="HSplitContainer" parent="HSplitContainer"]
layout_mode = 2
size_flags_horizontal = 3
size_flags_vertical = 3
[node name="VSplitContainer" type="VSplitContainer" parent="HSplitContainer/HSplitContainer"]
custom_minimum_size = Vector2(150, 0)
layout_mode = 2
[node name="FileTab" parent="HSplitContainer/HSplitContainer/VSplitContainer" instance=ExtResource("2_ikjm5")]
layout_mode = 2
[node name="HeaderTab" parent="HSplitContainer/HSplitContainer/VSplitContainer" instance=ExtResource("3_ufg7a")]
layout_mode = 2
[node name="MarkdownEditor" parent="HSplitContainer/HSplitContainer" instance=ExtResource("2_oyicy")]
layout_mode = 2
[node name="Node" type="Node" parent="."]
script = SubResource("GDScript_n5b7k")