-
Notifications
You must be signed in to change notification settings - Fork 1
/
stars.tscn
43 lines (34 loc) · 1.18 KB
/
stars.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
[gd_scene load_steps=4 format=2]
[ext_resource path="res://assets/ui/star-outlint.png" type="Texture" id=1]
[ext_resource path="res://assets/ui/star-full.png" type="Texture" id=2]
[ext_resource path="res://scripts/stars.gd" type="Script" id=3]
[node name="stars" type="HBoxContainer"]
margin_left = 130.0
margin_right = 374.0
margin_bottom = 64.0
custom_constants/separation = 20
script = ExtResource( 3 )
[node name="placeholder" type="TextureRect" parent="."]
margin_right = 68.0
margin_bottom = 64.0
texture = ExtResource( 1 )
[node name="star" type="Sprite" parent="placeholder"]
position = Vector2( 34, 32 )
texture = ExtResource( 2 )
[node name="placeholder2" type="TextureRect" parent="."]
margin_left = 88.0
margin_right = 156.0
margin_bottom = 64.0
texture = ExtResource( 1 )
[node name="star" type="Sprite" parent="placeholder2"]
position = Vector2( 34, 32 )
texture = ExtResource( 2 )
[node name="placeholder3" type="TextureRect" parent="."]
margin_left = 176.0
margin_right = 244.0
margin_bottom = 64.0
texture = ExtResource( 1 )
[node name="star" type="Sprite" parent="placeholder3"]
position = Vector2( 34, 32 )
texture = ExtResource( 2 )
[node name="Tween" type="Tween" parent="."]