-
Notifications
You must be signed in to change notification settings - Fork 213
/
Copy pathsprites.vehicle.ts
110 lines (110 loc) · 4.8 KB
/
sprites.vehicle.ts
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
namespace sprites.vehicle {
//% fixedInstance jres blockIdentity=images._image
//% tags="transportation"
export const carRedLeft = image.ofBuffer(hex``);
//% fixedInstance jres blockIdentity=images._image
//% tags="transportation"
export const carRedRight = image.ofBuffer(hex``);
//% fixedInstance jres blockIdentity=images._image
//% tags="transportation"
export const carRedBack = image.ofBuffer(hex``);
//% fixedInstance jres blockIdentity=images._image
//% tags="transportation"
export const carRedFront = image.ofBuffer(hex``);
//% fixedInstance jres blockIdentity=images._image
//% tags="transportation"
export const carBlueLeft = image.ofBuffer(hex``);
//% fixedInstance jres blockIdentity=images._image
//% tags="transportation"
export const carBlueRight = image.ofBuffer(hex``);
//% fixedInstance jres blockIdentity=images._image
//% tags="transportation"
export const carBlueBack = image.ofBuffer(hex``);
//% fixedInstance jres blockIdentity=images._image
//% tags="transportation"
export const carBlueFront = image.ofBuffer(hex``);
//% fixedInstance jres blockIdentity=images._image
//% tags="transportation"
export const carPinkLeft = image.ofBuffer(hex``);
//% fixedInstance jres blockIdentity=images._image
//% tags="transportation"
export const carPinkRight = image.ofBuffer(hex``);
//% fixedInstance jres blockIdentity=images._image
//% tags="transportation"
export const carPinkBack = image.ofBuffer(hex``);
//% fixedInstance jres blockIdentity=images._image
//% tags="transportation"
export const carPinkFront = image.ofBuffer(hex``);
//% fixedInstance jres blockIdentity=images._image
//% tags="transportation"
export const car20 = image.ofBuffer(hex``);
//% fixedInstance jres blockIdentity=images._image
//% tags="transportation"
export const car21 = image.ofBuffer(hex``);
//% fixedInstance jres blockIdentity=images._image
//% tags="transportation"
export const car22 = image.ofBuffer(hex``);
//% fixedInstance jres blockIdentity=images._image
//% tags="transportation"
export const car23 = image.ofBuffer(hex``);
//% fixedInstance jres blockIdentity=images._image
//% tags="transportation"
export const car30 = image.ofBuffer(hex``);
//% fixedInstance jres blockIdentity=images._image
//% tags="transportation"
export const car31 = image.ofBuffer(hex``);
//% fixedInstance jres blockIdentity=images._image
//% tags="transportation"
export const car32 = image.ofBuffer(hex``);
//% fixedInstance jres blockIdentity=images._image
//% tags="transportation"
export const car33 = image.ofBuffer(hex``);
//% fixedInstance jres blockIdentity=images._image
//% tags="transportation"
export const plane0 = image.ofBuffer(hex``);
//% fixedInstance jres blockIdentity=images._image
//% tags="transportation"
export const plane1 = image.ofBuffer(hex``);
//% fixedInstance jres blockIdentity=images._image
//% tags="transportation"
export const plane2 = image.ofBuffer(hex``);
//% fixedInstance jres blockIdentity=images._image
//% tags="transportation"
export const plane3 = image.ofBuffer(hex``);
//% fixedInstance jres blockIdentity=images._image
//% tags="transportation"
export const plane4 = image.ofBuffer(hex``);
//% fixedInstance jres blockIdentity=images._image
//% tags="transportation"
export const plane5 = image.ofBuffer(hex``);
//% fixedInstance jres blockIdentity=images._tile
//% tags="tile misc"
export const roadTurn1 = image.ofBuffer(hex``);
//% fixedInstance jres blockIdentity=images._tile
//% tags="tile misc"
export const roadTurn2 = image.ofBuffer(hex``);
//% fixedInstance jres blockIdentity=images._tile
//% tags="tile misc"
export const roadIntersection1 = image.ofBuffer(hex``);
//% fixedInstance jres blockIdentity=images._tile
//% tags="tile misc"
export const roadIntersection2 = image.ofBuffer(hex``);
//% fixedInstance jres blockIdentity=images._tile
//% tags="tile misc"
export const roadTurn3 = image.ofBuffer(hex``);
//% fixedInstance jres blockIdentity=images._tile
//% tags="tile misc"
export const roadTurn4 = image.ofBuffer(hex``);
//% fixedInstance jres blockIdentity=images._tile
//% tags="tile misc"
export const roadIntersection3 = image.ofBuffer(hex``);
//% fixedInstance jres blockIdentity=images._tile
//% tags="tile misc"
export const roadIntersection4 = image.ofBuffer(hex``);
//% fixedInstance jres blockIdentity=images._tile
//% tags="tile misc"
export const roadVertical = image.ofBuffer(hex``);
//% fixedInstance jres blockIdentity=images._tile
//% tags="tile misc"
export const roadHorizontal = image.ofBuffer(hex``);
}