blob: 56b77f13231936d9bf4cb8ed5556a40ef07bf0d3 (
plain)
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
|
[gd_scene load_steps=4 format=2]
[ext_resource path="res://textures/newspaper.png" type="Texture" id=1]
[ext_resource path="res://scenes/story/newspaper.gd" type="Script" id=2]
[ext_resource path="res://components/button.tscn" type="PackedScene" id=3]
[node name="Node2D" type="Node2D"]
script = ExtResource( 2 )
[node name="newspaper" type="Sprite" parent="."]
scale = Vector2( 0.729248, 0.729248 )
texture = ExtResource( 1 )
[node name="Node2D" type="Node2D" parent="newspaper"]
scale = Vector2( 2, 2 )
[node name="RichTextLabel" type="RichTextLabel" parent="newspaper/Node2D"]
margin_left = -174.0
margin_top = -169.0
margin_right = 189.0
margin_bottom = -134.0
text = "LOCAL LUNATIC ARRESTED"
__meta__ = {
"_edit_use_anchors_": false
}
[node name="RichTextLabel" type="RichTextLabel" parent="newspaper"]
margin_left = -305.0
margin_top = -220.0
margin_right = 329.0
margin_bottom = 86.0
bbcode_text = "Local lunatic and pizza-connoisseur Tom has been arrested by City Police forces this Monday at around 6 P.M. after a journalist who wishes to remain anonymous has brought forward harassment charges.
The Journalist claims Tom followed her home after work, because she didn't want to publish his \"amazing investigation\"."
text = "Local lunatic and pizza-connoisseur Tom has been arrested by City Police forces this Monday at around 6 P.M. after a journalist who wishes to remain anonymous has brought forward harassment charges.
The Journalist claims Tom followed her home after work, because she didn't want to publish his \"amazing investigation\"."
__meta__ = {
"_edit_use_anchors_": false
}
[node name="RichTextLabel2" type="RichTextLabel" parent="newspaper"]
margin_left = -306.0
margin_top = 114.0
margin_right = 369.0
margin_bottom = 370.0
bbcode_enabled = true
bbcode_text = "In other News:
Marcus' beloved Pizza Palace now closed indefintely for \"renovations.\"
City council confirms citizens have \"not to worry\" about giant floating eyes in the sky."
text = "In other News:
Marcus' beloved Pizza Palace now closed indefintely for \"renovations.\"
City council confirms citizens have \"not to worry\" about giant floating eyes in the sky."
__meta__ = {
"_edit_use_anchors_": false
}
[node name="Button" parent="newspaper" instance=ExtResource( 3 )]
position = Vector2( 2.06922, 371.448 )
text = "Back to Menu"
[connection signal="on_click" from="newspaper/Button" to="." method="_on_Button_on_click"]
|