-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfaq.html
644 lines (643 loc) · 28.3 KB
/
faq.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
<!-- header.html -->
<!doctype html>
<html lang="en">
<head>
<title>Armory | 3D Game Engine</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="title" content="Armory | 3D Game Engine" />
<meta name="description" content="Armory is an open-source engine for creating 3D-enabled software." />
<meta name="author" content="Lubos Lenco & contributors">
<meta name="generator" content="Bootstrap 5.2">
<meta property="og:type" content="website" />
<meta property="og:url" content="https://armory3d.org/" />
<meta property="og:title" content="Armory | 3D Game Engine">
<meta property="og:description" content="Armory is an open-source engine for creating 3D-enabled software." />
<meta property="og:image" content="https://armory3d.org/git/img1.jpg" />
<meta property="twitter:card" content="summary_large_image" />
<meta property="twitter:url" content="https://armory3d.org/" />
<meta property="twitter:title" content="Armory | 3D Game Engine" />
<meta property="twitter:description" content="Armory is an open-source engine for creating 3D-enabled software." />
<meta property="twitter:image" content="https://armory3d.org/git/img1.jpg" />
<!-- Favicons -->
<link rel="icon" href="favicon.ico" sizes="32x32" type="image/x-icon">
<!-- Styles -->
<link rel="stylesheet" href="/css/bootstrap.min.css" crossorigin="anonymous">
<link rel="stylesheet" href="/css/bootstrap-icons.css" crossorigin="anonymous">
<style>
/* CSS Variables */
:root {
--a3d-secondary: rgb(17, 19, 21);
--a3d-thirdly: #e9ecef;
}
/* Dark Scrollbar */
::-webkit-scrollbar {width: 8px; height: 3px ;}
::-webkit-scrollbar-button {background-color: #666;}
::-webkit-scrollbar-track {background-color: #646464;}
::-webkit-scrollbar-track-piece { background-color: #000;}
::-webkit-scrollbar-thumb {height: 50px; background-color: #666; border-radius: 3px;}
::-webkit-scrollbar-corner {background-color: #646464;}
/* Solid Black */
.bg-dark, .text-bg-dark {
background-color: black !important;
}
/* Dark Grey */
.bg-secondary, .text-bg-secondary {
background-color: var(--a3d-secondary) !important;
}
.bg-thirdly, .text-bg-thirdly {
color: black;
background-color: var(--a3d-thirdly);
}
/* btn-danger */
.btn-danger {
--bs-btn-bg:#cf2b43 !important;
--bs-btn-border-radius: 0.375rem;
}
/* Navbar Buttons */
#brand > div > a,
#brand > div > div > a,
.navbar-nav > li > a {
display: block;
height: 64px;
padding: 22px 12px;
line-height: normal;
box-shadow: none;
-webkit-touch-callout: none;
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
#brand > div > div > a:hover,
#brand > div > div > a:active,
#brand > div > div > a:focus,
.navbar-nav > li:not(.desktopNavLogo) > a:hover,
.navbar-nav > li:not(.desktopNavLogo) > a:active,
.navbar-nav > li:not(.desktopNavLogo) > a:focus {
box-shadow: 0px -4px 0px var(--bs-danger) inset;
}
/* Navbar Download */
.navbar-nav > li > .btn {
border: none;
box-shadow: none !important;
}
#navRight li a {
padding: 22px !important;
}
/* Navbar Dropdowns */
.bg-dark.dropdown-menu li a:hover,
.bg-dark.dropdown-menu li a:active,
.bg-dark.dropdown-menu li a:focus,
.bg-dark.dropdown-menu li a:hover *,
.bg-dark.dropdown-menu li a:active *,
.bg-dark.dropdown-menu li a:focus * {
color: white !important;
background-color: var(--bs-danger);
}
.bg-light.dropdown-menu li a:hover,
.bg-light.dropdown-menu li a:active,
.bg-light.dropdown-menu li a:focus,
.bg-light.dropdown-menu li a:hover *,
.bg-light.dropdown-menu li a:active *,
.bg-light.dropdown-menu li a:focus * {
color: black !important;
background-color: var(--bs-danger);
}
.dropdown-menu li a {
padding: 8px 16px;
}
.dropdown:hover .dropdown-menu {
display: block;
}
.dropdown-toggle::after {
display: none !important;
}
/* Homepage Vignette */
header {
position: relative;
background-color: black;
width: 100%;
height: 75vh;
min-height: 25rem;
overflow: hidden;
}
header video, header img {
position: absolute;
top: 50%;
left: 50%;
min-width: 100%;
min-height: 100%;
width: auto;
height: auto;
-ms-transform: translateX(-50%) translateY(-50%);
-moz-transform: translateX(-50%) translateY(-50%);
-webkit-transform: translateX(-50%) translateY(-50%);
transform: translateX(-50%) translateY(-50%);
}
header .container {
position: relative;
}
header .splash-vignette {
position: absolute;
top: 0px;
left: 0px;
width: 100%;
height: 100%;
background: radial-gradient(transparent, black) rgba(0,0,0,0.5);
}
/* Homepage Buttons */
.btn-outline-light, .btn-outline-light * {
color: white !important;
border-color: rgba(255,255,255,0.25);
}
.btn-outline-light:hover {
background-color: transparent;
border-color: rgba(255,255,255,0.5);
}
/* Notes */
.notes_img {
max-width: 100%;
}
.nav-pills {
--bs-nav-pills-link-active-bg: #cf2b43 !important;
}
.nav-outline {
--bs-nav-pills-border-radius: 0.375rem !important;
}
.nav-outline .nav-link {
background: 0 0;
border: 0;
border-radius: var(--bs-nav-pills-border-radius);
}
.nav-outline .nav-link:disabled {
color: var(--bs-nav-link-disabled-color);
background-color: transparent;
border-color: transparent;
}
.nav-pills .nav-link.active,
.nav-pills .show > .nav-link,
.nav-outline .nav-link.active,
.nav-outline .show > .nav-link {
-webkit-touch-callout: none;
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
.nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
color: white !important;
}
.nav-outline .nav-link.active,
.nav-outline .show > .nav-link {
outline: 1px solid #cf2b43;
}
.nav-pills .nav-link, .nav-outline .nav-link {
-webkit-touch-callout: none;
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
/* FAQ Buttons */
.collapsing {
transition: none !important;
}
.accordion-button {
color: unset;
background-color: unset;
box-shadow: inset 0px calc(var(--bs-accordion-border-width) * -1) 0px rgba(108, 117, 125, 0.375);
transition: none !important;
}
.accordion-button:not(.collapsed) {
color: unset;
background-color: unset;
box-shadow: inset 0px calc(var(--bs-accordion-border-width) * -1) 0px rgba(108, 117, 125, 0.375) !important;
}
.accordion-button::after, .accordion-button:not(.collapsed)::after {
content: none;
background-image: none;
transition: none !important;
}
.accordion-button:focus {
border: none;
box-shadow: none;
}
/* Custom Responsive */
@media (min-width: 992px) {
.dropdown-menu {
right: auto !important;
left: 50% !important;
margin: 0px !important;
padding: 0px !important;
transform: translate(-50%, 0) !important;
}
.notes_img {
max-width: 50%;
}
.notes_container {
padding-right: 12rem !important;
padding-left: 12rem !important;
}
}
</style>
<script src="/js/bootstrap.bundle.min.js" crossorigin="anonymous"></script>
</head>
<!-- Navbar -->
<body class="text-bg-dark">
<nav id="brand" class="bg-dark navbar-dark navbar navbar-expand-lg px-lg-5 py-0">
<!-- Brand -->
<div class="d-flex align-items-center">
<a class="nav-link pe-0" href="/">
<img class="position-relative top-50 start-0 translate-middle-y" src="/img/Logo.png" width="48" height="48" alt="Armory3D Logo" />
</a>
<div class="dropdown">
<a class="fs-5 text-light fw-bold lh-1 nav-link dropdown-toggle me-2" role="button" data-bs-toggle="dropdown" aria-expanded="false">
ARMORY3D<i class="bi bi-chevron-down ms-1"></i>
</a>
<ul class="bg-dark rounded-0 dropdown-menu">
<li>
<a class="text-light dropdown-item" href="/">
<i class="text-light bi bi-house-door me-2"></i>Home
</a>
</li>
<li>
<a class="text-light dropdown-item" href="https://armorpaint.org">
<i class="text-light bi bi-brush me-2"></i>ArmorPaint
</a>
</li>
<li>
<a class="text-light dropdown-item" href="https://armorlab.org">
<i class="text-light bi bi-palette me-2"></i>ArmorLab
</a>
</li>
</ul>
</div>
</div>
<!-- Mobile Toggle -->
<button class="navbar navbar-dark navbar-toggler me-2" type="button" data-bs-toggle="collapse" data-bs-target="#navLinks" aria-expanded="false" aria-controls="navLinks" aria-label="Toggle navigation">
<i class="navbar-toggler-icon"></i>
</button>
<!-- Navbar Links -->
<div class="container-fluid px-0">
<div class="collapse navbar-collapse" id="navLinks">
<ul class="navbar-nav me-auto">
<!-- News -->
<li class="nav-item dropdown">
<a class="text-light nav-link dropdown-toggle" role="button" data-bs-toggle="dropdown" aria-expanded="false">
News<i class="text-light bi bi-chevron-down ms-1" style="font-size: 0.75rem;"></i>
</a>
<ul class="bg-dark rounded-0 dropdown-menu">
<li>
<a class="text-light dropdown-item" href="/notes">
<i class="text-light bi bi-megaphone me-2"></i>Release Notes
</a>
</li>
<li>
<a class="text-light dropdown-item" href="/news">
<i class="text-light bi bi-newspaper me-2"></i>News
</a>
</li>
</ul>
</li>
<!-- Features -->
<li class="nav-item">
<a class="text-light nav-link" href="/features">Features</a>
</li>
<!-- Showcase -->
<li class="nav-item dropdown">
<a class="text-light nav-link dropdown-toggle" role="button" data-bs-toggle="dropdown" aria-expanded="false">
Showcase<i class="text-light bi bi-chevron-down ms-1" style="font-size: 0.75rem;"></i>
</a>
<ul class="bg-dark rounded-0 dropdown-menu">
<li>
<a class="text-light dropdown-item" href="https://armory3d.github.io/armory_examples_browser/">
<i class="text-light bi bi-play-circle me-2"></i>Online Demos
</a>
</li>
<li>
<a class="text-light dropdown-item" href="https://github.com/armory3d/armory/wiki/Games-made-with-Armory">
<i class="text-light bi bi-controller me-2"></i>Community Games
</a>
</li>
</ul>
</li>
<!-- Learn -->
<li class="nav-item dropdown">
<a class="text-light nav-link dropdown-toggle" role="button" data-bs-toggle="dropdown" aria-expanded="false">
Learn<i class="text-light bi bi-chevron-down ms-1" style="font-size: 0.75rem;"></i>
</a>
<ul class="bg-dark rounded-0 dropdown-menu">
<li>
<a class="text-light dropdown-item" href="https://github.com/armory3d/armory/wiki">
<i class="text-light bi bi-book me-2"></i>Manual
</a>
</li>
<li>
<a class="text-light dropdown-item" href="https://api.armory3d.org">
<i class="text-light bi bi-code me-2"></i>API
</a>
</li>
<li>
<a class="text-light dropdown-item" href="https://github.com/armory3d/armory/wiki/community_tutorials">
<i class="text-light bi bi-youtube me-2"></i>
Tutorials
</a>
</li>
</ul>
</li>
<!-- FAQ -->
<li class="nav-item">
<a class="text-light nav-link" href="/faq">FAQ</a>
</li>
<!-- Community -->
<li class="nav-item">
<a class="text-light nav-link" href="/community">Community</a>
</li>
</ul>
<ul id="navRight" class="navbar-nav">
<!-- Documentation Search + Theme Toggle -->
<form class="d-flex align-items-center was-validated me-3" onsubmit="checkValidation(); return false;" method="post">
<button class="fw-bold btn" type="button" aria-expanded="false" onclick="toggleTheme(this);">
<i class="bi bi-sun text-light"></i>
</button>
<div id="formDocs" class="collapse">
<input required class="text-bg-light form-control" placeholder="Search forum" name="inputDocs" type="text" aria-label="Search">
</div>
<button class="fw-bold btn" type="button" onclick="docsToggle(this);" data-bs-toggle="collapse" data-bs-target="#formDocs" aria-expanded="false" aria-controls="formDocs">
<i class="bi bi-search text-light"></i>
</button>
</form>
<!-- Download -->
<li class="nav-item">
<a class="text-white fw-bold rounded-0 nav-link btn btn-danger mt-1 mt-lg-0 me-0 me-lg-2 p-3" href="/download">
<i class="bi bi-download me-2"></i>Download
</a>
</li>
</ul>
</div>
</div>
</nav>
<!-- $main.html -->
<main class="text-bg-dark">
<div id="accordionMain" class="container-lg p-lg-5 accordion">
<!-- FAQ 1 -->
<div class="text-bg-dark accordion-item border border-bottom-0 border-light border-opacity-25">
<h2 id="h1" class="accordion-header">
<button class="text-bg-secondary accordion-button d-flex collapsed" onclick="faqToggle(this);" type="button" data-bs-toggle="collapse" data-bs-target="#c1" aria-expanded="false" aria-controls="c1">
<i class="bi bi-plus-circle text-light me-3"></i>
<span class="w-100">Q1 - Is Armory3D still active?</span>
</button>
</h2>
<div id="c1" class="accordion-collapse collapse" aria-labelledby="h1" data-bs-parent="#accordionMain">
<div class="fs-5 text-bg-light lead accordion-body">
Yes! - It's quite <a class="fw-bold text-reset" href="/notes">active</a>!
</div>
</div>
</div>
<!-- FAQ 2 -->
<div class="text-bg-dark accordion-item border border-bottom-0 border-light border-opacity-25">
<h2 id="h2" class="accordion-header">
<button class="text-bg-secondary accordion-button d-flex collapsed" onclick="faqToggle(this);" type="button" data-bs-toggle="collapse" data-bs-target="#c2" aria-expanded="false" aria-controls="c2">
<i class="bi bi-plus-circle text-light me-3"></i>
<span class="w-100">Q2 - Does Armory3D have Blender 3.x builds?</span>
</button>
</h2>
<div id="c2" class="accordion-collapse collapse" aria-labelledby="h2" data-bs-parent="#accordionMain">
<div class="fs-5 text-bg-light lead accordion-body">
Yes - But it's still in alpha phase because
<a class="fw-bold text-reset" href="https://www.blender.org/download/lts">Blender LTS</a> 3.3x has yet to be released.<br />
However, you can download Armory <a class="fw-bold text-reset" href="https://github.com/armory3d/armory/tree/blender-3.3-lts">experimental builds</a>
that are compatible with latest Blender <a class="fw-bold text-reset" href="https://builder.blender.org/download/daily">daily builds</a>, that are built on Blender 3.x, non-LTS source.
</div>
</div>
</div>
<!-- FAQ 3 -->
<div class="text-bg-dark accordion-item border border-bottom-0 border-light border-opacity-25">
<h2 id="h3" class="accordion-header">
<button class="text-bg-secondary accordion-button d-flex collapsed" onclick="faqToggle(this);" type="button" data-bs-toggle="collapse" data-bs-target="#c3" aria-expanded="false" aria-controls="c3">
<i class="bi bi-plus-circle text-light me-3"></i>
<span class="w-100">Q3 - I have a bug and cannot run my game due to error(s).</span>
</button>
</h2>
<div id="c3" class="accordion-collapse collapse" aria-labelledby="h3" data-bs-parent="#accordionMain">
<div class="fs-5 text-bg-light lead accordion-body">
Please follow basic troubleshooting steps from
<a class="fw-bold text-reset" href="https://github.com/armory3d/armory/wiki/troubleshooting">here</a>.<br />
If error(s) still persist, please open an
<a class="fw-bold text-reset" href="https://github.com/armory3d/armory/issues">issue report</a>
or ask the community for help at any of the Armory-related community platforms.
</div>
</div>
</div>
<!-- FAQ 4 -->
<div class="text-bg-dark accordion-item border border-bottom-0 border-light border-opacity-25">
<h2 id="h4" class="accordion-header">
<button class="text-bg-secondary accordion-button d-flex collapsed" onclick="faqToggle(this);" type="button" data-bs-toggle="collapse" data-bs-target="#c4" aria-expanded="false" aria-controls="c4">
<i class="bi bi-plus-circle text-light me-3"></i>
<span class="w-100">Q4 - What does a certain logic node do, exactly?</span>
</button>
</h2>
<div id="c4" class="accordion-collapse collapse" aria-labelledby="h4" data-bs-parent="#accordionMain">
<div class="fs-5 text-bg-light lead accordion-body">
The official Armory manual has a full list of logic node
<a class="fw-bold text-reset" href="https://github.com/armory3d/armory/wiki/reference">references</a>.<br />
The references contain detailed descriptions of what each logic node is capable of and what features it comprises of.
</div>
</div>
</div>
<!-- FAQ 5 -->
<div class="text-bg-dark accordion-item border border-light border-opacity-25">
<h2 id="h5" class="accordion-header">
<button class="text-bg-secondary accordion-button d-flex collapsed" onclick="faqToggle(this);" type="button" data-bs-toggle="collapse" data-bs-target="#c5" aria-expanded="false" aria-controls="c5">
<i class="bi bi-plus-circle text-light me-3"></i>
<span class="w-100">Q5 - How good is Armory3D compared to UPBGE?</span>
</button>
</h2>
<div id="c5" class="accordion-collapse collapse" aria-labelledby="h5" data-bs-parent="#accordionMain">
<div class="fs-5 text-bg-light lead accordion-body">
To avoid bias, you'll need to conclude that on your own.<br />
Here is a <a class="fw-bold text-reset" href="https://github.com/rpaladin/armory3d-vs-upbge#readme">list</a>
of pros and cons of both game-engines that is maintained by the community.<br />
Feel free to open a <a class="fw-bold text-reset" href="https://github.com/rpaladin/armory3d-vs-upbge/pulls">pull request</a>
if you feel additional information could be added to the list.
</div>
</div>
</div>
<!-- FAQ 6 -->
<div class="text-bg-dark accordion-item border border-light border-opacity-25">
<h2 id="h6" class="accordion-header">
<button class="text-bg-secondary accordion-button d-flex collapsed" onclick="faqToggle(this);" type="button" data-bs-toggle="collapse" data-bs-target="#c6" aria-expanded="false" aria-controls="c6">
<i class="bi bi-plus-circle text-light me-3"></i>
<span class="w-100">Q6. How can I contribute to Armory3D development?</span>
</button>
</h2>
<div id="c6" class="accordion-collapse collapse" aria-labelledby="h6" data-bs-parent="#accordionMain">
<div class="fs-5 text-bg-light lead accordion-body">
See <a class="fw-bold text-reset" href="/download#contribute">here</a> on ways you can contribute to Armory. Thank you for being interested!
</div>
</div>
</div>
</div>
</main>
<script>
function faqToggle(e) {
// Reset Un-collapsed
const a = document.getElementsByClassName("accordion-button");
for (let i=0; i<a.length; i++) {
if (a[i].children[0].classList.contains("bi-dash-circle")) {
a[i].children[0].classList.replace("bi-dash-circle", "bi-plus-circle");
}
}
// Collapse Icons Only For Active
if (!e.classList.contains("collapsed")) {
e.children[0].classList.replace("bi-plus-circle", "bi-dash-circle");
} else {
e.children[0].classList.replace("bi-dash-circle", "bi-plus-circle");
}
}
</script>
<!-- footer.html -->
<footer class="text-bg-dark">
<div class="vh-100 container py-4 py-lg-5 px-4 px-lg-3">
<div class="row">
<!-- Development -->
<div class="col-6 col-lg-2">
<h5>DEVELOPMENT</h5>
<ul class="nav flex-column">
<li class="nav-item mb-2"><a class="nav-link p-0 link-secondary" href="/notes">Release Notes</a></li>
<li class="nav-item mb-2"><a class="nav-link p-0 link-secondary" href="https://github.com/armory3d/armory">GitHub</a></li>
<li class="nav-item mb-2"><a class="nav-link p-0 link-secondary" href="https://github.com/armory3d/armory/issues">Tracker</a></li>
<li class="nav-item mb-2"><a class="nav-link p-0 link-secondary" href="https://github.com/armory3d/armory/wiki/contribute">Contribute</a></li>
</ul>
</div>
<!-- Credits -->
<div class="col-6 col-lg-2">
<h5>CREDITS</h5>
<ul class="nav flex-column">
<li class="nav-item mb-2"><a class="nav-link p-0 link-secondary" href="http://kode.tech">Kode</a></li>
<li class="nav-item mb-2"><a class="nav-link p-0 link-secondary" href="https://blender.org">Blender</a></li>
<li class="nav-item mb-2"><a class="nav-link p-0 link-secondary" href="https://github.com/armory3d/armory/graphs/contributors">Contributors</a></li>
</ul>
</div>
<!-- Contact -->
<div class="col-6 col-lg-2">
<h5>CONTACT</h5>
<ul class="nav flex-column">
<li class="nav-item mb-2"><a class="nav-link p-0 link-secondary" href="/community">Community</a></li>
<script>
var user_name = "lubos";
var host_name = "armory3d.org";
document.write("<li class='nav-item mb-2'><a class='nav-link p-0 link-secondary' href='" + "mail" + "to:" + user_name + "@" + host_name + "'>Email</a></li>");
</script>
</ul>
</div>
<!-- Copyright -->
<div class="col-6 col-lg-3">
<ul class="nav flex-column">
<li class="nav-item mb-2">© 2022 Lubos Lenco & contributors</li>
<li class="nav-item mb-2"><a class="nav-link p-0 link-secondary" href="https://github.com/armory3d/armory/blob/main/LICENSE.md#the-zliblibpng-license">Armory3D License</a></li>
<li class="nav-item mb-2"><a class="nav-link p-0 link-secondary" href="https://github.com/armory3d/armory/blob/main/blender/arm/LICENSE.md">Blender License</a></li>
</ul>
</div>
</div>
</div>
</footer>
<script>
// Theme Toggle
function toggleTheme(t) {
const e = document.querySelectorAll("*");
for (let i=0; i<e.length; i++) {
// bg-light & bg-dark & bg-secondary & bg-thirdly
if (e[i].classList.contains("bg-light")) {
e[i].classList.replace("bg-light", "bg-dark");
} else if (e[i].classList.contains("bg-dark")) {
e[i].classList.replace("bg-dark", "bg-light");
} else if (e[i].classList.contains("bg-secondary")) {
e[i].classList.replace("bg-secondary", "bg-thirdly");
} else if (e[i].classList.contains("bg-thirdly")) {
e[i].classList.replace("bg-thirdly", "bg-secondary");
}
// text-light & text-dark & text-white-50 & text-muted
if (e[i].classList.contains("text-light")) {
e[i].classList.replace("text-light", "text-dark");
} else if (e[i].classList.contains("text-dark")) {
e[i].classList.replace("text-dark", "text-light");
} else if (e[i].classList.contains("text-white-50")) {
e[i].classList.replace("text-white-50", "text-muted");
} else if (e[i].classList.contains("text-muted")) {
e[i].classList.replace("text-muted", "text-white-50");
}
// navbar-light & navbar-dark
if (e[i].classList.contains("navbar-light")) {
e[i].classList.replace("navbar-light", "navbar-dark");
} else if (e[i].classList.contains("navbar-dark")) {
e[i].classList.replace("navbar-dark", "navbar-light");
}
// text-bg-light & text-bg-dark & text-bg-secondary & text-bg-thirdly
if (e[i].classList.contains("text-bg-light")) {
e[i].classList.replace("text-bg-light", "text-bg-dark");
} else if (e[i].classList.contains("text-bg-dark")) {
e[i].classList.replace("text-bg-dark", "text-bg-light");
} else if (e[i].classList.contains("text-bg-secondary")) {
e[i].classList.replace("text-bg-secondary", "text-bg-thirdly");
} else if (e[i].classList.contains("text-bg-thirdly")) {
e[i].classList.replace("text-bg-thirdly", "text-bg-secondary");
}
// border-light & border-dark
if (e[i].classList.contains("border-light")) {
e[i].classList.replace("border-light", "border-dark");
} else if (e[i].classList.contains("border-dark")) {
e[i].classList.replace("border-dark", "border-light");
}
}
// bi-sun & bi-moon-stars
if (t.children[0].classList.contains("bi-sun")) {
t.children[0].classList.replace("bi-sun", "bi-moon-stars");
} else if (t.children[0].classList.contains("bi-moon-stars")) {
t.children[0].classList.replace("bi-moon-stars", "bi-sun");
}
}
f = document.getElementById("formDocs");
// Docs Search Toggle - Search/Close Icons
function docsToggle(e) {
if (!e.classList.contains("collapsed")) {
e.children[0].classList.replace("bi-search", "bi-x-lg");
} else {
e.children[0].classList.replace("bi-x-lg", "bi-search");
}
}
// Docs Search - Form Reset
function formReset() {
formDocs.classList.remove("show");
formDocs.parentElement.children[2].classList.toggle("collapsed");
let a = formDocs.parentElement.children[2].getAttribute("aria-expanded");
a = "false";
formDocs.parentElement.children[2].setAttribute("aria-expanded", a);
f.children[0].value = "";
}
// Docs Search - Close Control
window.addEventListener("keydown", e => {
if (e.key === "Escape") {
formReset();
}
});
// Docs Search - Search Destination
function checkValidation() {
if (f.children[0].value.length >= 3) {
location.href = "https://forums.armory3d.org/search?q=" + String(f.children[0].value);
} else {
alert("Search terms require minimum of three letters.");
}
}
// Docs Search - Init Undo
window.addEventListener("pageshow", function() {
formReset();
});
</script>
</body>
</html>