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
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
|
Shader "Unlit/TaSTT"
{
Properties
{
_MainTex ("Texture", 2D) = "white" {}
// software "engineering" LULW
_Letter_Row00_Col00("_Letter_Row00_Col00", int) = 64
_Letter_Row00_Col01("_Letter_Row00_Col01", int) = 64
_Letter_Row00_Col02("_Letter_Row00_Col02", int) = 64
_Letter_Row00_Col03("_Letter_Row00_Col03", int) = 64
_Letter_Row00_Col04("_Letter_Row00_Col04", int) = 64
_Letter_Row00_Col05("_Letter_Row00_Col05", int) = 64
_Letter_Row00_Col06("_Letter_Row00_Col06", int) = 64
_Letter_Row00_Col07("_Letter_Row00_Col07", int) = 64
_Letter_Row00_Col08("_Letter_Row00_Col08", int) = 64
_Letter_Row00_Col09("_Letter_Row00_Col09", int) = 64
_Letter_Row00_Col10("_Letter_Row00_Col10", int) = 64
_Letter_Row00_Col11("_Letter_Row00_Col11", int) = 64
_Letter_Row00_Col12("_Letter_Row00_Col12", int) = 64
_Letter_Row00_Col13("_Letter_Row00_Col13", int) = 64
_Letter_Row00_Col14("_Letter_Row00_Col14", int) = 64
_Letter_Row00_Col15("_Letter_Row00_Col15", int) = 64
_Letter_Row00_Col16("_Letter_Row00_Col16", int) = 64
_Letter_Row00_Col17("_Letter_Row00_Col17", int) = 64
_Letter_Row00_Col18("_Letter_Row00_Col18", int) = 64
_Letter_Row00_Col19("_Letter_Row00_Col19", int) = 64
_Letter_Row00_Col20("_Letter_Row00_Col20", int) = 64
_Letter_Row00_Col21("_Letter_Row00_Col21", int) = 64
_Letter_Row01_Col00("_Letter_Row01_Col00", int) = 64
_Letter_Row01_Col01("_Letter_Row01_Col01", int) = 64
_Letter_Row01_Col02("_Letter_Row01_Col02", int) = 64
_Letter_Row01_Col03("_Letter_Row01_Col03", int) = 64
_Letter_Row01_Col04("_Letter_Row01_Col04", int) = 64
_Letter_Row01_Col05("_Letter_Row01_Col05", int) = 64
_Letter_Row01_Col06("_Letter_Row01_Col06", int) = 64
_Letter_Row01_Col07("_Letter_Row01_Col07", int) = 64
_Letter_Row01_Col08("_Letter_Row01_Col08", int) = 64
_Letter_Row01_Col09("_Letter_Row01_Col09", int) = 64
_Letter_Row01_Col10("_Letter_Row01_Col10", int) = 64
_Letter_Row01_Col11("_Letter_Row01_Col11", int) = 64
_Letter_Row01_Col12("_Letter_Row01_Col12", int) = 64
_Letter_Row01_Col13("_Letter_Row01_Col13", int) = 64
_Letter_Row01_Col14("_Letter_Row01_Col14", int) = 64
_Letter_Row01_Col15("_Letter_Row01_Col15", int) = 64
_Letter_Row01_Col16("_Letter_Row01_Col16", int) = 64
_Letter_Row01_Col17("_Letter_Row01_Col17", int) = 64
_Letter_Row01_Col18("_Letter_Row01_Col18", int) = 64
_Letter_Row01_Col19("_Letter_Row01_Col19", int) = 64
_Letter_Row01_Col20("_Letter_Row01_Col20", int) = 64
_Letter_Row01_Col21("_Letter_Row01_Col21", int) = 64
_Letter_Row02_Col00("_Letter_Row02_Col00", int) = 64
_Letter_Row02_Col01("_Letter_Row02_Col01", int) = 64
_Letter_Row02_Col02("_Letter_Row02_Col02", int) = 64
_Letter_Row02_Col03("_Letter_Row02_Col03", int) = 64
_Letter_Row02_Col04("_Letter_Row02_Col04", int) = 64
_Letter_Row02_Col05("_Letter_Row02_Col05", int) = 64
_Letter_Row02_Col06("_Letter_Row02_Col06", int) = 64
_Letter_Row02_Col07("_Letter_Row02_Col07", int) = 64
_Letter_Row02_Col08("_Letter_Row02_Col08", int) = 64
_Letter_Row02_Col09("_Letter_Row02_Col09", int) = 64
_Letter_Row02_Col10("_Letter_Row02_Col10", int) = 64
_Letter_Row02_Col11("_Letter_Row02_Col11", int) = 64
_Letter_Row02_Col12("_Letter_Row02_Col12", int) = 64
_Letter_Row02_Col13("_Letter_Row02_Col13", int) = 64
_Letter_Row02_Col14("_Letter_Row02_Col14", int) = 64
_Letter_Row02_Col15("_Letter_Row02_Col15", int) = 64
_Letter_Row02_Col16("_Letter_Row02_Col16", int) = 64
_Letter_Row02_Col17("_Letter_Row02_Col17", int) = 64
_Letter_Row02_Col18("_Letter_Row02_Col18", int) = 64
_Letter_Row02_Col19("_Letter_Row02_Col19", int) = 64
_Letter_Row02_Col20("_Letter_Row02_Col20", int) = 64
_Letter_Row02_Col21("_Letter_Row02_Col21", int) = 64
_Letter_Row03_Col00("_Letter_Row03_Col00", int) = 64
_Letter_Row03_Col01("_Letter_Row03_Col01", int) = 64
_Letter_Row03_Col02("_Letter_Row03_Col02", int) = 64
_Letter_Row03_Col03("_Letter_Row03_Col03", int) = 64
_Letter_Row03_Col04("_Letter_Row03_Col04", int) = 64
_Letter_Row03_Col05("_Letter_Row03_Col05", int) = 64
_Letter_Row03_Col06("_Letter_Row03_Col06", int) = 64
_Letter_Row03_Col07("_Letter_Row03_Col07", int) = 64
_Letter_Row03_Col08("_Letter_Row03_Col08", int) = 64
_Letter_Row03_Col09("_Letter_Row03_Col09", int) = 64
_Letter_Row03_Col10("_Letter_Row03_Col10", int) = 64
_Letter_Row03_Col11("_Letter_Row03_Col11", int) = 64
_Letter_Row03_Col12("_Letter_Row03_Col12", int) = 64
_Letter_Row03_Col13("_Letter_Row03_Col13", int) = 64
_Letter_Row03_Col14("_Letter_Row03_Col14", int) = 64
_Letter_Row03_Col15("_Letter_Row03_Col15", int) = 64
_Letter_Row03_Col16("_Letter_Row03_Col16", int) = 64
_Letter_Row03_Col17("_Letter_Row03_Col17", int) = 64
_Letter_Row03_Col18("_Letter_Row03_Col18", int) = 64
_Letter_Row03_Col19("_Letter_Row03_Col19", int) = 64
_Letter_Row03_Col20("_Letter_Row03_Col20", int) = 64
_Letter_Row03_Col21("_Letter_Row03_Col21", int) = 64
_Letter_Row04_Col00("_Letter_Row04_Col00", int) = 64
_Letter_Row04_Col01("_Letter_Row04_Col01", int) = 64
_Letter_Row04_Col02("_Letter_Row04_Col02", int) = 64
_Letter_Row04_Col03("_Letter_Row04_Col03", int) = 64
_Letter_Row04_Col04("_Letter_Row04_Col04", int) = 64
_Letter_Row04_Col05("_Letter_Row04_Col05", int) = 64
_Letter_Row04_Col06("_Letter_Row04_Col06", int) = 64
_Letter_Row04_Col07("_Letter_Row04_Col07", int) = 64
_Letter_Row04_Col08("_Letter_Row04_Col08", int) = 64
_Letter_Row04_Col09("_Letter_Row04_Col09", int) = 64
_Letter_Row04_Col10("_Letter_Row04_Col10", int) = 64
_Letter_Row04_Col11("_Letter_Row04_Col11", int) = 64
_Letter_Row04_Col12("_Letter_Row04_Col12", int) = 64
_Letter_Row04_Col13("_Letter_Row04_Col13", int) = 64
_Letter_Row04_Col14("_Letter_Row04_Col14", int) = 64
_Letter_Row04_Col15("_Letter_Row04_Col15", int) = 64
_Letter_Row04_Col16("_Letter_Row04_Col16", int) = 64
_Letter_Row04_Col17("_Letter_Row04_Col17", int) = 64
_Letter_Row04_Col18("_Letter_Row04_Col18", int) = 64
_Letter_Row04_Col19("_Letter_Row04_Col19", int) = 64
_Letter_Row04_Col20("_Letter_Row04_Col20", int) = 64
_Letter_Row04_Col21("_Letter_Row04_Col21", int) = 64
_Letter_Row05_Col00("_Letter_Row05_Col00", int) = 64
_Letter_Row05_Col01("_Letter_Row05_Col01", int) = 64
_Letter_Row05_Col02("_Letter_Row05_Col02", int) = 64
_Letter_Row05_Col03("_Letter_Row05_Col03", int) = 64
_Letter_Row05_Col04("_Letter_Row05_Col04", int) = 64
_Letter_Row05_Col05("_Letter_Row05_Col05", int) = 64
_Letter_Row05_Col06("_Letter_Row05_Col06", int) = 64
_Letter_Row05_Col07("_Letter_Row05_Col07", int) = 64
_Letter_Row05_Col08("_Letter_Row05_Col08", int) = 64
_Letter_Row05_Col09("_Letter_Row05_Col09", int) = 64
_Letter_Row05_Col10("_Letter_Row05_Col10", int) = 64
_Letter_Row05_Col11("_Letter_Row05_Col11", int) = 64
_Letter_Row05_Col12("_Letter_Row05_Col12", int) = 64
_Letter_Row05_Col13("_Letter_Row05_Col13", int) = 64
_Letter_Row05_Col14("_Letter_Row05_Col14", int) = 64
_Letter_Row05_Col15("_Letter_Row05_Col15", int) = 64
_Letter_Row05_Col16("_Letter_Row05_Col16", int) = 64
_Letter_Row05_Col17("_Letter_Row05_Col17", int) = 64
_Letter_Row05_Col18("_Letter_Row05_Col18", int) = 64
_Letter_Row05_Col19("_Letter_Row05_Col19", int) = 64
_Letter_Row05_Col20("_Letter_Row05_Col20", int) = 64
_Letter_Row05_Col21("_Letter_Row05_Col21", int) = 64
_Letter_Row06_Col00("_Letter_Row06_Col00", int) = 64
_Letter_Row06_Col01("_Letter_Row06_Col01", int) = 64
_Letter_Row06_Col02("_Letter_Row06_Col02", int) = 64
_Letter_Row06_Col03("_Letter_Row06_Col03", int) = 64
_Letter_Row06_Col04("_Letter_Row06_Col04", int) = 64
_Letter_Row06_Col05("_Letter_Row06_Col05", int) = 64
_Letter_Row06_Col06("_Letter_Row06_Col06", int) = 64
_Letter_Row06_Col07("_Letter_Row06_Col07", int) = 64
_Letter_Row06_Col08("_Letter_Row06_Col08", int) = 64
_Letter_Row06_Col09("_Letter_Row06_Col09", int) = 64
_Letter_Row06_Col10("_Letter_Row06_Col10", int) = 64
_Letter_Row06_Col11("_Letter_Row06_Col11", int) = 64
_Letter_Row06_Col12("_Letter_Row06_Col12", int) = 64
_Letter_Row06_Col13("_Letter_Row06_Col13", int) = 64
_Letter_Row06_Col14("_Letter_Row06_Col14", int) = 64
_Letter_Row06_Col15("_Letter_Row06_Col15", int) = 64
_Letter_Row06_Col16("_Letter_Row06_Col16", int) = 64
_Letter_Row06_Col17("_Letter_Row06_Col17", int) = 64
_Letter_Row06_Col18("_Letter_Row06_Col18", int) = 64
_Letter_Row06_Col19("_Letter_Row06_Col19", int) = 64
_Letter_Row06_Col20("_Letter_Row06_Col20", int) = 64
_Letter_Row06_Col21("_Letter_Row06_Col21", int) = 64
_Letter_Row07_Col00("_Letter_Row07_Col00", int) = 64
_Letter_Row07_Col01("_Letter_Row07_Col01", int) = 64
_Letter_Row07_Col02("_Letter_Row07_Col02", int) = 64
_Letter_Row07_Col03("_Letter_Row07_Col03", int) = 64
_Letter_Row07_Col04("_Letter_Row07_Col04", int) = 64
_Letter_Row07_Col05("_Letter_Row07_Col05", int) = 64
_Letter_Row07_Col06("_Letter_Row07_Col06", int) = 64
_Letter_Row07_Col07("_Letter_Row07_Col07", int) = 64
_Letter_Row07_Col08("_Letter_Row07_Col08", int) = 64
_Letter_Row07_Col09("_Letter_Row07_Col09", int) = 64
_Letter_Row07_Col10("_Letter_Row07_Col10", int) = 64
_Letter_Row07_Col11("_Letter_Row07_Col11", int) = 64
_Letter_Row07_Col12("_Letter_Row07_Col12", int) = 64
_Letter_Row07_Col13("_Letter_Row07_Col13", int) = 64
_Letter_Row07_Col14("_Letter_Row07_Col14", int) = 64
_Letter_Row07_Col15("_Letter_Row07_Col15", int) = 64
_Letter_Row07_Col16("_Letter_Row07_Col16", int) = 64
_Letter_Row07_Col17("_Letter_Row07_Col17", int) = 64
_Letter_Row07_Col18("_Letter_Row07_Col18", int) = 64
_Letter_Row07_Col19("_Letter_Row07_Col19", int) = 64
_Letter_Row07_Col20("_Letter_Row07_Col20", int) = 64
_Letter_Row07_Col21("_Letter_Row07_Col21", int) = 64
// This does nothing, it's just used by the 'Do Nothing' animation.
_Dummy("_Dummy", int) = 0
}
SubShader
{
Tags { "RenderType"="Opaque" "Queue"="AlphaTest"}
LOD 100
Pass
{
Blend SrcAlpha OneMinusSrcAlpha
CGPROGRAM
#pragma vertex vert
#pragma fragment frag
#include "UnityCG.cginc"
struct appdata
{
float4 vertex : POSITION;
float2 uv : TEXCOORD0;
float3 normal : NORMAL;
};
struct v2f
{
float2 uv : TEXCOORD0;
float4 vertex : SV_POSITION;
};
Texture2D _MainTex;
SamplerState sampler_linear_repeat;
float4 _MainTex_ST;
int _Letter_Row00_Col00;
int _Letter_Row00_Col01;
int _Letter_Row00_Col02;
int _Letter_Row00_Col03;
int _Letter_Row00_Col04;
int _Letter_Row00_Col05;
int _Letter_Row00_Col06;
int _Letter_Row00_Col07;
int _Letter_Row00_Col08;
int _Letter_Row00_Col09;
int _Letter_Row00_Col10;
int _Letter_Row00_Col11;
int _Letter_Row00_Col12;
int _Letter_Row00_Col13;
int _Letter_Row00_Col14;
int _Letter_Row00_Col15;
int _Letter_Row00_Col16;
int _Letter_Row00_Col17;
int _Letter_Row00_Col18;
int _Letter_Row00_Col19;
int _Letter_Row00_Col20;
int _Letter_Row00_Col21;
int _Letter_Row01_Col00;
int _Letter_Row01_Col01;
int _Letter_Row01_Col02;
int _Letter_Row01_Col03;
int _Letter_Row01_Col04;
int _Letter_Row01_Col05;
int _Letter_Row01_Col06;
int _Letter_Row01_Col07;
int _Letter_Row01_Col08;
int _Letter_Row01_Col09;
int _Letter_Row01_Col10;
int _Letter_Row01_Col11;
int _Letter_Row01_Col12;
int _Letter_Row01_Col13;
int _Letter_Row01_Col14;
int _Letter_Row01_Col15;
int _Letter_Row01_Col16;
int _Letter_Row01_Col17;
int _Letter_Row01_Col18;
int _Letter_Row01_Col19;
int _Letter_Row01_Col20;
int _Letter_Row01_Col21;
int _Letter_Row02_Col00;
int _Letter_Row02_Col01;
int _Letter_Row02_Col02;
int _Letter_Row02_Col03;
int _Letter_Row02_Col04;
int _Letter_Row02_Col05;
int _Letter_Row02_Col06;
int _Letter_Row02_Col07;
int _Letter_Row02_Col08;
int _Letter_Row02_Col09;
int _Letter_Row02_Col10;
int _Letter_Row02_Col11;
int _Letter_Row02_Col12;
int _Letter_Row02_Col13;
int _Letter_Row02_Col14;
int _Letter_Row02_Col15;
int _Letter_Row02_Col16;
int _Letter_Row02_Col17;
int _Letter_Row02_Col18;
int _Letter_Row02_Col19;
int _Letter_Row02_Col20;
int _Letter_Row02_Col21;
int _Letter_Row03_Col00;
int _Letter_Row03_Col01;
int _Letter_Row03_Col02;
int _Letter_Row03_Col03;
int _Letter_Row03_Col04;
int _Letter_Row03_Col05;
int _Letter_Row03_Col06;
int _Letter_Row03_Col07;
int _Letter_Row03_Col08;
int _Letter_Row03_Col09;
int _Letter_Row03_Col10;
int _Letter_Row03_Col11;
int _Letter_Row03_Col12;
int _Letter_Row03_Col13;
int _Letter_Row03_Col14;
int _Letter_Row03_Col15;
int _Letter_Row03_Col16;
int _Letter_Row03_Col17;
int _Letter_Row03_Col18;
int _Letter_Row03_Col19;
int _Letter_Row03_Col20;
int _Letter_Row03_Col21;
int _Letter_Row04_Col00;
int _Letter_Row04_Col01;
int _Letter_Row04_Col02;
int _Letter_Row04_Col03;
int _Letter_Row04_Col04;
int _Letter_Row04_Col05;
int _Letter_Row04_Col06;
int _Letter_Row04_Col07;
int _Letter_Row04_Col08;
int _Letter_Row04_Col09;
int _Letter_Row04_Col10;
int _Letter_Row04_Col11;
int _Letter_Row04_Col12;
int _Letter_Row04_Col13;
int _Letter_Row04_Col14;
int _Letter_Row04_Col15;
int _Letter_Row04_Col16;
int _Letter_Row04_Col17;
int _Letter_Row04_Col18;
int _Letter_Row04_Col19;
int _Letter_Row04_Col20;
int _Letter_Row04_Col21;
int _Letter_Row05_Col00;
int _Letter_Row05_Col01;
int _Letter_Row05_Col02;
int _Letter_Row05_Col03;
int _Letter_Row05_Col04;
int _Letter_Row05_Col05;
int _Letter_Row05_Col06;
int _Letter_Row05_Col07;
int _Letter_Row05_Col08;
int _Letter_Row05_Col09;
int _Letter_Row05_Col10;
int _Letter_Row05_Col11;
int _Letter_Row05_Col12;
int _Letter_Row05_Col13;
int _Letter_Row05_Col14;
int _Letter_Row05_Col15;
int _Letter_Row05_Col16;
int _Letter_Row05_Col17;
int _Letter_Row05_Col18;
int _Letter_Row05_Col19;
int _Letter_Row05_Col20;
int _Letter_Row05_Col21;
int _Letter_Row06_Col00;
int _Letter_Row06_Col01;
int _Letter_Row06_Col02;
int _Letter_Row06_Col03;
int _Letter_Row06_Col04;
int _Letter_Row06_Col05;
int _Letter_Row06_Col06;
int _Letter_Row06_Col07;
int _Letter_Row06_Col08;
int _Letter_Row06_Col09;
int _Letter_Row06_Col10;
int _Letter_Row06_Col11;
int _Letter_Row06_Col12;
int _Letter_Row06_Col13;
int _Letter_Row06_Col14;
int _Letter_Row06_Col15;
int _Letter_Row06_Col16;
int _Letter_Row06_Col17;
int _Letter_Row06_Col18;
int _Letter_Row06_Col19;
int _Letter_Row06_Col20;
int _Letter_Row06_Col21;
int _Letter_Row07_Col00;
int _Letter_Row07_Col01;
int _Letter_Row07_Col02;
int _Letter_Row07_Col03;
int _Letter_Row07_Col04;
int _Letter_Row07_Col05;
int _Letter_Row07_Col06;
int _Letter_Row07_Col07;
int _Letter_Row07_Col08;
int _Letter_Row07_Col09;
int _Letter_Row07_Col10;
int _Letter_Row07_Col11;
int _Letter_Row07_Col12;
int _Letter_Row07_Col13;
int _Letter_Row07_Col14;
int _Letter_Row07_Col15;
int _Letter_Row07_Col16;
int _Letter_Row07_Col17;
int _Letter_Row07_Col18;
int _Letter_Row07_Col19;
int _Letter_Row07_Col20;
int _Letter_Row07_Col21;
v2f vert (appdata v)
{
v2f o;
o.vertex = UnityObjectToClipPos(v.vertex);
o.uv = 1.0 - v.uv;
return o;
}
// Write the nth letter in the current cell and return the value of the
// pixel.
float2 GetLetter(v2f i, int nth_letter)
{
// UV spans from [0,1] to [0,1].
// 'U' is horizontal; cols.
// 'V' is vertical; rows.
//
// I want to divide the mesh into an m x n grid.
// I want to know what grid cell I'm in. This is simply u * m, v * n.
int CHAR_ROWS = 8;
int CHAR_COLS = 22;
// OK, I know what cell I'm in. Now I need to know how far across it I
// am. Produce a float in the range [0, CHAR_COLS).
float CHAR_FRAC_COL = i.uv.x * CHAR_COLS - floor(i.uv.x * CHAR_COLS);
float CHAR_FRAC_ROW = i.uv.y * CHAR_ROWS - floor(i.uv.y * CHAR_ROWS);
// This is the number of rows and columns in the actual texture.
float LETTER_COLS = 26.6;
float LETTER_ROWS = 11.4;
float LETTER_COL = fmod(nth_letter, floor(LETTER_COLS));
float LETTER_ROW = floor(LETTER_ROWS) - floor(nth_letter / floor(LETTER_COLS));
float LETTER_UV_ROW = (LETTER_ROW + CHAR_FRAC_ROW - 0.6) / LETTER_ROWS;
float LETTER_UV_COL = (LETTER_COL + CHAR_FRAC_COL) / LETTER_COLS;
float2 uv;
uv.x = LETTER_UV_COL;
uv.y = LETTER_UV_ROW;
return uv;
}
// Get the value of the parameter for the cell we're in.
int GetLetterParameter(v2f i)
{
float CHAR_ROWS = 8.0;
float CHAR_COLS = 22.0;
float CHAR_COL = floor(i.uv.x * CHAR_COLS);
float CHAR_ROW = floor(i.uv.y * CHAR_ROWS);
// ok now this is epic
if (CHAR_ROW == 7) {
if (CHAR_COL == 0) {
return _Letter_Row00_Col00;
} else if (CHAR_COL == 1) {
return _Letter_Row00_Col01;
} else if (CHAR_COL == 2) {
return _Letter_Row00_Col02;
} else if (CHAR_COL == 3) {
return _Letter_Row00_Col03;
} else if (CHAR_COL == 4) {
return _Letter_Row00_Col04;
} else if (CHAR_COL == 5) {
return _Letter_Row00_Col05;
} else if (CHAR_COL == 6) {
return _Letter_Row00_Col06;
} else if (CHAR_COL == 7) {
return _Letter_Row00_Col07;
} else if (CHAR_COL == 8) {
return _Letter_Row00_Col08;
} else if (CHAR_COL == 9) {
return _Letter_Row00_Col09;
} else if (CHAR_COL == 10) {
return _Letter_Row00_Col10;
} else if (CHAR_COL == 11) {
return _Letter_Row00_Col11;
} else if (CHAR_COL == 12) {
return _Letter_Row00_Col12;
} else if (CHAR_COL == 13) {
return _Letter_Row00_Col13;
} else if (CHAR_COL == 14) {
return _Letter_Row00_Col14;
} else if (CHAR_COL == 15) {
return _Letter_Row00_Col15;
} else if (CHAR_COL == 16) {
return _Letter_Row00_Col16;
} else if (CHAR_COL == 17) {
return _Letter_Row00_Col17;
} else if (CHAR_COL == 18) {
return _Letter_Row00_Col18;
} else if (CHAR_COL == 19) {
return _Letter_Row00_Col19;
} else if (CHAR_COL == 20) {
return _Letter_Row00_Col20;
} else if (CHAR_COL == 21) {
return _Letter_Row00_Col21;
}
} else if (CHAR_ROW == 6) {
if (CHAR_COL == 0) {
return _Letter_Row01_Col00;
} else if (CHAR_COL == 1) {
return _Letter_Row01_Col01;
} else if (CHAR_COL == 2) {
return _Letter_Row01_Col02;
} else if (CHAR_COL == 3) {
return _Letter_Row01_Col03;
} else if (CHAR_COL == 4) {
return _Letter_Row01_Col04;
} else if (CHAR_COL == 5) {
return _Letter_Row01_Col05;
} else if (CHAR_COL == 6) {
return _Letter_Row01_Col06;
} else if (CHAR_COL == 7) {
return _Letter_Row01_Col07;
} else if (CHAR_COL == 8) {
return _Letter_Row01_Col08;
} else if (CHAR_COL == 9) {
return _Letter_Row01_Col09;
} else if (CHAR_COL == 10) {
return _Letter_Row01_Col10;
} else if (CHAR_COL == 11) {
return _Letter_Row01_Col11;
} else if (CHAR_COL == 12) {
return _Letter_Row01_Col12;
} else if (CHAR_COL == 13) {
return _Letter_Row01_Col13;
} else if (CHAR_COL == 14) {
return _Letter_Row01_Col14;
} else if (CHAR_COL == 15) {
return _Letter_Row01_Col15;
} else if (CHAR_COL == 16) {
return _Letter_Row01_Col16;
} else if (CHAR_COL == 17) {
return _Letter_Row01_Col17;
} else if (CHAR_COL == 18) {
return _Letter_Row01_Col18;
} else if (CHAR_COL == 19) {
return _Letter_Row01_Col19;
} else if (CHAR_COL == 20) {
return _Letter_Row01_Col20;
} else if (CHAR_COL == 21) {
return _Letter_Row01_Col21;
}
} else if (CHAR_ROW == 5) {
if (CHAR_COL == 0) {
return _Letter_Row02_Col00;
} else if (CHAR_COL == 1) {
return _Letter_Row02_Col01;
} else if (CHAR_COL == 2) {
return _Letter_Row02_Col02;
} else if (CHAR_COL == 3) {
return _Letter_Row02_Col03;
} else if (CHAR_COL == 4) {
return _Letter_Row02_Col04;
} else if (CHAR_COL == 5) {
return _Letter_Row02_Col05;
} else if (CHAR_COL == 6) {
return _Letter_Row02_Col06;
} else if (CHAR_COL == 7) {
return _Letter_Row02_Col07;
} else if (CHAR_COL == 8) {
return _Letter_Row02_Col08;
} else if (CHAR_COL == 9) {
return _Letter_Row02_Col09;
} else if (CHAR_COL == 10) {
return _Letter_Row02_Col10;
} else if (CHAR_COL == 11) {
return _Letter_Row02_Col11;
} else if (CHAR_COL == 12) {
return _Letter_Row02_Col12;
} else if (CHAR_COL == 13) {
return _Letter_Row02_Col13;
} else if (CHAR_COL == 14) {
return _Letter_Row02_Col14;
} else if (CHAR_COL == 15) {
return _Letter_Row02_Col15;
} else if (CHAR_COL == 16) {
return _Letter_Row02_Col16;
} else if (CHAR_COL == 17) {
return _Letter_Row02_Col17;
} else if (CHAR_COL == 18) {
return _Letter_Row02_Col18;
} else if (CHAR_COL == 19) {
return _Letter_Row02_Col19;
} else if (CHAR_COL == 20) {
return _Letter_Row02_Col20;
} else if (CHAR_COL == 21) {
return _Letter_Row02_Col21;
}
} else if (CHAR_ROW == 4) {
if (CHAR_COL == 0) {
return _Letter_Row03_Col00;
} else if (CHAR_COL == 1) {
return _Letter_Row03_Col01;
} else if (CHAR_COL == 2) {
return _Letter_Row03_Col02;
} else if (CHAR_COL == 3) {
return _Letter_Row03_Col03;
} else if (CHAR_COL == 4) {
return _Letter_Row03_Col04;
} else if (CHAR_COL == 5) {
return _Letter_Row03_Col05;
} else if (CHAR_COL == 6) {
return _Letter_Row03_Col06;
} else if (CHAR_COL == 7) {
return _Letter_Row03_Col07;
} else if (CHAR_COL == 8) {
return _Letter_Row03_Col08;
} else if (CHAR_COL == 9) {
return _Letter_Row03_Col09;
} else if (CHAR_COL == 10) {
return _Letter_Row03_Col10;
} else if (CHAR_COL == 11) {
return _Letter_Row03_Col11;
} else if (CHAR_COL == 12) {
return _Letter_Row03_Col12;
} else if (CHAR_COL == 13) {
return _Letter_Row03_Col13;
} else if (CHAR_COL == 14) {
return _Letter_Row03_Col14;
} else if (CHAR_COL == 15) {
return _Letter_Row03_Col15;
} else if (CHAR_COL == 16) {
return _Letter_Row03_Col16;
} else if (CHAR_COL == 17) {
return _Letter_Row03_Col17;
} else if (CHAR_COL == 18) {
return _Letter_Row03_Col18;
} else if (CHAR_COL == 19) {
return _Letter_Row03_Col19;
} else if (CHAR_COL == 20) {
return _Letter_Row03_Col20;
} else if (CHAR_COL == 21) {
return _Letter_Row03_Col21;
}
} else if (CHAR_ROW == 3) {
if (CHAR_COL == 0) {
return _Letter_Row04_Col00;
} else if (CHAR_COL == 1) {
return _Letter_Row04_Col01;
} else if (CHAR_COL == 2) {
return _Letter_Row04_Col02;
} else if (CHAR_COL == 3) {
return _Letter_Row04_Col03;
} else if (CHAR_COL == 4) {
return _Letter_Row04_Col04;
} else if (CHAR_COL == 5) {
return _Letter_Row04_Col05;
} else if (CHAR_COL == 6) {
return _Letter_Row04_Col06;
} else if (CHAR_COL == 7) {
return _Letter_Row04_Col07;
} else if (CHAR_COL == 8) {
return _Letter_Row04_Col08;
} else if (CHAR_COL == 9) {
return _Letter_Row04_Col09;
} else if (CHAR_COL == 10) {
return _Letter_Row04_Col10;
} else if (CHAR_COL == 11) {
return _Letter_Row04_Col11;
} else if (CHAR_COL == 12) {
return _Letter_Row04_Col12;
} else if (CHAR_COL == 13) {
return _Letter_Row04_Col13;
} else if (CHAR_COL == 14) {
return _Letter_Row04_Col14;
} else if (CHAR_COL == 15) {
return _Letter_Row04_Col15;
} else if (CHAR_COL == 16) {
return _Letter_Row04_Col16;
} else if (CHAR_COL == 17) {
return _Letter_Row04_Col17;
} else if (CHAR_COL == 18) {
return _Letter_Row04_Col18;
} else if (CHAR_COL == 19) {
return _Letter_Row04_Col19;
} else if (CHAR_COL == 20) {
return _Letter_Row04_Col20;
} else if (CHAR_COL == 21) {
return _Letter_Row04_Col21;
}
} else if (CHAR_ROW == 2) {
if (CHAR_COL == 0) {
return _Letter_Row05_Col00;
} else if (CHAR_COL == 1) {
return _Letter_Row05_Col01;
} else if (CHAR_COL == 2) {
return _Letter_Row05_Col02;
} else if (CHAR_COL == 3) {
return _Letter_Row05_Col03;
} else if (CHAR_COL == 4) {
return _Letter_Row05_Col04;
} else if (CHAR_COL == 5) {
return _Letter_Row05_Col05;
} else if (CHAR_COL == 6) {
return _Letter_Row05_Col06;
} else if (CHAR_COL == 7) {
return _Letter_Row05_Col07;
} else if (CHAR_COL == 8) {
return _Letter_Row05_Col08;
} else if (CHAR_COL == 9) {
return _Letter_Row05_Col09;
} else if (CHAR_COL == 10) {
return _Letter_Row05_Col10;
} else if (CHAR_COL == 11) {
return _Letter_Row05_Col11;
} else if (CHAR_COL == 12) {
return _Letter_Row05_Col12;
} else if (CHAR_COL == 13) {
return _Letter_Row05_Col13;
} else if (CHAR_COL == 14) {
return _Letter_Row05_Col14;
} else if (CHAR_COL == 15) {
return _Letter_Row05_Col15;
} else if (CHAR_COL == 16) {
return _Letter_Row05_Col16;
} else if (CHAR_COL == 17) {
return _Letter_Row05_Col17;
} else if (CHAR_COL == 18) {
return _Letter_Row05_Col18;
} else if (CHAR_COL == 19) {
return _Letter_Row05_Col19;
} else if (CHAR_COL == 20) {
return _Letter_Row05_Col20;
} else if (CHAR_COL == 21) {
return _Letter_Row05_Col21;
}
} else if (CHAR_ROW == 1) {
if (CHAR_COL == 0) {
return _Letter_Row06_Col00;
} else if (CHAR_COL == 1) {
return _Letter_Row06_Col01;
} else if (CHAR_COL == 2) {
return _Letter_Row06_Col02;
} else if (CHAR_COL == 3) {
return _Letter_Row06_Col03;
} else if (CHAR_COL == 4) {
return _Letter_Row06_Col04;
} else if (CHAR_COL == 5) {
return _Letter_Row06_Col05;
} else if (CHAR_COL == 6) {
return _Letter_Row06_Col06;
} else if (CHAR_COL == 7) {
return _Letter_Row06_Col07;
} else if (CHAR_COL == 8) {
return _Letter_Row06_Col08;
} else if (CHAR_COL == 9) {
return _Letter_Row06_Col09;
} else if (CHAR_COL == 10) {
return _Letter_Row06_Col10;
} else if (CHAR_COL == 11) {
return _Letter_Row06_Col11;
} else if (CHAR_COL == 12) {
return _Letter_Row06_Col12;
} else if (CHAR_COL == 13) {
return _Letter_Row06_Col13;
} else if (CHAR_COL == 14) {
return _Letter_Row06_Col14;
} else if (CHAR_COL == 15) {
return _Letter_Row06_Col15;
} else if (CHAR_COL == 16) {
return _Letter_Row06_Col16;
} else if (CHAR_COL == 17) {
return _Letter_Row06_Col17;
} else if (CHAR_COL == 18) {
return _Letter_Row06_Col18;
} else if (CHAR_COL == 19) {
return _Letter_Row06_Col19;
} else if (CHAR_COL == 20) {
return _Letter_Row06_Col20;
} else if (CHAR_COL == 21) {
return _Letter_Row06_Col21;
}
} else if (CHAR_ROW == 0) {
if (CHAR_COL == 0) {
return _Letter_Row07_Col00;
} else if (CHAR_COL == 1) {
return _Letter_Row07_Col01;
} else if (CHAR_COL == 2) {
return _Letter_Row07_Col02;
} else if (CHAR_COL == 3) {
return _Letter_Row07_Col03;
} else if (CHAR_COL == 4) {
return _Letter_Row07_Col04;
} else if (CHAR_COL == 5) {
return _Letter_Row07_Col05;
} else if (CHAR_COL == 6) {
return _Letter_Row07_Col06;
} else if (CHAR_COL == 7) {
return _Letter_Row07_Col07;
} else if (CHAR_COL == 8) {
return _Letter_Row07_Col08;
} else if (CHAR_COL == 9) {
return _Letter_Row07_Col09;
} else if (CHAR_COL == 10) {
return _Letter_Row07_Col10;
} else if (CHAR_COL == 11) {
return _Letter_Row07_Col11;
} else if (CHAR_COL == 12) {
return _Letter_Row07_Col12;
} else if (CHAR_COL == 13) {
return _Letter_Row07_Col13;
} else if (CHAR_COL == 14) {
return _Letter_Row07_Col14;
} else if (CHAR_COL == 15) {
return _Letter_Row07_Col15;
} else if (CHAR_COL == 16) {
return _Letter_Row07_Col16;
} else if (CHAR_COL == 17) {
return _Letter_Row07_Col17;
} else if (CHAR_COL == 18) {
return _Letter_Row07_Col18;
} else if (CHAR_COL == 19) {
return _Letter_Row07_Col19;
} else if (CHAR_COL == 20) {
return _Letter_Row07_Col20;
} else if (CHAR_COL == 21) {
return _Letter_Row07_Col21;
}
}
return 0;
}
fixed4 frag (v2f i) : SV_Target
{
int letter = GetLetterParameter(i);
float2 uv = GetLetter(i, letter);
fixed4 ret = _MainTex.Sample(sampler_linear_repeat, uv);
return ret;
}
ENDCG
}
}
}
|