-
Notifications
You must be signed in to change notification settings - Fork 0
/
Licensing.html
974 lines (793 loc) · 42.7 KB
/
Licensing.html
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
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Licensing - V-Ray 2.0 for 3ds Max</title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0, maximum-scale=2.0, user-scalable=yes">
<script type="text/javascript" src="assets/js/jquery.min.js"></script>
<script type="text/javascript" src="assets/js/jquery.scrollTo.min.js"></script>
<script type="text/javascript" src="assets/js/scroll-tree.js"></script>
<script type="text/javascript" src="assets/js/theme.main.js"></script>
<link rel="stylesheet" href="assets/css/content-style.css">
<link rel="stylesheet" href="assets/css/search.css">
<link rel="stylesheet" href="assets/css/theme.main.css">
<link rel="stylesheet" href="assets/css/theme.colors.css">
<!-- ES5 support for older browsers, needed by lunr -->
<script src="js/augment.js"></script>
<script id="worker" type="javascript/worker">
startIndex = function() {
idx = lunr.Index.load(lunrIndex);
idx.pipeline.remove(lunr.stopWordFilter);
postMessage({type: "setup-complete"});
}
onmessage = function (event) {
var message = event.data;
if ((message.type === 'setup') && message.baseUrl) {
var url = message.baseUrl;
importScripts(url + 'js/lunr.js');
importScripts(url + 'js/lunr-extras.js');
importScripts(url + 'js/lunr-index.js');
importScripts(url + 'js/lunr-data.js');
startIndex();
}
if (idx && (message.type === 'search-request') && message.query) {
var searchWord = message.query;
var results = idx.search(searchWord).map(function (result) {
return lunrData.filter(function (d) {
return d.id === parseInt(result.ref, 10)
})[0]
});
postMessage({type: 'search-results', results: results, query: searchWord, queryId: message.queryId});
}
}
</script>
</head>
<body pageid="917507">
<div id="ht-loader">
<noscript>
<p style="width: 100%; text-align:center; position: absolute; margin-top: 200px;">This content cannot be displayed without JavaScript.<br>Please enable JavaScript and reload the page.</p>
</noscript>
</div>
<div>
<header id="ht-headerbar">
<div class="ht-headerbar-left">
<a href="" id="ht-menu-toggle" class="sp-aui-icon-small sp-aui-iconfont-appswitcher"></a>
</div>
<div class="ht-headerbar-right">
<div class="sp-aui-icon-small ht-search-index-loader ht-header-icon"></div>
<div id="ht-search">
<div class="ht-search-input" style="display: none;">
<a href="#" class="sp-aui-icon-small sp-aui-iconfont-remove ht-search-clear"></a>
<form action="#" method="GET" id="search">
<input class="search-input" type="text" placeholder="Search" tabindex="-1" autocomplete="off" name="q" value="">
<input type="hidden" name="max" value="15" />
<input type="submit" style="display:none" tabindex="-4"/>
</form>
<a href="#" id="ht-search-button" class="ht-header-icon ht-header-icon-svg">
<svg width="40px" height="40px" viewBox="0 0 40 40" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<g>
<path d="M29.572,28.802 L28.801,29.571 C28.515,29.857 28.187,30 27.816,30 C27.445,30 27.116,29.857 26.831,29.571 L21.392,24.134 C20.193,24.762 18.908,25.076 17.538,25.076 C15.396,25.076 13.605,24.348 12.163,22.892 C10.721,21.436 10,19.651 10,17.538 C10,15.397 10.721,13.605 12.163,12.163 C13.605,10.721 15.396,10 17.538,10 C19.651,10 21.434,10.721 22.89,12.163 C24.347,13.605 25.075,15.397 25.075,17.538 C25.075,18.937 24.761,20.222 24.132,21.393 L29.572,26.832 C29.857,27.118 30,27.446 30,27.817 C30,28.188 29.857,28.517 29.572,28.802 L29.572,28.802 Z M13.662,21.414 C14.732,22.485 16.024,23.02 17.538,23.02 C19.051,23.02 20.343,22.485 21.413,21.414 C22.484,20.344 23.019,19.052 23.019,17.538 C23.019,16.025 22.484,14.733 21.413,13.662 C20.343,12.592 19.051,12.056 17.538,12.056 C16.024,12.056 14.732,12.592 13.662,13.662 C12.591,14.733 12.056,16.025 12.056,17.538 C12.056,19.052 12.591,20.344 13.662,21.414 L13.662,21.414 Z"></path>
</g>
</svg>
</a>
<div class="ht-search-dropdown ht-dropdown">
<ul></ul>
</div>
</div>
</div>
</div>
</header> <aside id="ht-sidebar">
<div class="ht-sidebar-content">
<div class="ht-sidebar-content-scroll-container">
<header class="ht-sidebar-header">
<h1 class="ht-logo">
<span class="ht-logo-label">VRAY</span>
<img class="space-logo" src="spacelogo.png" />
</h1>
<a href="V-Ray_2.0_for_3ds_Max.html" class="ht-space-link">
<h2>V-Ray 2.0 for 3ds Max</h2>
</a>
</header>
<nav class="ht-pages-nav">
<ul class="ht-pages-nav-top">
<li class="leaf">
<a class="ht-nav-page-link" href="Getting_Started.html">Getting Started</a>
</li>
<li class="collapsed">
<a class="ht-nav-page-link current" href="Licensing.html">Licensing</a>
<span class="sp-toggle sp-aui-icon-small ht-pages-nav-toggle">
<svg id="icon-minus" width="24px" height="24px" viewBox="0 0 24 24" version="1.1" xmlns="http://www.w3.org/2000/svg">
<g fill="#CCCCCC">
<rect x="7" y="11" width="10" height="2"></rect>
</g>
</svg>
<svg id="icon-plus" width="24px" height="24px" viewBox="0 0 24 24" version="1.1" xmlns="http://www.w3.org/2000/svg">
<g fill="#CCCCCC">
<rect x="11" y="7" width="2" height="10"></rect>
<rect x="7" y="11" width="10" height="2"></rect>
</g>
</svg>
</span>
<ul class="nav ht-pages-nav-sub">
<li class="leaf">
<a class="ht-nav-page-link" href="EULA.html">EULA</a>
</li>
<li class="leaf">
<a class="ht-nav-page-link" href="License_Server_Agreement.html">License Server Agreement</a>
</li>
</ul>
</li>
<li class="leaf">
<a class="ht-nav-page-link" href="Credits.html">Credits</a>
</li>
<li class="leaf">
<a class="ht-nav-page-link" href="Migrating_from_V-Ray_1.5_to_V-Ray_2.0.html">Migrating from V-Ray 1.5 to V-Ray 2.0</a>
</li>
<li class="leaf">
<a class="ht-nav-page-link" href="Features.html">Features</a>
</li>
<li class="collapsed">
<a class="ht-nav-page-link" href="Installation.html">Installation</a>
<span class="sp-toggle sp-aui-icon-small ht-pages-nav-toggle">
<svg id="icon-minus" width="24px" height="24px" viewBox="0 0 24 24" version="1.1" xmlns="http://www.w3.org/2000/svg">
<g fill="#CCCCCC">
<rect x="7" y="11" width="10" height="2"></rect>
</g>
</svg>
<svg id="icon-plus" width="24px" height="24px" viewBox="0 0 24 24" version="1.1" xmlns="http://www.w3.org/2000/svg">
<g fill="#CCCCCC">
<rect x="11" y="7" width="2" height="10"></rect>
<rect x="7" y="11" width="10" height="2"></rect>
</g>
</svg>
</span>
<ul class="nav ht-pages-nav-sub">
<li class="leaf">
<a class="ht-nav-page-link" href="Installation_Troubleshooting.html">Installation Troubleshooting</a>
</li>
<li class="leaf">
<a class="ht-nav-page-link" href="Silent_Install_and_Uninstall.html">Silent Install and Uninstall</a>
</li>
<li class="leaf">
<a class="ht-nav-page-link" href="Uninstall_V-Ray.html">Uninstall V-Ray</a>
</li>
<li class="leaf">
<a class="ht-nav-page-link" href="V-Ray_Configuration.html">V-Ray Configuration</a>
</li>
</ul>
</li>
<li class="leaf">
<a class="ht-nav-page-link" href="Licensing_System.html">Licensing System</a>
</li>
<li class="leaf">
<a class="ht-nav-page-link" href="Troubleshooting.html">Troubleshooting</a>
</li>
<li class="collapsed">
<a class="ht-nav-page-link" href="V-Ray_and_3ds_Max.html">V-Ray and 3ds Max</a>
<span class="sp-toggle sp-aui-icon-small ht-pages-nav-toggle">
<svg id="icon-minus" width="24px" height="24px" viewBox="0 0 24 24" version="1.1" xmlns="http://www.w3.org/2000/svg">
<g fill="#CCCCCC">
<rect x="7" y="11" width="10" height="2"></rect>
</g>
</svg>
<svg id="icon-plus" width="24px" height="24px" viewBox="0 0 24 24" version="1.1" xmlns="http://www.w3.org/2000/svg">
<g fill="#CCCCCC">
<rect x="11" y="7" width="2" height="10"></rect>
<rect x="7" y="11" width="10" height="2"></rect>
</g>
</svg>
</span>
<ul class="nav ht-pages-nav-sub">
<li class="leaf">
<a class="ht-nav-page-link" href="MaxScript.html">MaxScript</a>
</li>
<li class="leaf">
<a class="ht-nav-page-link" href="Texture_Baking.html">Texture Baking</a>
</li>
<li class="leaf">
<a class="ht-nav-page-link" href="Unsupported_3ds_Max_Features.html">Unsupported 3ds Max Features</a>
</li>
<li class="leaf">
<a class="ht-nav-page-link" href="Render_Elements.html">Render Elements</a>
</li>
<li class="leaf">
<a class="ht-nav-page-link" href="G-Buffer_Support.html">G-Buffer Support</a>
</li>
<li class="leaf">
<a class="ht-nav-page-link" href="Hair_&_Fur.html">Hair & Fur</a>
</li>
<li class="collapsed">
<a class="ht-nav-page-link" href="V-Ray_RT.html">V-Ray RT</a>
<span class="sp-toggle sp-aui-icon-small ht-pages-nav-toggle">
<svg id="icon-minus" width="24px" height="24px" viewBox="0 0 24 24" version="1.1" xmlns="http://www.w3.org/2000/svg">
<g fill="#CCCCCC">
<rect x="7" y="11" width="10" height="2"></rect>
</g>
</svg>
<svg id="icon-plus" width="24px" height="24px" viewBox="0 0 24 24" version="1.1" xmlns="http://www.w3.org/2000/svg">
<g fill="#CCCCCC">
<rect x="11" y="7" width="2" height="10"></rect>
<rect x="7" y="11" width="10" height="2"></rect>
</g>
</svg>
</span>
<ul class="nav ht-pages-nav-sub">
<li class="leaf">
<a class="ht-nav-page-link" href="V-Ray_RT_FAQ.html">V-Ray RT FAQ</a>
</li>
</ul>
</li>
</ul>
</li>
<li class="collapsed">
<a class="ht-nav-page-link" href="Plugins.html">Plugins</a>
<span class="sp-toggle sp-aui-icon-small ht-pages-nav-toggle">
<svg id="icon-minus" width="24px" height="24px" viewBox="0 0 24 24" version="1.1" xmlns="http://www.w3.org/2000/svg">
<g fill="#CCCCCC">
<rect x="7" y="11" width="10" height="2"></rect>
</g>
</svg>
<svg id="icon-plus" width="24px" height="24px" viewBox="0 0 24 24" version="1.1" xmlns="http://www.w3.org/2000/svg">
<g fill="#CCCCCC">
<rect x="11" y="7" width="2" height="10"></rect>
<rect x="7" y="11" width="10" height="2"></rect>
</g>
</svg>
</span>
<ul class="nav ht-pages-nav-sub">
<li class="collapsed">
<a class="ht-nav-page-link" href="Rendering.html">Rendering</a>
<span class="sp-toggle sp-aui-icon-small ht-pages-nav-toggle">
<svg id="icon-minus" width="24px" height="24px" viewBox="0 0 24 24" version="1.1" xmlns="http://www.w3.org/2000/svg">
<g fill="#CCCCCC">
<rect x="7" y="11" width="10" height="2"></rect>
</g>
</svg>
<svg id="icon-plus" width="24px" height="24px" viewBox="0 0 24 24" version="1.1" xmlns="http://www.w3.org/2000/svg">
<g fill="#CCCCCC">
<rect x="11" y="7" width="2" height="10"></rect>
<rect x="7" y="11" width="10" height="2"></rect>
</g>
</svg>
</span>
<ul class="nav ht-pages-nav-sub">
<li class="leaf">
<a class="ht-nav-page-link" href=" V-Ray_Frame_Buffer.html"> V-Ray Frame Buffer</a>
</li>
<li class="leaf">
<a class="ht-nav-page-link" href="Global_Switches.html">Global Switches</a>
</li>
<li class="leaf">
<a class="ht-nav-page-link" href="Image_Sampler_(Antialiasing).html">Image Sampler (Antialiasing)</a>
</li>
<li class="collapsed">
<a class="ht-nav-page-link" href="Indirect_Illumination_(GI).html">Indirect Illumination (GI)</a>
<span class="sp-toggle sp-aui-icon-small ht-pages-nav-toggle">
<svg id="icon-minus" width="24px" height="24px" viewBox="0 0 24 24" version="1.1" xmlns="http://www.w3.org/2000/svg">
<g fill="#CCCCCC">
<rect x="7" y="11" width="10" height="2"></rect>
</g>
</svg>
<svg id="icon-plus" width="24px" height="24px" viewBox="0 0 24 24" version="1.1" xmlns="http://www.w3.org/2000/svg">
<g fill="#CCCCCC">
<rect x="11" y="7" width="2" height="10"></rect>
<rect x="7" y="11" width="10" height="2"></rect>
</g>
</svg>
</span>
<ul class="nav ht-pages-nav-sub">
<li class="leaf">
<a class="ht-nav-page-link" href="Brute_Force_GI.html">Brute Force GI</a>
</li>
<li class="leaf">
<a class="ht-nav-page-link" href="Irradiance_Map.html">Irradiance Map</a>
</li>
<li class="leaf">
<a class="ht-nav-page-link" href="Global_Photon_Map.html">Global Photon Map</a>
</li>
<li class="leaf">
<a class="ht-nav-page-link" href="Light_Cache.html">Light Cache</a>
</li>
</ul>
</li>
<li class="leaf">
<a class="ht-nav-page-link" href="Caustics.html">Caustics</a>
</li>
<li class="leaf">
<a class="ht-nav-page-link" href="Environment.html">Environment</a>
</li>
<li class="leaf">
<a class="ht-nav-page-link" href="DMC_Sampler.html">DMC Sampler</a>
</li>
<li class="leaf">
<a class="ht-nav-page-link" href="Color_Mapping.html">Color Mapping</a>
</li>
<li class="leaf">
<a class="ht-nav-page-link" href="Camera.html">Camera</a>
</li>
<li class="leaf">
<a class="ht-nav-page-link" href="Default_Displacement.html">Default Displacement</a>
</li>
<li class="collapsed">
<a class="ht-nav-page-link" href="System.html">System</a>
<span class="sp-toggle sp-aui-icon-small ht-pages-nav-toggle">
<svg id="icon-minus" width="24px" height="24px" viewBox="0 0 24 24" version="1.1" xmlns="http://www.w3.org/2000/svg">
<g fill="#CCCCCC">
<rect x="7" y="11" width="10" height="2"></rect>
</g>
</svg>
<svg id="icon-plus" width="24px" height="24px" viewBox="0 0 24 24" version="1.1" xmlns="http://www.w3.org/2000/svg">
<g fill="#CCCCCC">
<rect x="11" y="7" width="2" height="10"></rect>
<rect x="7" y="11" width="10" height="2"></rect>
</g>
</svg>
</span>
<ul class="nav ht-pages-nav-sub">
<li class="leaf">
<a class="ht-nav-page-link" href="Presets.html">Presets</a>
</li>
</ul>
</li>
</ul>
</li>
<li class="collapsed">
<a class="ht-nav-page-link" href="Materials.html">Materials</a>
<span class="sp-toggle sp-aui-icon-small ht-pages-nav-toggle">
<svg id="icon-minus" width="24px" height="24px" viewBox="0 0 24 24" version="1.1" xmlns="http://www.w3.org/2000/svg">
<g fill="#CCCCCC">
<rect x="7" y="11" width="10" height="2"></rect>
</g>
</svg>
<svg id="icon-plus" width="24px" height="24px" viewBox="0 0 24 24" version="1.1" xmlns="http://www.w3.org/2000/svg">
<g fill="#CCCCCC">
<rect x="11" y="7" width="2" height="10"></rect>
<rect x="7" y="11" width="10" height="2"></rect>
</g>
</svg>
</span>
<ul class="nav ht-pages-nav-sub">
<li class="leaf">
<a class="ht-nav-page-link" href="VRayMtl.html">VRayMtl</a>
</li>
<li class="leaf">
<a class="ht-nav-page-link" href="VRay2SidedMtl.html">VRay2SidedMtl</a>
</li>
<li class="leaf">
<a class="ht-nav-page-link" href="VRayOverrideMtl.html">VRayOverrideMtl</a>
</li>
<li class="leaf">
<a class="ht-nav-page-link" href="VRayLightMtl.html">VRayLightMtl</a>
</li>
<li class="leaf">
<a class="ht-nav-page-link" href="VRayMtlWrapper.html">VRayMtlWrapper</a>
</li>
<li class="leaf">
<a class="ht-nav-page-link" href="VRayFastSSS.html">VRayFastSSS</a>
</li>
<li class="leaf">
<a class="ht-nav-page-link" href="VRayFastSSS2.html">VRayFastSSS2</a>
</li>
<li class="leaf">
<a class="ht-nav-page-link" href="VRayBlendMtl.html">VRayBlendMtl</a>
</li>
<li class="leaf">
<a class="ht-nav-page-link" href="VRaySimbiontMtl.html">VRaySimbiontMtl</a>
</li>
<li class="leaf">
<a class="ht-nav-page-link" href="VRayCarPaintMtl.html">VRayCarPaintMtl</a>
</li>
<li class="leaf">
<a class="ht-nav-page-link" href="VRayFlakesMtl.html">VRayFlakesMtl</a>
</li>
<li class="leaf">
<a class="ht-nav-page-link" href="VRayOSLMtl.html">VRayOSLMtl</a>
</li>
<li class="leaf">
<a class="ht-nav-page-link" href="VRayHairMtl.html">VRayHairMtl</a>
</li>
<li class="leaf">
<a class="ht-nav-page-link" href="VRayGLSLMtl.html">VRayGLSLMtl</a>
</li>
</ul>
</li>
<li class="collapsed">
<a class="ht-nav-page-link" href="Textures.html">Textures</a>
<span class="sp-toggle sp-aui-icon-small ht-pages-nav-toggle">
<svg id="icon-minus" width="24px" height="24px" viewBox="0 0 24 24" version="1.1" xmlns="http://www.w3.org/2000/svg">
<g fill="#CCCCCC">
<rect x="7" y="11" width="10" height="2"></rect>
</g>
</svg>
<svg id="icon-plus" width="24px" height="24px" viewBox="0 0 24 24" version="1.1" xmlns="http://www.w3.org/2000/svg">
<g fill="#CCCCCC">
<rect x="11" y="7" width="2" height="10"></rect>
<rect x="7" y="11" width="10" height="2"></rect>
</g>
</svg>
</span>
<ul class="nav ht-pages-nav-sub">
<li class="leaf">
<a class="ht-nav-page-link" href="VRaySun_and_VRaySky.html">VRaySun and VRaySky</a>
</li>
<li class="leaf">
<a class="ht-nav-page-link" href="VRayDirt.html">VRayDirt</a>
</li>
<li class="leaf">
<a class="ht-nav-page-link" href="VRayColor.html">VRayColor</a>
</li>
<li class="leaf">
<a class="ht-nav-page-link" href="VRayMap.html">VRayMap</a>
</li>
<li class="leaf">
<a class="ht-nav-page-link" href="VRayHDRI.html">VRayHDRI</a>
</li>
<li class="leaf">
<a class="ht-nav-page-link" href="VRayEdgesTex.html">VRayEdgesTex</a>
</li>
<li class="leaf">
<a class="ht-nav-page-link" href="VRayBmpFilter.html">VRayBmpFilter</a>
</li>
<li class="leaf">
<a class="ht-nav-page-link" href="VRayCompTex.html">VRayCompTex</a>
</li>
<li class="leaf">
<a class="ht-nav-page-link" href="VRayDistanceTex.html">VRayDistanceTex</a>
</li>
<li class="leaf">
<a class="ht-nav-page-link" href="VRayGLSLTex.html">VRayGLSLTex</a>
</li>
<li class="leaf">
<a class="ht-nav-page-link" href="VRayOSLTex.html">VRayOSLTex</a>
</li>
<li class="leaf">
<a class="ht-nav-page-link" href="VRayMultiSubTex.html">VRayMultiSubTex</a>
</li>
<li class="leaf">
<a class="ht-nav-page-link" href="VRayPtex.html">VRayPtex</a>
</li>
<li class="leaf">
<a class="ht-nav-page-link" href="VRayHairInfoTex.html">VRayHairInfoTex</a>
</li>
<li class="leaf">
<a class="ht-nav-page-link" href="VRayColor2Bump.html">VRayColor2Bump</a>
</li>
<li class="leaf">
<a class="ht-nav-page-link" href="VRaySky.html">VRaySky</a>
</li>
<li class="leaf">
<a class="ht-nav-page-link" href="VRaySoftBox.html">VRaySoftBox</a>
</li>
</ul>
</li>
<li class="collapsed">
<a class="ht-nav-page-link" href="Lighting.html">Lighting</a>
<span class="sp-toggle sp-aui-icon-small ht-pages-nav-toggle">
<svg id="icon-minus" width="24px" height="24px" viewBox="0 0 24 24" version="1.1" xmlns="http://www.w3.org/2000/svg">
<g fill="#CCCCCC">
<rect x="7" y="11" width="10" height="2"></rect>
</g>
</svg>
<svg id="icon-plus" width="24px" height="24px" viewBox="0 0 24 24" version="1.1" xmlns="http://www.w3.org/2000/svg">
<g fill="#CCCCCC">
<rect x="11" y="7" width="2" height="10"></rect>
<rect x="7" y="11" width="10" height="2"></rect>
</g>
</svg>
</span>
<ul class="nav ht-pages-nav-sub">
<li class="leaf">
<a class="ht-nav-page-link" href="VRayLight.html">VRayLight</a>
</li>
<li class="leaf">
<a class="ht-nav-page-link" href="VRaySun.html">VRaySun</a>
</li>
<li class="leaf">
<a class="ht-nav-page-link" href="VRayIES_light.html">VRayIES light</a>
</li>
<li class="leaf">
<a class="ht-nav-page-link" href="VRayAmbientLight.html">VRayAmbientLight</a>
</li>
</ul>
</li>
<li class="collapsed">
<a class="ht-nav-page-link" href="Geometry.html">Geometry</a>
<span class="sp-toggle sp-aui-icon-small ht-pages-nav-toggle">
<svg id="icon-minus" width="24px" height="24px" viewBox="0 0 24 24" version="1.1" xmlns="http://www.w3.org/2000/svg">
<g fill="#CCCCCC">
<rect x="7" y="11" width="10" height="2"></rect>
</g>
</svg>
<svg id="icon-plus" width="24px" height="24px" viewBox="0 0 24 24" version="1.1" xmlns="http://www.w3.org/2000/svg">
<g fill="#CCCCCC">
<rect x="11" y="7" width="2" height="10"></rect>
<rect x="7" y="11" width="10" height="2"></rect>
</g>
</svg>
</span>
<ul class="nav ht-pages-nav-sub">
<li class="leaf">
<a class="ht-nav-page-link" href="VRayFur.html">VRayFur</a>
</li>
<li class="leaf">
<a class="ht-nav-page-link" href="VRayProxy.html">VRayProxy</a>
</li>
<li class="leaf">
<a class="ht-nav-page-link" href="VRayPlane.html">VRayPlane</a>
</li>
</ul>
</li>
<li class="collapsed">
<a class="ht-nav-page-link" href="Miscellaneous_Plugins.html">Miscellaneous Plugins</a>
<span class="sp-toggle sp-aui-icon-small ht-pages-nav-toggle">
<svg id="icon-minus" width="24px" height="24px" viewBox="0 0 24 24" version="1.1" xmlns="http://www.w3.org/2000/svg">
<g fill="#CCCCCC">
<rect x="7" y="11" width="10" height="2"></rect>
</g>
</svg>
<svg id="icon-plus" width="24px" height="24px" viewBox="0 0 24 24" version="1.1" xmlns="http://www.w3.org/2000/svg">
<g fill="#CCCCCC">
<rect x="11" y="7" width="2" height="10"></rect>
<rect x="7" y="11" width="10" height="2"></rect>
</g>
</svg>
</span>
<ul class="nav ht-pages-nav-sub">
<li class="leaf">
<a class="ht-nav-page-link" href="VRayShadow.html">VRayShadow</a>
</li>
<li class="leaf">
<a class="ht-nav-page-link" href="VRayShadowMap.html">VRayShadowMap</a>
</li>
<li class="leaf">
<a class="ht-nav-page-link" href="VRayDisplacementMod.html">VRayDisplacementMod</a>
</li>
<li class="leaf">
<a class="ht-nav-page-link" href="VRayToon.html">VRayToon</a>
</li>
<li class="leaf">
<a class="ht-nav-page-link" href="VRayEnvironmentFog.html">VRayEnvironmentFog</a>
</li>
<li class="leaf">
<a class="ht-nav-page-link" href="VRayPhysicalCamera.html">VRayPhysicalCamera</a>
</li>
<li class="leaf">
<a class="ht-nav-page-link" href="VRaySphereFade.html">VRaySphereFade</a>
</li>
<li class="leaf">
<a class="ht-nav-page-link" href="VRayStereoscopic.html">VRayStereoscopic</a>
</li>
<li class="leaf">
<a class="ht-nav-page-link" href="VRayStereoRig.html">VRayStereoRig</a>
</li>
<li class="leaf">
<a class="ht-nav-page-link" href="VRayLensEffects.html">VRayLensEffects</a>
</li>
<li class="leaf">
<a class="ht-nav-page-link" href="VRayLightMeter.html">VRayLightMeter</a>
</li>
<li class="leaf">
<a class="ht-nav-page-link" href="VRayExposureControl.html">VRayExposureControl</a>
</li>
<li class="leaf">
<a class="ht-nav-page-link" href="VRayBPTracer.html">VRayBPTracer</a>
</li>
<li class="leaf">
<a class="ht-nav-page-link" href="VRayOrnatrixMod.html">VRayOrnatrixMod</a>
</li>
<li class="leaf">
<a class="ht-nav-page-link" href="VRayHairFarmMod.html">VRayHairFarmMod</a>
</li>
</ul>
</li>
</ul>
</li>
<li class="leaf">
<a class="ht-nav-page-link" href="Object_and_Light_Properties.html">Object and Light Properties</a>
</li>
<li class="leaf">
<a class="ht-nav-page-link" href="Distributed_Rendering.html">Distributed Rendering</a>
</li>
<li class="leaf">
<a class="ht-nav-page-link" href="GLSL_Support.html">GLSL Support</a>
</li>
<li class="leaf">
<a class="ht-nav-page-link" href="OSL_Support.html">OSL Support</a>
</li>
<li class="collapsed">
<a class="ht-nav-page-link" href="Tools.html">Tools</a>
<span class="sp-toggle sp-aui-icon-small ht-pages-nav-toggle">
<svg id="icon-minus" width="24px" height="24px" viewBox="0 0 24 24" version="1.1" xmlns="http://www.w3.org/2000/svg">
<g fill="#CCCCCC">
<rect x="7" y="11" width="10" height="2"></rect>
</g>
</svg>
<svg id="icon-plus" width="24px" height="24px" viewBox="0 0 24 24" version="1.1" xmlns="http://www.w3.org/2000/svg">
<g fill="#CCCCCC">
<rect x="11" y="7" width="2" height="10"></rect>
<rect x="7" y="11" width="10" height="2"></rect>
</g>
</svg>
</span>
<ul class="nav ht-pages-nav-sub">
<li class="leaf">
<a class="ht-nav-page-link" href="Irradiance_Map_Viewer.html">Irradiance Map Viewer</a>
</li>
<li class="leaf">
<a class="ht-nav-page-link" href=".obj_and_.ply_to_.vrmesh_Converter_.html">.obj and .ply to .vrmesh Converter*</a>
</li>
<li class="leaf">
<a class="ht-nav-page-link" href=".vrimg_to_.exr_Converter.html">.vrimg to .exr Converter</a>
</li>
<li class="leaf">
<a class="ht-nav-page-link" href="Image_to_Tiled_Multiresolution_OpenEXR_Converter.html">Image to Tiled Multiresolution OpenEXR Converter</a>
</li>
<li class="leaf">
<a class="ht-nav-page-link" href="V-Ray_Scene_Exporter.html">V-Ray Scene Exporter</a>
</li>
<li class="leaf">
<a class="ht-nav-page-link" href="Lens_Analysis_Utility.html">Lens Analysis Utility</a>
</li>
<li class="leaf">
<a class="ht-nav-page-link" href="Filter_Generator.html">Filter Generator</a>
</li>
</ul>
</li>
<li class="collapsed">
<a class="ht-nav-page-link" href="Tutorials.html">Tutorials</a>
<span class="sp-toggle sp-aui-icon-small ht-pages-nav-toggle">
<svg id="icon-minus" width="24px" height="24px" viewBox="0 0 24 24" version="1.1" xmlns="http://www.w3.org/2000/svg">
<g fill="#CCCCCC">
<rect x="7" y="11" width="10" height="2"></rect>
</g>
</svg>
<svg id="icon-plus" width="24px" height="24px" viewBox="0 0 24 24" version="1.1" xmlns="http://www.w3.org/2000/svg">
<g fill="#CCCCCC">
<rect x="11" y="7" width="2" height="10"></rect>
<rect x="7" y="11" width="10" height="2"></rect>
</g>
</svg>
</span>
<ul class="nav ht-pages-nav-sub">
<li class="leaf">
<a class="ht-nav-page-link" href="Irradiance_Map_Modes__Rendering_a_Static_Scene_from_Multiple_Views.html">Irradiance Map Modes: Rendering a Static Scene from Multiple Views</a>
</li>
<li class="leaf">
<a class="ht-nav-page-link" href="Rendering_a_Walk-Through_Animation.html">Rendering a Walk-Through Animation</a>
</li>
<li class="leaf">
<a class="ht-nav-page-link" href="Photon_Mapping.html">Photon Mapping</a>
</li>
<li class="leaf">
<a class="ht-nav-page-link" href="Displacement_Mapping.html">Displacement Mapping</a>
</li>
<li class="leaf">
<a class="ht-nav-page-link" href="Rendering_an_Interior_Scene.html">Rendering an Interior Scene</a>
</li>
<li class="leaf">
<a class="ht-nav-page-link" href="Progressive_Path_Tracing_with_V-Ray.html">Progressive Path Tracing with V-Ray</a>
</li>
<li class="leaf">
<a class="ht-nav-page-link" href="Rendering_Surface_Interfaces.html">Rendering Surface Interfaces</a>
</li>
<li class="leaf">
<a class="ht-nav-page-link" href="Rendering_an_Animation_with_Moving_Objects.html">Rendering an Animation with Moving Objects</a>
</li>
<li class="leaf">
<a class="ht-nav-page-link" href="Rendering_an_Animation_with_Moving_Objects_II.html">Rendering an Animation with Moving Objects II</a>
</li>
<li class="leaf">
<a class="ht-nav-page-link" href="Basic_Texture_Baking_with_V-Ray,_Part_I.html">Basic Texture Baking with V-Ray, Part I</a>
</li>
<li class="leaf">
<a class="ht-nav-page-link" href="Universal_V-Ray_Settings.html">Universal V-Ray Settings</a>
</li>
<li class="leaf">
<a class="ht-nav-page-link" href="Rendering_PTex_Textures_from_Mudbox.html">Rendering PTex Textures from Mudbox</a>
</li>
</ul>
</li>
<li class="collapsed">
<a class="ht-nav-page-link" href="Theory.html">Theory</a>
<span class="sp-toggle sp-aui-icon-small ht-pages-nav-toggle">
<svg id="icon-minus" width="24px" height="24px" viewBox="0 0 24 24" version="1.1" xmlns="http://www.w3.org/2000/svg">
<g fill="#CCCCCC">
<rect x="7" y="11" width="10" height="2"></rect>
</g>
</svg>
<svg id="icon-plus" width="24px" height="24px" viewBox="0 0 24 24" version="1.1" xmlns="http://www.w3.org/2000/svg">
<g fill="#CCCCCC">
<rect x="11" y="7" width="2" height="10"></rect>
<rect x="7" y="11" width="10" height="2"></rect>
</g>
</svg>
</span>
<ul class="nav ht-pages-nav-sub">
<li class="leaf">
<a class="ht-nav-page-link" href="Raytracing_Overview.html">Raytracing Overview</a>
</li>
<li class="leaf">
<a class="ht-nav-page-link" href="GI_Methods.html">GI Methods</a>
</li>
</ul>
</li>
<li class="leaf">
<a class="ht-nav-page-link" href="Terminology.html">Terminology</a>
</li>
<li class="leaf">
<a class="ht-nav-page-link" href="Frequently_Asked_Questions.html">Frequently Asked Questions</a>
</li>
</ul>
</nav>
</div>
</div>
</aside></div>
<div id="ht-wrap-container">
<div id="ht-sidebar-dragbar">
<div class="ht-sidebar-drag-handle">
<span class="drag-handle-1"></span>
<span class="drag-handle-2"></span>
<span class="drag-handle-3"></span>
</div>
</div>
<article id="ht-content" class="ht-content">
<header class="ht-content-header">
<div id="ht-breadcrumb">
<ul>
<li><a href="V-Ray_2.0_for_3ds_Max.html">V-Ray 2.0 for 3ds Max</a></li>
</ul>
</div> <h1 id="src-1409095"> <span>Licensing</span></h1>
</header>
<div id="main-content" class="wiki-content sp-grid-section" data-index-for-search="true">
<ul class="childpages-macro "><li class=" "> <p ><a href="EULA.html">EULA</a> </p>
</li><li class=" "> <p ><a href="License_Server_Agreement.html">License Server Agreement</a> </p>
</li></ul> </div>
</article>
<nav id="ht-post-nav">
<a href="Getting_Started.html" class="ht-post-nav-prev">
<svg width="22px" height="22px" viewBox="0 0 22 22" version="1.1" xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:sketch="http://www.bohemiancoding.com/sketch/ns">
<g id="ht-icon-prev" sketch:type="MSArtboardGroup">
<path fill="#000000" d="M16,8 L16,6 L6,6 L6,16 L8,16 L8,8 L16,8 Z" id="Rectangle-2"
sketch:type="MSShapeGroup"
transform="translate(11.000000, 11.000000) rotate(-45.000000) translate(-11.000000, -11.000000) "></path>
</g>
</svg>
<span>Getting Started</span>
</a>
<a href="EULA.html" class="ht-post-nav-next">
<svg width="22px" height="22px" viewBox="0 0 22 22" version="1.1" xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:sketch="http://www.bohemiancoding.com/sketch/ns">
<g id="ht-icon-next" sketch:type="MSArtboardGroup">
<path fill="#000000" d="M16,8 L16,6 L6,6 L6,16 L8,16 L8,8 L16,8 Z" id="Rectangle-2"
sketch:type="MSShapeGroup"
transform="translate(11.000000, 11.000000) rotate(-225.000000) translate(-11.000000, -11.000000) "></path>
</g>
</svg>
<span>EULA</span>
</a>
</nav>
<article id="html-search-results" class="ht-content" style="display: none;">
<header class="ht-content-header">
<div id="ht-spacetitle">
<ul>
<li><a href="V-Ray_2.0_for_3ds_Max.html">V-Ray 2.0 for 3ds Max</a></li>
</ul>
</div>
<h1>Search results</h1>
</header>
<div id="search-results"></div>
</article>
<footer id="ht-footer">
<a href="#" id="ht-jump-top" class="sp-aui-icon-small sp-aui-iconfont-arrows-up"></a>
</footer></div>
<div>
<div id="ht-mq-detect"></div>
</div>
<script src="js/lunr.js"></script>
<script src="js/lunr-extras.js"></script>
<script src="assets/js/scroll-search.js"></script>
</body>
</html>