-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
765 lines (756 loc) · 39.1 KB
/
index.html
File metadata and controls
765 lines (756 loc) · 39.1 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
<!DOCTYPE html>
<html lang="en">
<!-- WARNING: Made by a backend developer. Read at your own risk. -->
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>KTX: Kotlin support for LibGDX applications</title>
<meta name="description" content="Kotlin extensions for LibGDX game framework.">
<meta name="robots" content="index, follow">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="css/bootstrap.min.css">
<link rel="stylesheet" href="css/highlight.github.css">
<link rel="stylesheet" href="css/style.css">
<link rel="icon" href="img/ktx-logo.ico">
</head>
<body data-spy="scroll" data-target="#header-navbar-collapse" data-offset="100">
<nav id="navbar" class="navbar navbar-default navbar-fixed-top">
<div class="container-fluid">
<div class="navbar-header">
<a class="navbar-brand scroll-top" href="#">
<img class="logo-tiny" src="img/ktx-logo.svg" alt="KTX">
</a>
<button type="button" class="navbar-toggle collapsed navbar-left" data-toggle="collapse"
data-target="#header-navbar-collapse" aria-expanded="false">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
</div>
<div class="collapse navbar-collapse" id="header-navbar-collapse">
<ul class="nav navbar-nav navbar-right">
<li class="github-link">
<iframe src="https://ghbtns.com/github-btn.html?user=libktx&repo=ktx&type=star&count=true"
frameborder="0" scrolling="0" width="100" height="20" title="GitHub">
</iframe>
</li>
<li><a href="#about-section">About</a></li>
<li><a href="#modules-section">Modules</a></li>
<li><a href="#dependencies-section">Dependencies</a></li>
<li><a href="#showcase-section">Showcase</a></li>
</ul>
</div>
</div>
</nav>
<section id="logo-section" class="container-fluid">
<div class="row">
<img class="col-xs-12 logo-background-right" src="img/logo/logo-background-right.svg" alt="">
</div>
<div class="row">
<h1>
<img class="logo" src="img/ktx-logo.svg" alt="KTX">
</h1>
</div>
<div class="row">
<img class="col-xs-12 logo-background-left" src="img/logo/logo-background-left.svg" alt="">
</div>
</section>
<section id="about-section" class="container-fluid">
<div class="about-container col-md-8 col-md-offset-2 col-sm-12">
<h1 class="headline">
<a class="kotlin-link" href="https://kotlinlang.org/">Kotlin</a> meets
<a class="libgdx-link" href="https://libgdx.com/">libGDX</a>
</h1>
<div class="row">
<div class="about-paragraph col-sm-6 col-xs-12">
<div class="image-border">
<img alt="" class="about-icon" src="img/about/kotlin-logo.svg">
</div>
<div class="about-text">
<h4>Written in <a href="https://kotlinlang.org/">Kotlin</a></h4>
<p>
Utilizes language features like <a href="https://github.com/libktx/ktx/tree/master/async">coroutines</a>,
<a href="https://github.com/libktx/ktx/tree/master/scene2d">type-safe builders</a> and
<a href="https://github.com/libktx/ktx/tree/master/math">operator overloading</a> to ease game
development.
</p>
</div>
</div>
<div class="about-paragraph col-sm-6 col-xs-12">
<div class="image-border">
<img alt="" class="about-icon" src="img/about/libgdx-logo.svg">
</div>
<div class="about-text">
<h4>Based on <a href="https://libgdx.com/">libGDX</a></h4>
<p>
Extends a robust multi-platform game framework with highly modular and minimally opinionated
<a href="https://kotlinlang.org/">Kotlin</a> utilities.
</p>
</div>
</div>
</div>
<div class="row">
<div class="about-paragraph col-sm-6 col-xs-12">
<div class="image-border">
<img alt="" class="about-icon" src="img/about/multi-platform-icon.svg">
</div>
<div class="about-text">
<h4>Multi-platform</h4>
<p>
<strong>KTX</strong> can be used to create <strong>desktop</strong>, <strong>Android</strong>
and <strong>iOS</strong> applications.
Supports <a href="https://github.com/jtransc/gdx-backend-jtransc">other</a>
<a href="https://github.com/xpenatan/gdx-dragome-backend">platforms</a> through third-party
libraries.
</p>
</div>
</div>
<div class="about-paragraph col-sm-6 col-xs-12">
<div class="image-border">
<img alt="" class="about-icon" src="img/about/shield-icon.svg">
</div>
<div class="about-text">
<h4>Safe</h4>
<p>
Our main goals are usability and stability. Comprehensive test suites are written for
<em>every</em> <strong>KTX</strong> feature.
</p>
</div>
</div>
</div>
<div class="row">
<div class="about-paragraph col-sm-6 col-xs-12">
<div class="image-border">
<img alt="" class="about-icon" src="img/about/documentation-icon.svg">
</div>
<div class="about-text">
<h4>Well documented</h4>
<p>
Each module is documented by a guide with a list of its features and extensions, as well as
API usage examples.
</p>
</div>
</div>
<div class="about-paragraph col-sm-6 col-xs-12">
<div class="image-border">
<img alt="" class="about-icon" src="img/about/github-logo.svg">
</div>
<div class="about-text">
<h4>Open</h4>
<p>
<strong>KTX</strong> sources are available on <a href="https://github.com/libktx/ktx">GitHub</a>
under <a href="https://creativecommons.org/publicdomain/zero/1.0/">CC0</a> license. We are open
to contributions.
</p>
</div>
</div>
</div>
</div>
</section>
<section id="modules-section" class="container-fluid">
<div class="modules-container col-md-8 col-md-offset-2 col-sm-12">
<h1 class="headline">
<strong>KTX</strong> modules
</h1>
<div class="row flex-row">
<div class="module-paragraph col-sm-4 col-xs-6">
<div class="image-border">
<a class="module-link" data-module="ktx-actors" href="#dependencies-section">
<img alt="" class="module-icon" src="img/modules/actors.png">
</a>
</div>
<div class="module-text">
<span class="module-title">
<a href="https://github.com/libktx/ktx/tree/master/actors">ktx-actors</a>
</span>
<span class="glyphicon icon-orange glyphicon-minus"></span>
Extensions of <a href="https://libgdx.com/wiki/graphics/2d/scene2d/scene2d">Scene2D</a> widgets.
</div>
</div>
<div class="module-paragraph col-sm-4 col-xs-6">
<div class="image-border">
<a class="module-link" data-module="ktx-app" href="#dependencies-section">
<img alt="" class="module-icon" src="img/modules/app.png">
</a>
</div>
<div class="module-text">
<span class="module-title">
<a href="https://github.com/libktx/ktx/tree/master/app">ktx-app</a>
</span>
<span class="glyphicon icon-orange glyphicon-minus"></span>
Application <a href="https://libgdx.com/wiki/app/the-life-cycle">lifecycle</a> management
utilities.
</div>
</div>
<div class="module-paragraph col-sm-4 col-xs-6">
<div class="image-border">
<a class="module-link" data-module="ktx-artemis" href="#dependencies-section">
<img alt="" class="module-icon" src="img/modules/artemis.png">
</a>
</div>
<div class="module-text">
<span class="module-title">
<a href="https://github.com/libktx/ktx/tree/master/artemis">ktx-artemis</a>
</span>
<span class="glyphicon icon-orange glyphicon-minus"></span>
<a href="https://github.com/junkdog/artemis-odb">Artemis-odb</a> entity-component system utilities.
</div>
</div>
<div class="module-paragraph col-sm-4 col-xs-6">
<div class="image-border">
<a class="module-link" data-module="ktx-ashley" href="#dependencies-section">
<img alt="" class="module-icon" src="img/modules/ashley.png">
</a>
</div>
<div class="module-text">
<span class="module-title">
<a href="https://github.com/libktx/ktx/tree/master/ashley">ktx-ashley</a>
</span>
<span class="glyphicon icon-orange glyphicon-minus"></span>
<a href="https://github.com/libgdx/ashley">Ashley</a> entity-component system utilities.
</div>
</div>
<div class="module-paragraph col-sm-4 col-xs-6">
<div class="image-border">
<a class="module-link" data-module="ktx-assets" href="#dependencies-section">
<img alt="" class="module-icon" src="img/modules/assets.png">
</a>
</div>
<div class="module-text">
<span class="module-title">
<a href="https://github.com/libktx/ktx/tree/master/assets">ktx-assets</a>
</span>
<span class="glyphicon icon-orange glyphicon-minus"></span>
<a href="https://libgdx.com/wiki/managing-your-assets">Assets</a> handling
extensions.
</div>
</div>
<div class="module-paragraph col-sm-4 col-xs-6">
<div class="image-border">
<a class="module-link" data-module="ktx-assets-async" href="#dependencies-section">
<img alt="" class="module-icon" src="img/modules/assets-async.png">
</a>
</div>
<div class="module-text">
<span class="module-title">
<a href="https://github.com/libktx/ktx/tree/master/assets-async">ktx-assets-async</a>
</span>
<span class="glyphicon icon-orange glyphicon-minus"></span>
Asset loading via coroutines.
</div>
</div>
<div class="module-paragraph col-sm-4 col-xs-6">
<div class="image-border">
<a class="module-link" data-module="ktx-async" href="#dependencies-section">
<img alt="" class="module-icon" src="img/modules/async.png">
</a>
</div>
<div class="module-text">
<span class="module-title">
<a href="https://github.com/libktx/ktx/tree/master/async">ktx-async</a>
</span>
<span class="glyphicon icon-orange glyphicon-minus"></span>
<a href="https://kotlinlang.org/docs/reference/coroutines.html">Coroutines</a> context using
libGDX <a href="https://libgdx.com/wiki/app/threading">threading</a> model.
</div>
</div>
<div class="module-paragraph col-sm-4 col-xs-6">
<div class="image-border">
<a class="module-link" data-module="ktx-box2d" href="#dependencies-section">
<img alt="" class="module-icon" src="img/modules/box2d.png">
</a>
</div>
<div class="module-text">
<span class="module-title">
<a href="https://github.com/libktx/ktx/tree/master/box2d">ktx-box2d</a>
</span>
<span class="glyphicon icon-orange glyphicon-minus"></span>
Type-safe builders and utilities for <a href="https://libgdx.com/wiki/extensions/physics/box2d">Box2D</a>
bodies, fixtures and joints.
</div>
</div>
<div class="module-paragraph col-sm-4 col-xs-6">
<div class="image-border">
<a class="module-link" data-module="ktx-collections" href="#dependencies-section">
<img alt="" class="module-icon" src="img/modules/collections.png">
</a>
</div>
<div class="module-text">
<span class="module-title">
<a href="https://github.com/libktx/ktx/tree/master/collections">ktx-collections</a>
</span>
<span class="glyphicon icon-orange glyphicon-minus"></span>
Utilities for libGDX memory efficient
<a href="https://libgdx.com/wiki/utils/collections">collections</a>.
</div>
</div>
<div class="module-paragraph col-sm-4 col-xs-6">
<div class="image-border">
<a class="module-link" data-module="ktx-freetype" href="#dependencies-section">
<img alt="" class="module-icon" src="img/modules/freetype.png">
</a>
</div>
<div class="module-text">
<span class="module-title">
<a href="https://github.com/libktx/ktx/tree/master/freetype">ktx-freetype</a>
</span>
<span class="glyphicon icon-orange glyphicon-minus"></span>
Improvements of <a href="https://libgdx.com/wiki/extensions/gdx-freetype">TTF/OTF fonts</a>
loading API.
</div>
</div>
<div class="module-paragraph col-sm-4 col-xs-6">
<div class="image-border">
<a class="module-link" data-module="ktx-freetype-async" href="#dependencies-section">
<img alt="" class="module-icon" src="img/modules/freetype-async.png">
</a>
</div>
<div class="module-text">
<span class="module-title">
<a href="https://github.com/libktx/ktx/tree/master/freetype-async">ktx-freetype-async</a>
</span>
<span class="glyphicon icon-orange glyphicon-minus"></span>
TTF/OTF fonts loading via coroutines.
</div>
</div>
<div class="module-paragraph col-sm-4 col-xs-6">
<div class="image-border">
<a class="module-link" data-module="ktx-graphics" href="#dependencies-section">
<img alt="" class="module-icon" src="img/modules/graphics.png">
</a>
</div>
<div class="module-text">
<span class="module-title">
<a href="https://github.com/libktx/ktx/tree/master/graphics">ktx-graphics</a>
</span>
<span class="glyphicon icon-orange glyphicon-minus"></span>
<a href="https://libgdx.com/wiki/graphics/graphics">Graphics</a> and rendering tools utilities.
</div>
</div>
<div class="module-paragraph col-sm-4 col-xs-6">
<div class="image-border">
<a class="module-link" data-module="ktx-i18n" href="#dependencies-section">
<img alt="" class="module-icon" src="img/modules/i18n.png">
</a>
</div>
<div class="module-text">
<span class="module-title">
<a href="https://github.com/libktx/ktx/tree/master/i18n">ktx-i18n</a>
</span>
<span class="glyphicon icon-orange glyphicon-minus"></span>
<a href="https://libgdx.com/wiki/internationalization-and-localization">Internationalization</a>
API improvements.
</div>
</div>
<div class="module-paragraph col-sm-4 col-xs-6">
<div class="image-border">
<a class="module-link" data-module="ktx-inject" href="#dependencies-section">
<img alt="" class="module-icon" src="img/modules/inject.png">
</a>
</div>
<div class="module-text">
<span class="module-title">
<a href="https://github.com/libktx/ktx/tree/master/inject">ktx-inject</a>
</span>
<span class="glyphicon icon-orange glyphicon-minus"></span>
Lightweight, simplistic dependency injection without reflection.
</div>
</div>
<div class="module-paragraph col-sm-4 col-xs-6">
<div class="image-border">
<a class="module-link" data-module="ktx-json" href="#dependencies-section">
<img alt="" class="module-icon" src="img/modules/json.png">
</a>
</div>
<div class="module-text">
<span class="module-title">
<a href="https://github.com/libktx/ktx/tree/master/json">ktx-json</a>
</span>
<span class="glyphicon icon-orange glyphicon-minus"></span>
Utilities for libGDX <a href="https://libgdx.com/wiki/utils/reading-and-writing-json">JSON</a>
serialization API.
</div>
</div>
<div class="module-paragraph col-sm-4 col-xs-6">
<div class="image-border">
<a class="module-link" data-module="ktx-log" href="#dependencies-section">
<img alt="" class="module-icon" src="img/modules/log.png">
</a>
</div>
<div class="module-text">
<span class="module-title">
<a href="https://github.com/libktx/ktx/tree/master/log">ktx-log</a>
</span>
<span class="glyphicon icon-orange glyphicon-minus"></span>
Reduced runtime overhead <a href="https://libgdx.com/wiki/app/logging">logging</a>.
</div>
</div>
<div class="module-paragraph col-sm-4 col-xs-6">
<div class="image-border">
<a class="module-link" data-module="ktx-math" href="#dependencies-section">
<img alt="" class="module-icon" src="img/modules/math.png">
</a>
</div>
<div class="module-text">
<span class="module-title">
<a href="https://github.com/libktx/ktx/tree/master/math">ktx-math</a>
</span>
<span class="glyphicon icon-orange glyphicon-minus"></span>
<a href="https://libgdx.com/wiki/math-utils/math-utilities">Math</a> extensions and operator
overloads.
</div>
</div>
<div class="module-paragraph col-sm-4 col-xs-6">
<div class="image-border">
<a class="module-link" data-module="ktx-preferences" href="#dependencies-section">
<img alt="" class="module-icon" src="img/modules/preferences.png">
</a>
</div>
<div class="module-text">
<span class="module-title">
<a href="https://github.com/libktx/ktx/tree/master/preferences">ktx-preferences</a>
</span>
<span class="glyphicon icon-orange glyphicon-minus"></span>
Application preferences management.
</div>
</div>
<div class="module-paragraph col-sm-4 col-xs-6">
<div class="image-border">
<a class="module-link" data-module="ktx-reflect" href="#dependencies-section">
<img alt="" class="module-icon" src="img/modules/reflect.png">
</a>
</div>
<div class="module-text">
<span class="module-title">
<a href="https://github.com/libktx/ktx/tree/master/reflect">ktx-reflect</a>
</span>
<span class="glyphicon icon-orange glyphicon-minus"></span>
Kotlin reflection utilities.
</div>
</div>
<div class="module-paragraph col-sm-4 col-xs-6">
<div class="image-border">
<a class="module-link" data-module="ktx-scene2d" href="#dependencies-section">
<img alt="" class="module-icon" src="img/modules/scene2d.png">
</a>
</div>
<div class="module-text">
<span class="module-title">
<a href="https://github.com/libktx/ktx/tree/master/scene2d">ktx-scene2d</a>
</span>
<span class="glyphicon icon-orange glyphicon-minus"></span>
Type-safe <a href="https://libgdx.com/wiki/graphics/2d/scene2d/scene2d-ui">Scene2D</a> widget builders.
</div>
</div>
<div class="module-paragraph col-sm-4 col-xs-6">
<div class="image-border">
<a class="module-link" data-module="ktx-script" href="#dependencies-section">
<img alt="" class="module-icon" src="img/modules/script.png">
</a>
</div>
<div class="module-text">
<span class="module-title">
<a href="https://github.com/libktx/ktx/tree/master/script">ktx-script</a>
</span>
<span class="glyphicon icon-orange glyphicon-minus"></span>
A Kotlin scripting engine.
</div>
</div>
<div class="module-paragraph col-sm-4 col-xs-6">
<div class="image-border">
<a class="module-link" data-module="ktx-style" href="#dependencies-section">
<img alt="" class="module-icon" src="img/modules/style.png">
</a>
</div>
<div class="module-text">
<span class="module-title">
<a href="https://github.com/libktx/ktx/tree/master/style">ktx-style</a>
</span>
<span class="glyphicon icon-orange glyphicon-minus"></span>
Type-safe Scene2D <a href="https://libgdx.com/wiki/graphics/2d/scene2d/skin">styles</a> builders.
</div>
</div>
<div class="module-paragraph col-sm-4 col-xs-6">
<div class="image-border">
<a class="module-link" data-module="ktx-tiled" href="#dependencies-section">
<img alt="" class="module-icon" src="img/modules/tiled.png">
</a>
</div>
<div class="module-text">
<span class="module-title">
<a href="https://github.com/libktx/ktx/tree/master/tiled">ktx-tiled</a>
</span>
<span class="glyphicon icon-orange glyphicon-minus"></span>
<a href="https://www.mapeditor.org/">Tiled</a> map editor utilities.
</div>
</div>
<div class="module-paragraph col-sm-4 col-xs-6">
<div class="image-border">
<a class="module-link" data-module="ktx-vis" href="#dependencies-section">
<img alt="" class="module-icon" src="img/modules/vis.png">
</a>
</div>
<div class="module-text">
<span class="module-title">
<a href="https://github.com/libktx/ktx/tree/master/vis">ktx-vis</a>
</span>
<span class="glyphicon icon-orange glyphicon-minus"></span>
Type-safe <a href="https://github.com/kotcrab/vis-ui">VisUI</a> widget builders.
</div>
</div>
<div class="module-paragraph col-sm-offset-4 col-sm-4 col-xs-offset-3 col-xs-6">
<div class="image-border">
<a class="module-link" data-module="ktx-vis-style" href="#dependencies-section">
<img alt="" class="module-icon" src="img/modules/vis-style.png">
</a>
</div>
<div class="module-text">
<span class="module-title">
<a href="https://github.com/libktx/ktx/tree/master/vis-style">ktx-vis-style</a>
</span>
<span class="glyphicon icon-orange glyphicon-minus"></span>
Type-safe <a href="https://github.com/kotcrab/vis-ui">VisUI</a> styles builders.
</div>
</div>
</div>
</div>
</section>
<section id="dependencies-section" class="container-fluid">
<div class="dependencies-container col-md-8 col-md-offset-2 col-sm-12">
<h1 class="headline">
Try <strong>KTX</strong>
</h1>
<div class="dependencies-prompt">
All <strong>KTX</strong> libraries are available through
<a href="https://search.maven.org/#search%7Cga%7C1%7Cg%3A%22io.github.libktx%22">Maven Central</a>.
</div>
<div class="dependencies-code-container">
<ul class="nav nav-tabs">
<li id="dependency-gradle" class="active"><a>Gradle</a></li>
<li id="dependency-gradle-kotlin"><a>Gradle Kotlin DSL</a></li>
<li id="dependency-maven"><a>Maven</a></li>
<li class="dropdown">
<a class="dropdown-toggle" data-toggle="dropdown">Module<span class="caret"></span></a>
<ul id="module-select" class="dropdown-menu">
<li><a>ktx-actors</a></li>
<li><a>ktx-app</a></li>
<li><a>ktx-artemis</a></li>
<li><a>ktx-ashley</a></li>
<li><a>ktx-assets</a></li>
<li><a>ktx-assets-async</a></li>
<li><a>ktx-async</a></li>
<li><a>ktx-box2d</a></li>
<li><a>ktx-collections</a></li>
<li><a>ktx-freetype</a></li>
<li><a>ktx-freetype-async</a></li>
<li><a>ktx-graphics</a></li>
<li><a>ktx-i18n</a></li>
<li><a>ktx-inject</a></li>
<li><a>ktx-json</a></li>
<li><a>ktx-log</a></li>
<li><a>ktx-math</a></li>
<li><a>ktx-preferences</a></li>
<li><a>ktx-reflect</a></li>
<li><a>ktx-scene2d</a></li>
<li><a>ktx-script</a></li>
<li><a>ktx-style</a></li>
<li><a>ktx-tiled</a></li>
<li><a>ktx-vis</a></li>
<li><a>ktx-vis-style</a></li>
</ul>
</li>
</ul>
<pre><code id="dependency-code" class="dependency-code col-xs-12"></code></pre>
</div>
<div class="dependencies-links">
<a href="https://github.com/libktx/ktx/releases">Releases</a>
<span class="glyphicon icon-blue glyphicon-minus"></span>
<a href="https://github.com/libktx/ktx/issues">Issues</a>
<span class="glyphicon icon-blue glyphicon-minus"></span>
<a href="https://github.com/libktx/ktx/discussions">Forum</a>
</div>
</div>
</section>
<section id="showcase-section" class="container-fluid">
<div class="showcase-container col-md-8 col-md-offset-2 col-sm-12">
<h1 class="headline">
Made with <strong>KTX</strong>
</h1>
<div class="row">
<div class="showcase-entry col-sm-6 col-xs-12">
<img class="showcase-img img-circle" src="img/showcase/tetrocrate.png" alt="">
<h2>TetroCrate</h2>
<span>
<a href="https://play.google.com/store/apps/details?id=com.beyondinfinity.tetrocrate">Google Play</a>
<span class="glyphicon icon-blue glyphicon-minus"></span>
<a href="https://itunes.apple.com/app/id1113468049">App Store</a>
<span class="glyphicon icon-blue glyphicon-minus"></span>
<a href="https://facebook.com/tetrocrate">Facebook</a>
</span>
<div>
Addictive 3D puzzle game inspired by the classic tangram puzzles.
</div>
</div>
<div class="showcase-entry col-sm-6 col-xs-12">
<img class="showcase-img img-circle" src="img/showcase/horde.png" alt="">
<h2>Horde!</h2>
<span>
<a href="https://github.com/czyzby/bialjam17/releases">Desktop</a>
<span class="glyphicon icon-blue glyphicon-minus"></span>
<a href="https://github.com/czyzby/bialjam17">Sources</a>
</span>
<div>
Made in under 40 hours. Won the <strong>BialJam 2017</strong> competition.
Can <em>you</em> outlast the horde?
</div>
</div>
</div>
<div class="row">
<div class="showcase-entry col-sm-6 col-xs-12">
<img class="showcase-img img-circle" src="img/showcase/beat-the-high-score.png" alt="">
<h2>Beat The High Score</h2>
<span>
<a href="https://play.google.com/store/apps/details?id=com.github.dwursteisen.beat">Google Play</a>
<span class="glyphicon icon-blue glyphicon-minus"></span>
<a href="https://github.com/dwursteisen/beat-the-high-score">Sources</a>
<span class="glyphicon icon-blue glyphicon-minus"></span>
<a href="https://www.youtube.com/watch?v=kDxerDYelLs">KotlinConf talk</a>
</span>
<div>
An example project created by <a href="https://github.com/dwursteisen">David Wursteisen</a>
for a <strong>KotlinConf 2018</strong> <a href="https://www.youtube.com/watch?v=kDxerDYelLs">talk</a>
about Kotlin and libGDX.
</div>
</div>
<div class="showcase-entry col-sm-6 col-xs-12">
<img class="showcase-img img-circle" src="img/showcase/magic-hat.png" alt="">
<h2>Magic hat</h2>
<span>
<a href="https://play.google.com/store/apps/details?id=com.appdeko.physics">Google Play</a>
<span class="glyphicon icon-blue glyphicon-minus"></span>
<a href="https://apps.apple.com/app/magic-hat-physics-puzzle-game/id1439026911">App Store</a>
</span>
<div>
An entertaining physics puzzle game. The goal is simple: get the ball into the hat.
You shoot it by pulling your finger inside an outlined launch area and then letting it go.
</div>
</div>
</div>
<div class="row">
<div class="showcase-entry col-sm-6 col-xs-12">
<img class="showcase-img img-circle" src="img/showcase/herring-io.png" alt="">
<h2>Herring.io</h2>
<span>
<a href="https://github.com/czyzby/egu2016/releases">Desktop</a>
<span class="glyphicon icon-blue glyphicon-minus"></span>
<a href="https://github.com/czyzby/egu2016">Sources</a>
</span>
<div>
Made in under 30 hours. Won the third price on the <strong>East Games United 2016</strong> game jam.
Eat smaller fish, grow bigger, repeat.
</div>
</div>
<div class="showcase-entry col-sm-6 col-xs-12">
<img class="showcase-img img-circle" src="img/showcase/neighbourhood-watch.png" alt="">
<h2>Neighbourhood Watch</h2>
<span>
<a href="https://github.com/czyzby/egu-2016/releases">Desktop</a>
<span class="glyphicon icon-blue glyphicon-minus"></span>
<a href="https://github.com/czyzby/egu-2016">Sources</a>
</span>
<div>
Made in under 24 hours on the <strong>East Games United 2016</strong> game jam.
Clear the neighbourhood out of filthy wrongdoers!
</div>
</div>
</div>
<div class="row">
<div class="showcase-entry col-sm-6 col-xs-12">
<img class="showcase-img img-circle" src="img/showcase/quillys-adventure.png" alt="">
<h2>Quilly's Adventure</h2>
<span>
<a href="https://github.com/Quillraven/Quilly-s-Adventure/releases">Desktop</a>
<span class="glyphicon icon-blue glyphicon-minus"></span>
<a href="https://github.com/Quillraven/Quilly-s-Adventure">Sources</a>
</span>
<div>
An open source adventure game. Its development was streamed on Twitch.
Uses a wide range of KTX modules.
</div>
</div>
<div class="showcase-entry col-sm-6 col-xs-12">
<img class="showcase-img img-circle" src="img/showcase/tangler.png" alt="">
<h2>Tangler</h2>
<span>
<a href="https://play.google.com/store/apps/details?id=com.andrzejn.tangler">Google Play</a>
<span class="glyphicon icon-blue glyphicon-minus"></span>
<a href="https://github.com/andrzej-nov/Tangler/releases">Desktop</a>
<span class="glyphicon icon-blue glyphicon-minus"></span>
<a href="https://github.com/andrzej-nov/Tangler">Sources</a>
</span>
<div>
A casual puzzle game inspired by the Tantrix board game.
</div>
</div>
</div>
<div class="row">
<div class="showcase-entry col-sm-6 col-xs-12">
<img class="showcase-img img-circle" src="img/showcase/dinoleon.png" alt="">
<h2>Dinoleon</h2>
<span>
<a href="https://github.com/Quillraven/Dinoleon">Sources</a>
</span>
<div>
A showcase of the <a href="https://github.com/Quillraven/Fleks">Fleks</a>
entity-component-system framework.
</div>
</div>
<div class="showcase-entry col-sm-6 col-xs-12">
<img class="showcase-img img-circle" src="img/showcase/ore-infinium.png" alt="">
<h2>Ore Infinium</h2>
<span>
<a href="https://github.com/sreich/ore-infinium/releases">Desktop</a>
<span class="glyphicon icon-blue glyphicon-minus"></span>
<a href="https://github.com/sreich/ore-infinium">Sources</a>
</span>
<div>
Open source multiplayer Terraria-inspired sci-fi game.
</div>
</div>
</div>
<h6 class="contact-prompt">
Missing your game? <a href="https://github.com/libktx/libktx.github.io/issues">Let us know!</a>
</h6>
</div>
</section>
<footer class="footer-container container-fluid">
<div class="col-md-2 col-md-offset-2 col-sm-4 col-xs-12">
<a class="scroll-top" href="#">
<img class="logo-tiny" src="img/ktx-logo.svg" alt="KTX">
</a>
</div>
<div class="footer-links col-md-6 col-sm-8">
<a href="https://github.com/libktx/ktx"><strong>GitHub</strong></a>
<span class="glyphicon icon-orange glyphicon-minus"></span>
<a href="https://github.com/libktx/ktx/issues">Issues</a>
<span class="glyphicon icon-orange glyphicon-minus"></span>
<a href="https://github.com/libktx/ktx/discussions">Forum</a>
<span class="glyphicon icon-orange glyphicon-minus"></span>
<a href="https://github.com/libktx/ktx/releases">Releases</a>
<span class="glyphicon icon-orange glyphicon-minus"></span>
<a href="https://github.com/libktx/ktx/wiki">Wiki</a>
<span class="glyphicon icon-orange glyphicon-minus"></span>
<a href="https://libktx.github.io/docs/">Docs</a>
<span class="glyphicon icon-orange glyphicon-minus"></span>
<a href="https://github.com/libktx/libktx.github.io">Website</a>
</div>
</footer>
<script src="js/jquery.min.js"></script>
<script src="js/bootstrap.min.js"></script>
<script src="js/highlight.min.js"></script>
<script src="js/jquery.base64.min.js"></script>
<script src="js/main.js"></script>
</body>
</html>