sokoban
Diffstat (limited to 'console.tscn')
| -rw-r--r-- | console.tscn | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/console.tscn b/console.tscn new file mode 100644 index 0000000..51e6502 --- /dev/null +++ b/console.tscn @@ -0,0 +1,29 @@ +[gd_scene load_steps=4 format=2] + +[ext_resource path="res://theme.tres" type="Theme" id=1] +[ext_resource path="res://console.gd" type="Script" id=2] +[ext_resource path="res://smallfont.tres" type="DynamicFont" id=3] + +[node name="console" type="CanvasLayer"] +pause_mode = 2 +layer = 3 +script = ExtResource( 2 ) + +[node name="Label" type="Label" parent="."] +anchor_top = 1.0 +anchor_right = 1.0 +anchor_bottom = 1.0 +margin_left = 8.0 +margin_top = -24.0 +margin_right = -8.0 +margin_bottom = -14.0 +theme = ExtResource( 1 ) +custom_fonts/font = ExtResource( 3 ) +valign = 1 +autowrap = true +percent_visible = 0.0 +__meta__ = { +"_edit_use_anchors_": false +} + +[node name="Tween" type="Tween" parent="."] |