extends Node var _message_queue = [] var _font var _container var _ordered_labels = [] func _ready(): _container = VBoxContainer.new() _container.set_name("Container") _container.anchor_bottom = 1 _container.margin_left = 20.0 _container.margin_right = 1920.0 _container.margin_top = 0.0 _container.margin_bottom = -20.0 _container.alignment = BoxContainer.ALIGN_END _container.mouse_filter = Control.MOUSE_FILTER_IGNORE self.add_child(_container) _font = DynamicFont.new() _font.font_data = load("res://fonts/Lingo.ttf") _font.size = 36 _font.outline_color = Color(0, 0, 0, 1) _font.outline_size = 2 func _add_message(text): var new_label = RichTextLabel.new() new_label.push_font(_font) new_label.append_bbcode(text) new_label.fit_content_height = true _container.add_child(new_label) _ordered_labels.push_back(new_label) func showMessage(text): if _ordered_labels.size() >= 9: _message_queue.append(text) return _add_message(text) if _ordered_labels.size() > 1: return var timeout = 10.0 while !_ordered_labels.empty(): yield(get_tree().create_timer(timeout), "timeout") var to_remove = _ordered_labels.pop_front() var to_tween = get_tree().create_tween().bind_node(to_remove) to_tween.tween_property(to_remove, "modulate:a", 0.0, 0.5) to_tween.tween_callback(to_remove, "queue_free") if !_message_queue.empty(): var next_msg = _message_queue.pop_front() _add_message(next_msg) if timeout > 4: timeout -= 3 ='/cartcollect/log/libs/cocos2d/Support/CGPointExtension.m?h=v0.4.10'>log tree commit diff stats
path: root/libs/cocos2d/Support/CGPointExtension.m
blob: b06859db835cb64c1e0ce8b9d03dbbfc56788866 (plain) (blame)
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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196