-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathclock.tscn
More file actions
23 lines (18 loc) · 709 Bytes
/
Copy pathclock.tscn
File metadata and controls
23 lines (18 loc) · 709 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
[gd_scene load_steps=5 format=2]
[ext_resource path="res://clock.gd" type="Script" id=1]
[ext_resource path="res://hourhand.png" type="Texture" id=2]
[ext_resource path="res://minutehand.png" type="Texture" id=3]
[ext_resource path="res://clockface.png" type="Texture" id=4]
[node name="clock" type="Node2D"]
script = ExtResource( 1 )
[node name="clockface" type="Sprite" parent="."]
position = Vector2( 79, 79 )
texture = ExtResource( 4 )
[node name="hourhand" type="Sprite" parent="."]
position = Vector2( 79, 79 )
texture = ExtResource( 2 )
offset = Vector2( 0, -27 )
[node name="minutehand" type="Sprite" parent="."]
position = Vector2( 79, 79 )
texture = ExtResource( 3 )
offset = Vector2( 0, -33 )