-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
1226 lines (1068 loc) · 39.2 KB
/
index.html
File metadata and controls
1226 lines (1068 loc) · 39.2 KB
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
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta
name="keywords"
content="Atlas Next Gen Nextgen Terrain Editor For Unity 3D Engine World Tool Plugin Asset Store Assetstore"
/>
<meta
name="description"
content="Atlas Terrain tool for unity engine Brings non destructive stamp workflow to your unity terrains. Create huge and beautiful terrains quickly and easily."
/>
<link href="css/icons.css" rel="stylesheet" />
<link rel="icon" href="Images/Atlas Next Gen Terrain Editor For Unity Favicon.svg" />
<title>Atlas terrain Home</title>
<noscript>
<style>
body {
opacity: 1 !important;
}
</style>
</noscript>
<style>
@keyframes blink {
0% {
transform: translateY(0px);
}
95% {
transform: translateY(0px);
}
100% {
transform: translateY(-3px);
}
}
@keyframes downer {
0% {
transform: translateX(-50%) translateY(0px);
opacity: 0;
}
25% {
transform: translateX(-50%) translateY(0px);
opacity: 0;
}
30% {
opacity: 1;
}
45% {
opacity: 1;
}
50% {
transform: translateX(-50%) translateY(60px);
opacity: 0;
}
}
html {
background-color: black;
}
* {
box-sizing: border-box;
}
*:focus {
outline: none;
}
body {
opacity: 0;
transition: 10s ease-out;
background-color: rgb(8, 8, 8);
color: white;
margin: 0;
font-family: Arial, Helvetica, sans-serif;
font-size: 20px;
line-height: 30px;
}
@media only screen and (max-width: 800px) {
body {
font-size: 15px;
line-height: 25px;
}
}
section {
position: relative;
padding: 100px 20%;
}
@media only screen and (max-width: 800px) {
section {
padding: 50px 2%;
}
}
section:nth-child(1) {
padding: 0;
}
b {
color: white;
}
p {
color: rgb(167 167 167);
}
h1 {
font-weight: normal;
font-size: 28px;
line-height: 35px;
margin-bottom: 75px;
margin-top: 0;
}
h2 {
font-weight: normal;
font-size: 28px;
line-height: 35px;
text-transform: uppercase;
}
@media only screen and (max-width: 800px) {
h1 {
font-size: 20px;
line-height: 30px;
}
}
a {
text-decoration: none;
color: rgb(0, 132, 255);
transition: 0.3s;
}
a:hover {
color: rgb(0, 78, 151);
}
.title {
position: absolute;
top: 65%;
left: 50%;
transform: translateX(-50%);
text-align: center;
width: 100%;
pointer-events: none;
font-size: 19px;
letter-spacing: 6px;
opacity: 0;
transition: 3s ease-out;
text-transform: uppercase;
}
@media only screen and (max-width: 800px) {
.title {
font-size: 10px;
letter-spacing: 4px;
}
}
@media only screen and (max-width: 375px) {
.title {
display: none;
}
}
.noselect {
-webkit-touch-callout: none;
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
.blinker {
animation: blink 3s linear infinite;
}
.imgwrap {
border: 1px solid #ffffff2e;
padding: 15px;
padding-bottom: 10px;
border-radius: 10px;
}
.txtwrap {
padding: 5% 25px;
padding-top: 0;
}
.imgwrap img {
border-radius: 10px;
width: 100%;
}
.row {
display: -ms-flexbox;
display: flex;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
}
.column {
-ms-flex: 25%;
flex: 25%;
max-width: 25%;
padding: 0;
}
.column img {
margin: 0;
vertical-align: middle;
width: 100%;
}
@media screen and (max-width: 800px) {
.column {
-ms-flex: 50%;
flex: 50%;
max-width: 50%;
}
}
@media screen and (max-width: 600px) {
.column {
-ms-flex: 100%;
flex: 100%;
max-width: 100%;
}
}
.gi {
position: relative;
cursor: pointer;
transition: 0.3s;
border: 2px solid black;
}
.gi:hover,
.go:focus {
filter: brightness(120%);
transform: translateX(-3px) translateY(-3px);
z-index: 1;
}
footer {
position: relative;
display: flex;
justify-content: center;
align-items: center;
padding: 100px 10%;
background-color: black;
display: flex;
flex-direction: column;
}
footer img {
width: 150px;
height: 150px;
margin-right: 100px;
}
@media only screen and (max-width: 800px) {
footer img {
width: 100px;
height: 100px;
margin-right: 0px;
}
}
@media only screen and (max-width: 600px) {
footer img {
width: 75px;
height: 75px;
margin-right: 15px;
}
}
.socials {
display: flex;
}
.social {
padding: 30px;
font-size: 32px;
color: rgb(255, 255, 255);
}
.social:hover {
color: rgb(163, 163, 163);
}
@media only screen and (max-width: 800px) {
.social {
font-size: 25px;
padding: 20px;
}
}
@media only screen and (max-width: 600px) {
.social {
font-size: 20px;
padding: 10px;
}
}
.nocookie {
position: absolute;
left: 50%;
transform: translateX(-50%);
text-align: center;
width: 100%;
bottom: 10px;
color:rgb(59, 59, 59);
}
.modal {
display: none;
position: fixed;
z-index: 20;
left: 0;
top: 0;
width: 100%;
height: 100%;
overflow: auto;
background-color: rgb(0, 0, 0);
background-color: rgba(0, 0, 0, 0.9);
}
.modal-content {
max-height: 100vh;
max-width: 90vw;
position: absolute;
top: 50%;
left: 50%;
transform: translateX(-50%) translateY(-50%);
transition: 1s;
opacity: 0;
filter: brightness(110%) contrast(110%);
}
#caption {
margin: auto;
display: block;
width: 80%;
max-width: 700px;
text-align: center;
color: #ccc;
padding: 10px 0;
height: 150px;
}
.modalbutton {
cursor: pointer;
background-color: transparent;
position: absolute;
top: 50%;
transform: translateY(-50%);
padding: 45px;
color: white;
font-size: 30px;
}
.modalbutton:hover,
.modalbutton:focus {
color: rgb(145, 145, 145);
}
.modalbutton.left {
left: 0px;
}
.modalbutton.right {
right: 0px;
}
.close {
position: absolute;
top: 15px;
right: 35px;
color: #f1f1f1;
font-size: 40px;
font-weight: bold;
transition: 0.3s;
}
.close:hover,
.close:focus {
color: rgb(145, 145, 145);
text-decoration: none;
cursor: pointer;
}
@media only screen and (max-width: 700px) {
.modal-content {
width: 100%;
}
}
.down {
position: fixed;
bottom: 100px;
left: 50%;
transform: translateX(-50%);
font-size: 50px;
pointer-events: none;
animation: downer 10s linear;
opacity: 0;
}
.mailboxcontainer {
position: relative;
}
.mailbox {
text-align: center;
}
.mailboxwrap {
padding: 5% 25px;
padding-top: 0px;
padding-bottom: 0px;
}
.mailboxstate {
display: none;
opacity: 0;
position: absolute;
top: 50px;
left: 50%;
transform: translateX(-50%);
width: 320px;
margin-top: 25px;
text-align: center;
transition: 0.3s;
}
.mailfield {
height: 50px;
border: none;
border-radius: 5px;
font-size: 18px;
padding: 10px 25px;
min-width: 350px;
background-color: transparent;
border: 1px solid rgb(255, 255, 255);
color: white;
}
.mailfield:hover {
border-color: rgb(172, 172, 172);
}
input.mailfield:-webkit-autofill {
background-clip: text;
-webkit-background-clip: text;
-webkit-text-fill-color: white !important;
}
.mailsubmit {
cursor: pointer;
height: 50px;
border: none;
border-radius: 5px;
font-weight: bold;
padding: 10px 50px;
background-color: white;
transition: 0.3s;
margin: 10px;
}
.mailsubmit:hover {
background-color: rgb(177, 177, 177);
}
.sidebyside {
align-items: center;
padding-top: 0px;
padding-bottom: 100px;
}
@media only screen and (max-width: 1700px) {
.mwl {
display: none;
}
}
.fade {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: linear-gradient(to top, black 1%, transparent 20%);
}
/*main nav*/
.mainnav {
position: fixed;
width: 100%;
height: 75px;
background-color: #000000ed;
display: flex;
z-index: 10;
justify-content: end;
border-bottom: 1px solid rgb(66, 66, 66);
top: 0;
font-size: 20px;
}
.navhome {
width: 75px;
padding: 10px;
cursor: pointer;
position: absolute;
left: 0;
top: 0;
}
.navhome:hover {
filter: brightness(80%);
}
.navitem {
padding: 25px;
align-self: center;
color: white;
cursor: pointer;
font-size: 15px;
margin: 0px 15px;
letter-spacing: 2px;
text-transform: uppercase;
}
.navitem:hover {
color: gray;
}
a.navitem {
color:white;
}
.main-section, .nav {
margin-top: 75px;
}
@media only screen and (max-width: 800px) {
.navitem {
font-size: 12px;
letter-spacing: 0px;
margin: 0px 0px;
padding: 25px 10px;
}
}
/*---*/
.assetstorebutton {
position: absolute;
top: 72%;
left: 50%;
transform: translateX(-50%);
font-size: 20px;
font-weight: bold;
background: white;
border: none;
border-radius: 5px;
padding: 20px 40px;
z-index: 5;
cursor: pointer;
color:black;
}
.assetstorebutton:hover {
color:black;
filter:invert(1);
}
@media only screen and (max-width: 800px) {
.assetstorebutton {
top: 78%;
font-size: 14px;
padding: 15px 10px;
}
}
</style>
</head>
<body>
<div class="mainnav">
<a class="navitem navhome" href="#section1"></i>Home</a>
<a class="navitem" href="#section1-2">Trailer</a>
<a class="navitem" href="#section2">Features</a>
<a class="navitem" href="#section3">Gallery</a>
<a class="navitem" href="docs.html">Documentation</a>
</div>
<section style="background-color: black; padding: 0;" id="section1">
<img src="Images/Atlas Next Gen Terrain Editor For Unity Thumbnail.png" style="width: 100%" draggable="false"></img>
<h1 class="title noselect"><b>next gen terrain editor</b> for unity</h1>
<a class="assetstorebutton noselect" href="https://assetstore.unity.com/packages/slug/207568">Available on Unity Asset Store</a>
<div class="fade"></div>
</section>
<!---trailer-->
<section style="background-color: black;" id="section1-2">
<div class="txtwrap">
<h1>Hello and Welcome To Atlas.</h1>
<p>
We firmly believe that the future of terrain editing lies in a non destructive object based workflow. As
long-time Unity users we have been working on a <b>next gen terrain editor</b> that combines brushed and generative workflows into a perfect hybrid. Having both these workflows operating inside a non destructive
object based system allows us to overcome the shortcomings that these techniques have on their own.
</p>
</div>
<div class="imgwrap" style="position:relative; width: 100%; height: 0; padding-bottom: 56.25%;">
<iframe style="position: absolute; top: 15px; left: 15px; width: calc( 100% - 30px); height: calc( 100% - 30px); border: none;" src="https://www.youtube-nocookie.com/embed/0bcf-pDEqzg"></iframe>
</div>
</section>
<!---stamps-->
<section id="section2">
<div class="txtwrap">
<h1>Stamps</h1>
<p>A Stamp in Atlas is a bundle of textures that articulates a piece of terrain, it includes heightmap data and a range of masks that you can use for your splatmaps. The Stamp lives on a regular GameObject which means that you can <b>move / rotate and scale</b> them just like any other GameObject.</p>
</div>
<div class="imgwrap">
<img class="gi noselect" src="Images/Atlas Next Gen Terrain Editor For Unity Section 1.jpg" draggable="false" />
</div>
</section>
<!---custom stamps-->
<section style="background-color: black;">
<div class="txtwrap">
<h1>Custom Stamps</h1>
<p>It's easy to create your own <b>stamp assets</b>. You can use textures of stamps that we provide or generate your own using your favorite terrain generator or perhaps you are looking to use satellite data. Its all possible since the stamps only require at least a heightmap to work.</p>
</div>
<div class="imgwrap">
<img class="gi noselect" src="Images/Atlas Next Gen Terrain Editor For Unity Section 2.jpg" draggable="false" />
</div>
</section>
<!---real time editing-->
<section>
<div class="txtwrap">
<h1>Real-time Editing</h1>
<p>Real-time editing is done within a preview box, the box acts as a camera that sees your stamps, renders them and allows you to view the result as a terrain. Rendering is done on the <b>GPU</b> and it uses an underlying Unity terrain to show the result, which means that the collision and the splatmaps work in real time while editing.</p>
<p>In addition, you can turn the preview box on and off on demand so you can save resources while not editing your terrain.</p>
</div>
<div class="imgwrap">
<img class="gi noselect" src="Images/Atlas Next Gen Terrain Editor For Unity Section 3.jpg" draggable="false" />
</div>
</section>
<!---blend modes-->
<section style="background-color: black;">
<div class="txtwrap">
<h1>Blend Modes</h1>
<p>Roads should probably make the height go towards the spline at all times. The mountains on the other hand should most likely punch through the heightmap and craters should probably only lower the height of your terrain.</p>
<p>This logic is handled through blend modes and we have 5 modes to choose from.</p>
<ul>
<li>Blend: moves the height towards the target height</li>
<li>Max: the maximum height wins</li>
<li>Min: the minimum height wins</li>
<li>Add: adds height</li>
<li>Sub: subtracts height</li>
</ul>
</div>
<div class="imgwrap">
<img class="gi noselect" src="Images/Atlas Next Gen Terrain Editor For Unity Section 5.jpg" draggable="false" />
</div>
</section>
<!---splatmap-->
<section>
<div class="txtwrap">
<h1>Splatmaps</h1>
<p>Atlas comes with full splatmap control, each stamp contains multiple masks that you can use to compose your splatmaps, these masks can range from <b>Erosion</b> to <b>Slope</b> and <b>curvature</b> or anything else this stamp wants to express.</p>
<p>You can add as many layers as you want to write to your splatmap, each layer can be adjusted to your taste, which means you can filter a specific slope section and increase the sharpness of your erosion lines.</p>
</div>
<div class="imgwrap">
<img class="gi noselect" src="Images/Atlas Next Gen Terrain Editor For Unity Section 6.jpg" draggable="false" />
</div>
</section>
<!--mask painting-->
<section style="background-color: black;">
<div class="txtwrap">
<h1>Mask painting</h1>
<p>In Atlas you can <b>brush</b> the opacity of your stamps. This is especially handy when you want to isolate a specific piece out of a stamp or when you need to make a couple of stamps fit better. You can always revert back to the previous mask or jump back to the original mask, so feel free to make a mess, no harm done.<i class="fas fa-laugh-beam" style="margin-left: 10px; color:white;"></i></p>
<p>In short mask painting is here to cover your back in difficult situations.</p>
</div>
<div class="imgwrap">
<img class="gi noselect" src="Images/Atlas Next Gen Terrain Editor For Unity Section 7.jpg" draggable="false" />
</div>
</section>
<!--stamps as prefabs-->
<section>
<div class="txtwrap">
<h1>Stamps as Prefabs</h1>
<p>Stamps in Atlas are regular GameObjects and as you would expect you can drag them to your project panel and turn them into a prefab.</p>
<p>This allows you to <b>structure</b> the way your level is built; you can group stamps, combine stamps with other prefabs like buildings or lakes and especially <b>reuse</b> the things you build throughout your project.</p>
</div>
<div class="imgwrap">
<img class="gi noselect" src="Images/Atlas Next Gen Terrain Editor For Unity Section 8.jpg" draggable="false" />
</div>
</section>
<!--splines-->
<section style="background-color: black;">
<div class="txtwrap">
<h1>Splines</h1>
<p>Atlas would not be complete without spline support. The spline stamp offers the same functionality as regular stamps, the only difference is that the stamp will now be orientated as a spline instead of a square.</p>
<p>Consider using spline stamps to build road networks, rivers, ridges, coast lines, or cliffs. It's all possible and can be very powerful when used correctly.</p>
</div>
<div class="imgwrap">
<img class="gi noselect" src="Images/Atlas Next Gen Terrain Editor For Unity Section 9.jpg" draggable="false" />
</div>
</section>
<!--spline to mesh-->
<section>
<div class="txtwrap">
<h1>Spline to Mesh</h1>
<p>Atlas can generate a mesh from your spline, use this to create your road meshes and/or river meshes.</p>
<p>The settings with which you export the mesh can be customized separately; for rivers, you may want your mesh to be a little wider than the stamp itself whereas roads might need a small height offset or other tiling values.</p>
</div>
<div class="imgwrap">
<img class="gi noselect" src="Images/Atlas Next Gen Terrain Editor For Unity Section 10.jpg" draggable="false" />
</div>
</section>
<!--apply to unity terrain-->
<section style="background-color: black;">
<div class="txtwrap">
<h1>Apply to Unity Terrain</h1>
<p>Atlas applies straight onto Unity terrain, each terrain will render at full resolution. You can use as many terrains as you want and they don't need to share the same settings. Atlas will automatically render <b>seamlessly</b> when your terrain is placed side by side, there's no stitching required.</p>
</div>
<div class="imgwrap">
<img class="gi noselect" src="Images/Atlas Next Gen Terrain Editor For Unity Section 11.jpg" draggable="false" />
</div>
</section>
<!--export textures-->
<section>
<div class="txtwrap">
<h1>Exporting textures</h1>
<p>To make Atlas ready for the future it provides you with extra textures you can export for more advanced terrain solutions.</p>
<ul>
<li>Heightmap (32bit)</li>
<li>16 splatmaps</li>
<li>global color map</li>
<li>global normal map</li>
</ul>
<p>These should provide enough information to articulate pretty much any terrain that is heightmap based.</p>
<p>While global color map can give huge improvements of the uniqueness your terrain can also express to a global normal map that will make your terrain look sharp and crisp from far away.</p>
<p>Atlas also provides up to 16 splatmaps if your terrain shader supports it.</p>
</div>
<div class="imgwrap">
<img class="gi noselect" src="Images/Atlas Next Gen Terrain Editor For Unity Section 12.jpg" draggable="false" />
</div>
</section>
<!--scattering-->
<section style="background-color: black;">
<div class="txtwrap">
<h1>Scattering</h1>
<p>Atlas comes with basic scattering system in which each terrain contains a list of <b>scatter rules.</b></p>
<p>Each scatter rule can be a biome like palm trees on a beach or a dense pine forest and can be filtered using a target splatmap, range sliders for height and slope and an ignore tag.</p>
<p>Scattering is <b>'hierarchy'</b> based, which means you can first scatter a bunch of big trees, those big trees can then scatter smaller trees and so on, this works a bit more like nature in real life compared to just noise based scattering.</p>
<p>Details such as tiny rocks and billboard grass can also be scattered via a density value. All scattered objects can <b>cull</b> each other so you don't have overlaps.</p>
<p>Scattering is also <b>non invasive</b>, which means that you can manually place your special trees without the scattering system removing them whenever it scatters again.</p>
</div>
<div class="imgwrap">
<img class="gi noselect" src="Images/Atlas Next Gen Terrain Editor For Unity Section 13.jpg" draggable="false" />
</div>
</section>
<!---editor performance-->
<section>
<div class="txtwrap">
<h1>Adaptive Performance</h1>
<p>Atlas renders using a fixed resolution, which means that regardless of the size of your terrain, your <b>performance will stay the same</b>.</p>
<p>The preview box is split in 2 parts, on one side you have your total preview area which shows your whole terrain at a lower resolution and on the other side you have a smaller square which renders at full resolution.</p>
<p>Drag the full resolution square around to get a glimpse of what the terrain will look like.</p>
</div>
<div class="imgwrap">
<img class="gi noselect" src="Images/Atlas Next Gen Terrain Editor For Unity Section 4.jpg" draggable="false" />
</div>
</section>
<!--compatibility-->
<section style="background-color: black;">
<div class="txtwrap">
<h1>Compatibility and Runtime Performance</h1>
<p>We put a lot of effort in making sure Atlas does not go beyond its scope of terrain editing and most of all does not use any invasive techniques that would interfere with other tools. This makes it highly compatible and ensures that your experience is straight forward and to the point.</p>
<p>At the end of the day Atlas is simply a terrain editor, all of its workings are done in the editor and its final result is applied onto your terrain solution. This means performance wise it has <b>no impact</b> on your application or device compatibility. Atlas provides the tools you use to build your height and splatmaps with. The way this data is rendered is up to you or... most likely Unitiy's built-in terrain.</p>
<p>We really want this tool to feel like it belongs inside Unity, as if it comes from the Unity developers themselves. We hope that our take on a next gen terrain editor will be appreciated and look forward to support this tool and its users.<i class="fas fa-smile-beam" style="margin-left: 10px; color:white;"></i></p>
</div>
</section>
<!--discussion and mail-->
<section style="background-color: #000000;filter: invert(1);">
<img class="noselect mwl" src="Images/Made with love.png" draggable="false" style="border: none;
border: none;
position: absolute;
top: 50%;
transform: translateY(-50%) scale(0.75) translateX(-200px);
"/>
<h2 style="text-align: center; padding-bottom: 50px;">
<i class="fas fa-thumbtack blinker" style="margin-right: 10px; display: inline-block"></i>
<b class="blinker" style="margin-right: 10px; display: inline-block; animation-delay: 0.1s">discussion</b>
<div class="blinker" style="margin-right: 10px; display: inline-block; animation-delay: 0.2s">directed to</div>
<a
class="blinker"
style="margin-right: 10px; display: inline-block; animation-delay: 0.3s"
href="https://forum.unity.com/threads/Atlas-next-gen-terrain-editor-essential-tool-for-creating-beautiful-worlds.1212453/"
target="_blank"
>unity thread</a
>
</h2>
<div class="mailboxwrap">
<p style="text-align: center; margin-bottom: 30px">
<i class="fas fa-envelope" style="margin-right: 15px; color: white"></i>Subscribe to our newsletter for updates and news!
</p>
<div class="mailboxcontainer">
<div id="mailboxinput" class="mailbox">
<input id="mail" type="email" class="mailfield" name="email" autocomplete="on" width="0" required />
<input id="submit" type="button" class="mailsubmit" value="Notify me" />
</div>
<div id="mailboxerror" class="mailboxstate">
<b id="errortext" style="text-align: inherit; color: rgb(255, 0, 34)"></b>
</div>
<div id="mailboxsucces" class="mailboxstate">
<b style="text-align: inherit">You got it<i class="fas fa-laugh-beam" style="margin-left: 15px"></i></b>
</div>
</div>
</div>
</section>
<!--gallery-->
<section id="section3">
<div class="row noselect">
<div class="column">
<img
class="gi"
src="Images/Gallery/Atlas Next Gen Terrain Editor For Unity Gallery Image 1.jpg"
draggable="false"
/>
<img
class="gi"
src="Images/Gallery/Atlas Next Gen Terrain Editor For Unity Gallery Image 2.jpg"
draggable="false"
/>
<img
class="gi"
src="Images/Gallery/Atlas Next Gen Terrain Editor For Unity Gallery Image 3.jpg"
draggable="false"
/>
<img
class="gi"
src="Images/Gallery/Atlas Next Gen Terrain Editor For Unity Gallery Image 4.jpg"
draggable="false"
/>
<img
class="gi"
src="Images/Gallery/Atlas Next Gen Terrain Editor For Unity Gallery Image 5.jpg"
draggable="false"
/>
<img
class="gi"
src="Images/Gallery/Atlas Next Gen Terrain Editor For Unity Gallery Image 6.jpg"
draggable="false"
/>
</div>
<div class="column">
<img
class="gi"
src="Images/Gallery/Atlas Next Gen Terrain Editor For Unity Gallery Image 7.jpg"
draggable="false"
/>
<img
class="gi"
src="Images/Gallery/Atlas Next Gen Terrain Editor For Unity Gallery Image 8.jpg"
draggable="false"
/>
<img
class="gi"
src="Images/Gallery/Atlas Next Gen Terrain Editor For Unity Gallery Image 9.jpg"
draggable="false"
/>
<img
class="gi"
src="Images/Gallery/Atlas Next Gen Terrain Editor For Unity Gallery Image 10.jpg"
draggable="false"
/>
<img
class="gi"
src="Images/Gallery/Atlas Next Gen Terrain Editor For Unity Gallery Image 11.jpg"
draggable="false"
/>
<img
class="gi"
src="Images/Gallery/Atlas Next Gen Terrain Editor For Unity Gallery Image 12.jpg"
draggable="false"
/>
</div>
<div class="column">
<img
class="gi"
src="Images/Gallery/Atlas Next Gen Terrain Editor For Unity Gallery Image 13.jpg"
draggable="false"
/>
<img
class="gi"
src="Images/Gallery/Atlas Next Gen Terrain Editor For Unity Gallery Image 14.jpg"
draggable="false"
/>
<img
class="gi"
src="Images/Gallery/Atlas Next Gen Terrain Editor For Unity Gallery Image 15.jpg"
draggable="false"
/>
<img
class="gi"
src="Images/Gallery/Atlas Next Gen Terrain Editor For Unity Gallery Image 16.jpg"
draggable="false"
/>
<img
class="gi"
src="Images/Gallery/Atlas Next Gen Terrain Editor For Unity Gallery Image 17.jpg"
draggable="false"
/>
<img
class="gi"
src="Images/Gallery/Atlas Next Gen Terrain Editor For Unity Gallery Image 18.jpg"
draggable="false"
/>
</div>
<div class="column">
<img
class="gi"
src="Images/Gallery/Atlas Next Gen Terrain Editor For Unity Gallery Image 19.jpg"
draggable="false"
/>
<img
class="gi"
src="Images/Gallery/Atlas Next Gen Terrain Editor For Unity Gallery Image 20.jpg"
draggable="false"
/>
<img
class="gi"
src="Images/Gallery/Atlas Next Gen Terrain Editor For Unity Gallery Image 21.jpg"
draggable="false"
/>
<img
class="gi"
src="Images/Gallery/Atlas Next Gen Terrain Editor For Unity Gallery Image 22.jpg"
draggable="false"
/>
<img
class="gi"
src="Images/Gallery/Atlas Next Gen Terrain Editor For Unity Gallery Image 23.jpg"
draggable="false"
/>
<img
class="gi"
src="Images/Gallery/Atlas Next Gen Terrain Editor For Unity Gallery Image 24.jpg"
draggable="false"
/>
</div>
</div>
</section>
<footer>
<h5 class="noselect nocookie">
<i class="fas fa-cookie-bite" style="margin-right: 10px"></i>we do not use cookies
</h5>
<p style="color: white; letter-spacing: 2px; text-transform: uppercase;">Atlas Terrain Editor 2022</p>
<div class="socials noselect">
<a
class="social fab fa-discord"
href="https://discord.gg/ycFha5sffP"
target="_blank"
></a>