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
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
|
Shader "Unlit/TaSTT"
{
Properties
{
_MainTex ("Texture", 2D) = "white" {}
// software "engineering" LULW
_Letter_Row00_Col00("_Letter_Row00_Col00", float) = 64
_Letter_Row00_Col01("_Letter_Row00_Col01", float) = 64
_Letter_Row00_Col02("_Letter_Row00_Col02", float) = 64
_Letter_Row00_Col03("_Letter_Row00_Col03", float) = 64
_Letter_Row00_Col04("_Letter_Row00_Col04", float) = 64
_Letter_Row00_Col05("_Letter_Row00_Col05", float) = 64
_Letter_Row00_Col06("_Letter_Row00_Col06", float) = 64
_Letter_Row00_Col07("_Letter_Row00_Col07", float) = 64
_Letter_Row00_Col08("_Letter_Row00_Col08", float) = 64
_Letter_Row00_Col09("_Letter_Row00_Col09", float) = 64
_Letter_Row00_Col10("_Letter_Row00_Col10", float) = 64
_Letter_Row00_Col11("_Letter_Row00_Col11", float) = 64
_Letter_Row00_Col12("_Letter_Row00_Col12", float) = 64
_Letter_Row00_Col13("_Letter_Row00_Col13", float) = 64
_Letter_Row00_Col14("_Letter_Row00_Col14", float) = 64
_Letter_Row00_Col15("_Letter_Row00_Col15", float) = 64
_Letter_Row00_Col16("_Letter_Row00_Col16", float) = 64
_Letter_Row00_Col17("_Letter_Row00_Col17", float) = 64
_Letter_Row00_Col18("_Letter_Row00_Col18", float) = 64
_Letter_Row00_Col19("_Letter_Row00_Col19", float) = 64
_Letter_Row00_Col20("_Letter_Row00_Col20", float) = 64
_Letter_Row00_Col21("_Letter_Row00_Col21", float) = 64
_Letter_Row00_Col22("_Letter_Row00_Col22", float) = 64
_Letter_Row00_Col23("_Letter_Row00_Col23", float) = 64
_Letter_Row00_Col24("_Letter_Row00_Col24", float) = 64
_Letter_Row00_Col25("_Letter_Row00_Col25", float) = 64
_Letter_Row00_Col26("_Letter_Row00_Col26", float) = 64
_Letter_Row00_Col27("_Letter_Row00_Col27", float) = 64
_Letter_Row00_Col28("_Letter_Row00_Col28", float) = 64
_Letter_Row00_Col29("_Letter_Row00_Col29", float) = 64
_Letter_Row00_Col30("_Letter_Row00_Col30", float) = 64
_Letter_Row00_Col31("_Letter_Row00_Col31", float) = 64
_Letter_Row00_Col32("_Letter_Row00_Col32", float) = 64
_Letter_Row00_Col33("_Letter_Row00_Col33", float) = 64
_Letter_Row00_Col34("_Letter_Row00_Col34", float) = 64
_Letter_Row00_Col35("_Letter_Row00_Col35", float) = 64
_Letter_Row00_Col36("_Letter_Row00_Col36", float) = 64
_Letter_Row00_Col37("_Letter_Row00_Col37", float) = 64
_Letter_Row00_Col38("_Letter_Row00_Col38", float) = 64
_Letter_Row00_Col39("_Letter_Row00_Col39", float) = 64
_Letter_Row00_Col40("_Letter_Row00_Col40", float) = 64
_Letter_Row00_Col41("_Letter_Row00_Col41", float) = 64
_Letter_Row00_Col42("_Letter_Row00_Col42", float) = 64
_Letter_Row00_Col43("_Letter_Row00_Col43", float) = 64
_Letter_Row01_Col00("_Letter_Row01_Col00", float) = 64
_Letter_Row01_Col01("_Letter_Row01_Col01", float) = 64
_Letter_Row01_Col02("_Letter_Row01_Col02", float) = 64
_Letter_Row01_Col03("_Letter_Row01_Col03", float) = 64
_Letter_Row01_Col04("_Letter_Row01_Col04", float) = 64
_Letter_Row01_Col05("_Letter_Row01_Col05", float) = 64
_Letter_Row01_Col06("_Letter_Row01_Col06", float) = 64
_Letter_Row01_Col07("_Letter_Row01_Col07", float) = 64
_Letter_Row01_Col08("_Letter_Row01_Col08", float) = 64
_Letter_Row01_Col09("_Letter_Row01_Col09", float) = 64
_Letter_Row01_Col10("_Letter_Row01_Col10", float) = 64
_Letter_Row01_Col11("_Letter_Row01_Col11", float) = 64
_Letter_Row01_Col12("_Letter_Row01_Col12", float) = 64
_Letter_Row01_Col13("_Letter_Row01_Col13", float) = 64
_Letter_Row01_Col14("_Letter_Row01_Col14", float) = 64
_Letter_Row01_Col15("_Letter_Row01_Col15", float) = 64
_Letter_Row01_Col16("_Letter_Row01_Col16", float) = 64
_Letter_Row01_Col17("_Letter_Row01_Col17", float) = 64
_Letter_Row01_Col18("_Letter_Row01_Col18", float) = 64
_Letter_Row01_Col19("_Letter_Row01_Col19", float) = 64
_Letter_Row01_Col20("_Letter_Row01_Col20", float) = 64
_Letter_Row01_Col21("_Letter_Row01_Col21", float) = 64
_Letter_Row01_Col22("_Letter_Row01_Col22", float) = 64
_Letter_Row01_Col23("_Letter_Row01_Col23", float) = 64
_Letter_Row01_Col24("_Letter_Row01_Col24", float) = 64
_Letter_Row01_Col25("_Letter_Row01_Col25", float) = 64
_Letter_Row01_Col26("_Letter_Row01_Col26", float) = 64
_Letter_Row01_Col27("_Letter_Row01_Col27", float) = 64
_Letter_Row01_Col28("_Letter_Row01_Col28", float) = 64
_Letter_Row01_Col29("_Letter_Row01_Col29", float) = 64
_Letter_Row01_Col30("_Letter_Row01_Col30", float) = 64
_Letter_Row01_Col31("_Letter_Row01_Col31", float) = 64
_Letter_Row01_Col32("_Letter_Row01_Col32", float) = 64
_Letter_Row01_Col33("_Letter_Row01_Col33", float) = 64
_Letter_Row01_Col34("_Letter_Row01_Col34", float) = 64
_Letter_Row01_Col35("_Letter_Row01_Col35", float) = 64
_Letter_Row01_Col36("_Letter_Row01_Col36", float) = 64
_Letter_Row01_Col37("_Letter_Row01_Col37", float) = 64
_Letter_Row01_Col38("_Letter_Row01_Col38", float) = 64
_Letter_Row01_Col39("_Letter_Row01_Col39", float) = 64
_Letter_Row01_Col40("_Letter_Row01_Col40", float) = 64
_Letter_Row01_Col41("_Letter_Row01_Col41", float) = 64
_Letter_Row01_Col42("_Letter_Row01_Col42", float) = 64
_Letter_Row01_Col43("_Letter_Row01_Col43", float) = 64
_Letter_Row02_Col00("_Letter_Row02_Col00", float) = 64
_Letter_Row02_Col01("_Letter_Row02_Col01", float) = 64
_Letter_Row02_Col02("_Letter_Row02_Col02", float) = 64
_Letter_Row02_Col03("_Letter_Row02_Col03", float) = 64
_Letter_Row02_Col04("_Letter_Row02_Col04", float) = 64
_Letter_Row02_Col05("_Letter_Row02_Col05", float) = 64
_Letter_Row02_Col06("_Letter_Row02_Col06", float) = 64
_Letter_Row02_Col07("_Letter_Row02_Col07", float) = 64
_Letter_Row02_Col08("_Letter_Row02_Col08", float) = 64
_Letter_Row02_Col09("_Letter_Row02_Col09", float) = 64
_Letter_Row02_Col10("_Letter_Row02_Col10", float) = 64
_Letter_Row02_Col11("_Letter_Row02_Col11", float) = 64
_Letter_Row02_Col12("_Letter_Row02_Col12", float) = 64
_Letter_Row02_Col13("_Letter_Row02_Col13", float) = 64
_Letter_Row02_Col14("_Letter_Row02_Col14", float) = 64
_Letter_Row02_Col15("_Letter_Row02_Col15", float) = 64
_Letter_Row02_Col16("_Letter_Row02_Col16", float) = 64
_Letter_Row02_Col17("_Letter_Row02_Col17", float) = 64
_Letter_Row02_Col18("_Letter_Row02_Col18", float) = 64
_Letter_Row02_Col19("_Letter_Row02_Col19", float) = 64
_Letter_Row02_Col20("_Letter_Row02_Col20", float) = 64
_Letter_Row02_Col21("_Letter_Row02_Col21", float) = 64
_Letter_Row02_Col22("_Letter_Row02_Col22", float) = 64
_Letter_Row02_Col23("_Letter_Row02_Col23", float) = 64
_Letter_Row02_Col24("_Letter_Row02_Col24", float) = 64
_Letter_Row02_Col25("_Letter_Row02_Col25", float) = 64
_Letter_Row02_Col26("_Letter_Row02_Col26", float) = 64
_Letter_Row02_Col27("_Letter_Row02_Col27", float) = 64
_Letter_Row02_Col28("_Letter_Row02_Col28", float) = 64
_Letter_Row02_Col29("_Letter_Row02_Col29", float) = 64
_Letter_Row02_Col30("_Letter_Row02_Col30", float) = 64
_Letter_Row02_Col31("_Letter_Row02_Col31", float) = 64
_Letter_Row02_Col32("_Letter_Row02_Col32", float) = 64
_Letter_Row02_Col33("_Letter_Row02_Col33", float) = 64
_Letter_Row02_Col34("_Letter_Row02_Col34", float) = 64
_Letter_Row02_Col35("_Letter_Row02_Col35", float) = 64
_Letter_Row02_Col36("_Letter_Row02_Col36", float) = 64
_Letter_Row02_Col37("_Letter_Row02_Col37", float) = 64
_Letter_Row02_Col38("_Letter_Row02_Col38", float) = 64
_Letter_Row02_Col39("_Letter_Row02_Col39", float) = 64
_Letter_Row02_Col40("_Letter_Row02_Col40", float) = 64
_Letter_Row02_Col41("_Letter_Row02_Col41", float) = 64
_Letter_Row02_Col42("_Letter_Row02_Col42", float) = 64
_Letter_Row02_Col43("_Letter_Row02_Col43", float) = 64
_Letter_Row03_Col00("_Letter_Row03_Col00", float) = 64
_Letter_Row03_Col01("_Letter_Row03_Col01", float) = 64
_Letter_Row03_Col02("_Letter_Row03_Col02", float) = 64
_Letter_Row03_Col03("_Letter_Row03_Col03", float) = 64
_Letter_Row03_Col04("_Letter_Row03_Col04", float) = 64
_Letter_Row03_Col05("_Letter_Row03_Col05", float) = 64
_Letter_Row03_Col06("_Letter_Row03_Col06", float) = 64
_Letter_Row03_Col07("_Letter_Row03_Col07", float) = 64
_Letter_Row03_Col08("_Letter_Row03_Col08", float) = 64
_Letter_Row03_Col09("_Letter_Row03_Col09", float) = 64
_Letter_Row03_Col10("_Letter_Row03_Col10", float) = 64
_Letter_Row03_Col11("_Letter_Row03_Col11", float) = 64
_Letter_Row03_Col12("_Letter_Row03_Col12", float) = 64
_Letter_Row03_Col13("_Letter_Row03_Col13", float) = 64
_Letter_Row03_Col14("_Letter_Row03_Col14", float) = 64
_Letter_Row03_Col15("_Letter_Row03_Col15", float) = 64
_Letter_Row03_Col16("_Letter_Row03_Col16", float) = 64
_Letter_Row03_Col17("_Letter_Row03_Col17", float) = 64
_Letter_Row03_Col18("_Letter_Row03_Col18", float) = 64
_Letter_Row03_Col19("_Letter_Row03_Col19", float) = 64
_Letter_Row03_Col20("_Letter_Row03_Col20", float) = 64
_Letter_Row03_Col21("_Letter_Row03_Col21", float) = 64
_Letter_Row03_Col22("_Letter_Row03_Col22", float) = 64
_Letter_Row03_Col23("_Letter_Row03_Col23", float) = 64
_Letter_Row03_Col24("_Letter_Row03_Col24", float) = 64
_Letter_Row03_Col25("_Letter_Row03_Col25", float) = 64
_Letter_Row03_Col26("_Letter_Row03_Col26", float) = 64
_Letter_Row03_Col27("_Letter_Row03_Col27", float) = 64
_Letter_Row03_Col28("_Letter_Row03_Col28", float) = 64
_Letter_Row03_Col29("_Letter_Row03_Col29", float) = 64
_Letter_Row03_Col30("_Letter_Row03_Col30", float) = 64
_Letter_Row03_Col31("_Letter_Row03_Col31", float) = 64
_Letter_Row03_Col32("_Letter_Row03_Col32", float) = 64
_Letter_Row03_Col33("_Letter_Row03_Col33", float) = 64
_Letter_Row03_Col34("_Letter_Row03_Col34", float) = 64
_Letter_Row03_Col35("_Letter_Row03_Col35", float) = 64
_Letter_Row03_Col36("_Letter_Row03_Col36", float) = 64
_Letter_Row03_Col37("_Letter_Row03_Col37", float) = 64
_Letter_Row03_Col38("_Letter_Row03_Col38", float) = 64
_Letter_Row03_Col39("_Letter_Row03_Col39", float) = 64
_Letter_Row03_Col40("_Letter_Row03_Col40", float) = 64
_Letter_Row03_Col41("_Letter_Row03_Col41", float) = 64
_Letter_Row03_Col42("_Letter_Row03_Col42", float) = 64
_Letter_Row03_Col43("_Letter_Row03_Col43", float) = 64
}
SubShader
{
Tags { "RenderType"="Opaque" "Queue"="AlphaTest"}
LOD 100
Pass
{
Blend SrcAlpha OneMinusSrcAlpha
CGPROGRAM
#pragma vertex vert
#pragma fragment frag
#pragma multi_compile
#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;
float _Letter_Row00_Col00;
float _Letter_Row00_Col01;
float _Letter_Row00_Col02;
float _Letter_Row00_Col03;
float _Letter_Row00_Col04;
float _Letter_Row00_Col05;
float _Letter_Row00_Col06;
float _Letter_Row00_Col07;
float _Letter_Row00_Col08;
float _Letter_Row00_Col09;
float _Letter_Row00_Col10;
float _Letter_Row00_Col11;
float _Letter_Row00_Col12;
float _Letter_Row00_Col13;
float _Letter_Row00_Col14;
float _Letter_Row00_Col15;
float _Letter_Row00_Col16;
float _Letter_Row00_Col17;
float _Letter_Row00_Col18;
float _Letter_Row00_Col19;
float _Letter_Row00_Col20;
float _Letter_Row00_Col21;
float _Letter_Row00_Col22;
float _Letter_Row00_Col23;
float _Letter_Row00_Col24;
float _Letter_Row00_Col25;
float _Letter_Row00_Col26;
float _Letter_Row00_Col27;
float _Letter_Row00_Col28;
float _Letter_Row00_Col29;
float _Letter_Row00_Col30;
float _Letter_Row00_Col31;
float _Letter_Row00_Col32;
float _Letter_Row00_Col33;
float _Letter_Row00_Col34;
float _Letter_Row00_Col35;
float _Letter_Row00_Col36;
float _Letter_Row00_Col37;
float _Letter_Row00_Col38;
float _Letter_Row00_Col39;
float _Letter_Row00_Col40;
float _Letter_Row00_Col41;
float _Letter_Row00_Col42;
float _Letter_Row00_Col43;
float _Letter_Row01_Col00;
float _Letter_Row01_Col01;
float _Letter_Row01_Col02;
float _Letter_Row01_Col03;
float _Letter_Row01_Col04;
float _Letter_Row01_Col05;
float _Letter_Row01_Col06;
float _Letter_Row01_Col07;
float _Letter_Row01_Col08;
float _Letter_Row01_Col09;
float _Letter_Row01_Col10;
float _Letter_Row01_Col11;
float _Letter_Row01_Col12;
float _Letter_Row01_Col13;
float _Letter_Row01_Col14;
float _Letter_Row01_Col15;
float _Letter_Row01_Col16;
float _Letter_Row01_Col17;
float _Letter_Row01_Col18;
float _Letter_Row01_Col19;
float _Letter_Row01_Col20;
float _Letter_Row01_Col21;
float _Letter_Row01_Col22;
float _Letter_Row01_Col23;
float _Letter_Row01_Col24;
float _Letter_Row01_Col25;
float _Letter_Row01_Col26;
float _Letter_Row01_Col27;
float _Letter_Row01_Col28;
float _Letter_Row01_Col29;
float _Letter_Row01_Col30;
float _Letter_Row01_Col31;
float _Letter_Row01_Col32;
float _Letter_Row01_Col33;
float _Letter_Row01_Col34;
float _Letter_Row01_Col35;
float _Letter_Row01_Col36;
float _Letter_Row01_Col37;
float _Letter_Row01_Col38;
float _Letter_Row01_Col39;
float _Letter_Row01_Col40;
float _Letter_Row01_Col41;
float _Letter_Row01_Col42;
float _Letter_Row01_Col43;
float _Letter_Row02_Col00;
float _Letter_Row02_Col01;
float _Letter_Row02_Col02;
float _Letter_Row02_Col03;
float _Letter_Row02_Col04;
float _Letter_Row02_Col05;
float _Letter_Row02_Col06;
float _Letter_Row02_Col07;
float _Letter_Row02_Col08;
float _Letter_Row02_Col09;
float _Letter_Row02_Col10;
float _Letter_Row02_Col11;
float _Letter_Row02_Col12;
float _Letter_Row02_Col13;
float _Letter_Row02_Col14;
float _Letter_Row02_Col15;
float _Letter_Row02_Col16;
float _Letter_Row02_Col17;
float _Letter_Row02_Col18;
float _Letter_Row02_Col19;
float _Letter_Row02_Col20;
float _Letter_Row02_Col21;
float _Letter_Row02_Col22;
float _Letter_Row02_Col23;
float _Letter_Row02_Col24;
float _Letter_Row02_Col25;
float _Letter_Row02_Col26;
float _Letter_Row02_Col27;
float _Letter_Row02_Col28;
float _Letter_Row02_Col29;
float _Letter_Row02_Col30;
float _Letter_Row02_Col31;
float _Letter_Row02_Col32;
float _Letter_Row02_Col33;
float _Letter_Row02_Col34;
float _Letter_Row02_Col35;
float _Letter_Row02_Col36;
float _Letter_Row02_Col37;
float _Letter_Row02_Col38;
float _Letter_Row02_Col39;
float _Letter_Row02_Col40;
float _Letter_Row02_Col41;
float _Letter_Row02_Col42;
float _Letter_Row02_Col43;
float _Letter_Row03_Col00;
float _Letter_Row03_Col01;
float _Letter_Row03_Col02;
float _Letter_Row03_Col03;
float _Letter_Row03_Col04;
float _Letter_Row03_Col05;
float _Letter_Row03_Col06;
float _Letter_Row03_Col07;
float _Letter_Row03_Col08;
float _Letter_Row03_Col09;
float _Letter_Row03_Col10;
float _Letter_Row03_Col11;
float _Letter_Row03_Col12;
float _Letter_Row03_Col13;
float _Letter_Row03_Col14;
float _Letter_Row03_Col15;
float _Letter_Row03_Col16;
float _Letter_Row03_Col17;
float _Letter_Row03_Col18;
float _Letter_Row03_Col19;
float _Letter_Row03_Col20;
float _Letter_Row03_Col21;
float _Letter_Row03_Col22;
float _Letter_Row03_Col23;
float _Letter_Row03_Col24;
float _Letter_Row03_Col25;
float _Letter_Row03_Col26;
float _Letter_Row03_Col27;
float _Letter_Row03_Col28;
float _Letter_Row03_Col29;
float _Letter_Row03_Col30;
float _Letter_Row03_Col31;
float _Letter_Row03_Col32;
float _Letter_Row03_Col33;
float _Letter_Row03_Col34;
float _Letter_Row03_Col35;
float _Letter_Row03_Col36;
float _Letter_Row03_Col37;
float _Letter_Row03_Col38;
float _Letter_Row03_Col39;
float _Letter_Row03_Col40;
float _Letter_Row03_Col41;
float _Letter_Row03_Col42;
float _Letter_Row03_Col43;
v2f vert (appdata v)
{
v2f o;
o.vertex = UnityObjectToClipPos(v.vertex);
o.uv = 1.0 - v.uv;
return o;
}
float2 AddMarginToUV(float2 uv, float x_frac, float y_frac)
{
float2 lo = float2(-x_frac / 2, -y_frac / 2);
float2 hi = float2(1.0 + x_frac / 2, 1.0 + y_frac / 2);
return clamp(lerp(lo, hi, uv), 0.0, 1.0);
}
// Write the nth letter in the current cell and return the value of the
// pixel.
float2 GetLetter(float2 uv, 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 = 4;
int CHAR_COLS = 44;
// 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 = uv.x * CHAR_COLS - floor(uv.x * CHAR_COLS);
float CHAR_FRAC_ROW = uv.y * CHAR_ROWS - floor(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.7;
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.35) / LETTER_ROWS;
float LETTER_UV_COL = (LETTER_COL + CHAR_FRAC_COL) / LETTER_COLS;
float2 result;
result.x = LETTER_UV_COL;
result.y = LETTER_UV_ROW;
return result;
}
// Get the value of the parameter for the cell we're in.
float GetLetterParameter(float2 uv)
{
float CHAR_ROWS = 4.0;
float CHAR_COLS = 44.0;
float CHAR_COL = floor(uv.x * CHAR_COLS);
float CHAR_ROW = floor(uv.y * CHAR_ROWS);
[forcecase] switch (CHAR_ROW)
{
case 3:
[forcecase] switch (CHAR_COL) {
case 0:
return _Letter_Row00_Col00;
case 1:
return _Letter_Row00_Col01;
case 2:
return _Letter_Row00_Col02;
case 3:
return _Letter_Row00_Col03;
case 4:
return _Letter_Row00_Col04;
case 5:
return _Letter_Row00_Col05;
case 6:
return _Letter_Row00_Col06;
case 7:
return _Letter_Row00_Col07;
case 8:
return _Letter_Row00_Col08;
case 9:
return _Letter_Row00_Col09;
case 10:
return _Letter_Row00_Col10;
case 11:
return _Letter_Row00_Col11;
case 12:
return _Letter_Row00_Col12;
case 13:
return _Letter_Row00_Col13;
case 14:
return _Letter_Row00_Col14;
case 15:
return _Letter_Row00_Col15;
case 16:
return _Letter_Row00_Col16;
case 17:
return _Letter_Row00_Col17;
case 18:
return _Letter_Row00_Col18;
case 19:
return _Letter_Row00_Col19;
case 20:
return _Letter_Row00_Col20;
case 21:
return _Letter_Row00_Col21;
case 22:
return _Letter_Row00_Col22;
case 23:
return _Letter_Row00_Col23;
case 24:
return _Letter_Row00_Col24;
case 25:
return _Letter_Row00_Col25;
case 26:
return _Letter_Row00_Col26;
case 27:
return _Letter_Row00_Col27;
case 28:
return _Letter_Row00_Col28;
case 29:
return _Letter_Row00_Col29;
case 30:
return _Letter_Row00_Col30;
case 31:
return _Letter_Row00_Col31;
case 32:
return _Letter_Row00_Col32;
case 33:
return _Letter_Row00_Col33;
case 34:
return _Letter_Row00_Col34;
case 35:
return _Letter_Row00_Col35;
case 36:
return _Letter_Row00_Col36;
case 37:
return _Letter_Row00_Col37;
case 38:
return _Letter_Row00_Col38;
case 39:
return _Letter_Row00_Col39;
case 40:
return _Letter_Row00_Col40;
case 41:
return _Letter_Row00_Col41;
case 42:
return _Letter_Row00_Col42;
case 43:
return _Letter_Row00_Col43;
default:
return 0;
}
case 2:
[forcecase] switch (CHAR_COL) {
case 0:
return _Letter_Row01_Col00;
case 1:
return _Letter_Row01_Col01;
case 2:
return _Letter_Row01_Col02;
case 3:
return _Letter_Row01_Col03;
case 4:
return _Letter_Row01_Col04;
case 5:
return _Letter_Row01_Col05;
case 6:
return _Letter_Row01_Col06;
case 7:
return _Letter_Row01_Col07;
case 8:
return _Letter_Row01_Col08;
case 9:
return _Letter_Row01_Col09;
case 10:
return _Letter_Row01_Col10;
case 11:
return _Letter_Row01_Col11;
case 12:
return _Letter_Row01_Col12;
case 13:
return _Letter_Row01_Col13;
case 14:
return _Letter_Row01_Col14;
case 15:
return _Letter_Row01_Col15;
case 16:
return _Letter_Row01_Col16;
case 17:
return _Letter_Row01_Col17;
case 18:
return _Letter_Row01_Col18;
case 19:
return _Letter_Row01_Col19;
case 20:
return _Letter_Row01_Col20;
case 21:
return _Letter_Row01_Col21;
case 22:
return _Letter_Row01_Col22;
case 23:
return _Letter_Row01_Col23;
case 24:
return _Letter_Row01_Col24;
case 25:
return _Letter_Row01_Col25;
case 26:
return _Letter_Row01_Col26;
case 27:
return _Letter_Row01_Col27;
case 28:
return _Letter_Row01_Col28;
case 29:
return _Letter_Row01_Col29;
case 30:
return _Letter_Row01_Col30;
case 31:
return _Letter_Row01_Col31;
case 32:
return _Letter_Row01_Col32;
case 33:
return _Letter_Row01_Col33;
case 34:
return _Letter_Row01_Col34;
case 35:
return _Letter_Row01_Col35;
case 36:
return _Letter_Row01_Col36;
case 37:
return _Letter_Row01_Col37;
case 38:
return _Letter_Row01_Col38;
case 39:
return _Letter_Row01_Col39;
case 40:
return _Letter_Row01_Col40;
case 41:
return _Letter_Row01_Col41;
case 42:
return _Letter_Row01_Col42;
case 43:
return _Letter_Row01_Col43;
default:
return 0;
}
case 1:
[forcecase] switch (CHAR_COL) {
case 0:
return _Letter_Row02_Col00;
case 1:
return _Letter_Row02_Col01;
case 2:
return _Letter_Row02_Col02;
case 3:
return _Letter_Row02_Col03;
case 4:
return _Letter_Row02_Col04;
case 5:
return _Letter_Row02_Col05;
case 6:
return _Letter_Row02_Col06;
case 7:
return _Letter_Row02_Col07;
case 8:
return _Letter_Row02_Col08;
case 9:
return _Letter_Row02_Col09;
case 10:
return _Letter_Row02_Col10;
case 11:
return _Letter_Row02_Col11;
case 12:
return _Letter_Row02_Col12;
case 13:
return _Letter_Row02_Col13;
case 14:
return _Letter_Row02_Col14;
case 15:
return _Letter_Row02_Col15;
case 16:
return _Letter_Row02_Col16;
case 17:
return _Letter_Row02_Col17;
case 18:
return _Letter_Row02_Col18;
case 19:
return _Letter_Row02_Col19;
case 20:
return _Letter_Row02_Col20;
case 21:
return _Letter_Row02_Col21;
case 22:
return _Letter_Row02_Col22;
case 23:
return _Letter_Row02_Col23;
case 24:
return _Letter_Row02_Col24;
case 25:
return _Letter_Row02_Col25;
case 26:
return _Letter_Row02_Col26;
case 27:
return _Letter_Row02_Col27;
case 28:
return _Letter_Row02_Col28;
case 29:
return _Letter_Row02_Col29;
case 30:
return _Letter_Row02_Col30;
case 31:
return _Letter_Row02_Col31;
case 32:
return _Letter_Row02_Col32;
case 33:
return _Letter_Row02_Col33;
case 34:
return _Letter_Row02_Col34;
case 35:
return _Letter_Row02_Col35;
case 36:
return _Letter_Row02_Col36;
case 37:
return _Letter_Row02_Col37;
case 38:
return _Letter_Row02_Col38;
case 39:
return _Letter_Row02_Col39;
case 40:
return _Letter_Row02_Col40;
case 41:
return _Letter_Row02_Col41;
case 42:
return _Letter_Row02_Col42;
case 43:
return _Letter_Row02_Col43;
default:
return 0;
}
case 0:
[forcecase] switch (CHAR_COL) {
case 0:
return _Letter_Row03_Col00;
case 1:
return _Letter_Row03_Col01;
case 2:
return _Letter_Row03_Col02;
case 3:
return _Letter_Row03_Col03;
case 4:
return _Letter_Row03_Col04;
case 5:
return _Letter_Row03_Col05;
case 6:
return _Letter_Row03_Col06;
case 7:
return _Letter_Row03_Col07;
case 8:
return _Letter_Row03_Col08;
case 9:
return _Letter_Row03_Col09;
case 10:
return _Letter_Row03_Col10;
case 11:
return _Letter_Row03_Col11;
case 12:
return _Letter_Row03_Col12;
case 13:
return _Letter_Row03_Col13;
case 14:
return _Letter_Row03_Col14;
case 15:
return _Letter_Row03_Col15;
case 16:
return _Letter_Row03_Col16;
case 17:
return _Letter_Row03_Col17;
case 18:
return _Letter_Row03_Col18;
case 19:
return _Letter_Row03_Col19;
case 20:
return _Letter_Row03_Col20;
case 21:
return _Letter_Row03_Col21;
case 22:
return _Letter_Row03_Col22;
case 23:
return _Letter_Row03_Col23;
case 24:
return _Letter_Row03_Col24;
case 25:
return _Letter_Row03_Col25;
case 26:
return _Letter_Row03_Col26;
case 27:
return _Letter_Row03_Col27;
case 28:
return _Letter_Row03_Col28;
case 29:
return _Letter_Row03_Col29;
case 30:
return _Letter_Row03_Col30;
case 31:
return _Letter_Row03_Col31;
case 32:
return _Letter_Row03_Col32;
case 33:
return _Letter_Row03_Col33;
case 34:
return _Letter_Row03_Col34;
case 35:
return _Letter_Row03_Col35;
case 36:
return _Letter_Row03_Col36;
case 37:
return _Letter_Row03_Col37;
case 38:
return _Letter_Row03_Col38;
case 39:
return _Letter_Row03_Col39;
case 40:
return _Letter_Row03_Col40;
case 41:
return _Letter_Row03_Col41;
case 42:
return _Letter_Row03_Col42;
case 43:
return _Letter_Row03_Col43;
default:
return 0;
}
}
return 0;
}
fixed4 frag (v2f i) : SV_Target
{
float2 uv = i.uv;
// Derived from github.com/pema99/shader-knowledge (MIT license).
if (unity_CameraProjection[2][0] != 0.0 ||
unity_CameraProjection[2][1] != 0.0) {
uv.x = 1.0 - uv.x;
}
float uv_x_margin = 0.03;
float uv_y_margin = 0.06;
uv = AddMarginToUV(uv, uv_x_margin, uv_y_margin);
float letter = floor(GetLetterParameter(uv));
uv = GetLetter(uv, letter);
fixed4 ret = _MainTex.Sample(sampler_linear_repeat, uv);
return ret;
}
ENDCG
}
}
}
|