-
Notifications
You must be signed in to change notification settings - Fork 16
/
feed.xml
2260 lines (1008 loc) · 450 KB
/
feed.xml
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
<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0"
xmlns:atom="http://www.w3.org/2005/Atom"
xmlns:content="http://purl.org/rss/1.0/modules/content/">
<channel>
<title>A-Frame</title>
<link>https://aframe.io/</link>
<atom:link href="/feed.xml" rel="self" type="application/rss+xml"/>
<description>A web framework for building virtual reality experiences. Make WebVR with HTML and Entity-Component. Works on Vive, Rift, desktop, mobile platforms.</description>
<pubDate>Thu, 29 Aug 2024 23:46:27 GMT</pubDate>
<generator>http://hexo.io/</generator>
<item>
<title>A-Frame selected for the 2024 Github accelerator</title>
<link>https://aframe.io/blog/github-accelerator/</link>
<guid>https://aframe.io/blog/github-accelerator/</guid>
<pubDate>Sat, 01 Jun 2024 07:00:00 GMT</pubDate>
<description>
<p>A-Frame is honored to participate with other 10 amazing projects in the 2024 cohort of the <a href="https://github.blog/2024-05-23-2024-g
</description>
<content:encoded><![CDATA[<p>A-Frame is honored to participate with other 10 amazing projects in the 2024 cohort of the <a href="https://github.blog/2024-05-23-2024-github-accelerator-meet-the-11-projects-shaping-open-source-ai/">Github accelerator</a>. A-Frame has been making 3D content creation fun and accesible since 2015. Generative AI will open new and exciting avenues to onboard anyone regardless of technical expertise. Next decade going be the most exciting ever for the 3D Web. </p>
]]></content:encoded>
<comments>https://aframe.io/blog/github-accelerator/#disqus_thread</comments>
</item>
<item>
<title>A-Frame 1.6.0 - Memory management and performance improvements</title>
<link>https://aframe.io/blog/aframe-v1.6.0/</link>
<guid>https://aframe.io/blog/aframe-v1.6.0/</guid>
<pubDate>Fri, 31 May 2024 07:00:00 GMT</pubDate>
<description>
<p><strong>A-Frame 1.6.0 is out!</strong> Tons of bug fixes. Memory management and performance improvements. API to control tick &#x2F; tock
</description>
<content:encoded><![CDATA[<p><strong>A-Frame 1.6.0 is out!</strong> Tons of bug fixes. Memory management and performance improvements. API to control tick / tock execution order.</p>
<p>Find all details on the <a href="https://github.com/aframevr/aframe/releases/tag/v1.6.0">release notes and changelog</a></p>
]]></content:encoded>
<comments>https://aframe.io/blog/aframe-v1.6.0/#disqus_thread</comments>
</item>
<item>
<title>A-Frame 1.4.0 - Custom elements V1, Oculus Quest Pro support, tons of fixes and improvements</title>
<link>https://aframe.io/blog/aframe-v1.4.0/</link>
<guid>https://aframe.io/blog/aframe-v1.4.0/</guid>
<pubDate>Sun, 01 Jan 2023 08:00:00 GMT</pubDate>
<description>
<p><strong>A-Frame 1.4.0 is out!</strong> House keeping release. Tons of bug fixes and suppport for new devices.</p>
<p>More than 28 A-Frame
</description>
<content:encoded><![CDATA[<p><strong>A-Frame 1.4.0 is out!</strong> House keeping release. Tons of bug fixes and suppport for new devices.</p>
<p>More than 28 A-Framers helped to get 1.4.0 out of the door including friends from Oculus, Microsoft and Samsung.</p>
<p>Find all details on the <a href="https://github.com/aframevr/aframe/releases/tag/v1.4.0">release notes and changelog</a> and see all friends that are helping to make all this happen.</p>
<p>Consider supporting A-Frame development by buying a <a href="https://cottonbureau.com/p/SX82KC/shirt/a-frame-og#/9479538/tee-men-standard-tee-vintage-black-tri-blend-s">gorgeous t-shirt</a> or <a href="https://github.com/sponsors/dmarcos">sponsoring on github</a></p>
<p>Happy immersive 2023!</p>
]]></content:encoded>
<comments>https://aframe.io/blog/aframe-v1.4.0/#disqus_thread</comments>
</item>
<item>
<title>A-Frame 1.1.0 - AR, Quest 2 Support, hand tracking, compositor layers, immersive navigation</title>
<link>https://aframe.io/blog/aframe-v1.1.0/</link>
<guid>https://aframe.io/blog/aframe-v1.1.0/</guid>
<pubDate>Wed, 16 Dec 2020 08:00:00 GMT</pubDate>
<description>
<p><strong>A-Frame 1.1.0 is out!</strong> Core functionality is more polished and robust than ever. Full support for <a href="https://github.com/immersive-web/webxr-ar-module">WebXR AR module</a> and initial and experimental integration for upcoming and exciting WebXR APIs like <a href="https://github.com/immersive-web/navigation">immersive navigation</a>, <a href="https://www.w3.org/TR/webxr-hand-input-1/">hand tracking</a>, <a href="https://www.w3.org/TR/2020/WD-webxrlayers-1-20201203/">compositor layers</a> or <a href="https://immersive-web.github.io/hit-test/">hit tests</a></p>
</description>
<content:encoded><![CDATA[<p><strong>A-Frame 1.1.0 is out!</strong> Core functionality is more polished and robust than ever. Full support for <a href="https://github.com/immersive-web/webxr-ar-module">WebXR AR module</a> and initial and experimental integration for upcoming and exciting WebXR APIs like <a href="https://github.com/immersive-web/navigation">immersive navigation</a>, <a href="https://www.w3.org/TR/webxr-hand-input-1/">hand tracking</a>, <a href="https://www.w3.org/TR/2020/WD-webxrlayers-1-20201203/">compositor layers</a> or <a href="https://immersive-web.github.io/hit-test/">hit tests</a></p>
<span id="more"></span>
<p><strong>This week also marks A-Frame’s fith birthday</strong>. Five years ago, on December, 2015,
we released the first version of A-Frame to make it easier for anyone to build VR
experiences. What started as a little personal project it’s today a community of hundreds of thousands of developers worldwide.</p>
<p>More than 40 A-Framers helped to get 1.1.0 across the finish line. 20 of those made their first contribution. We appreciate help from everybody and newcomers are always especially celebrated. A-Frame is only as strong as its community.</p>
<p>We also thank Google and Oculus WebXR teams. They made an outstanding effort in a tough year. They kept the Immersive Web standard moving forward with new APIs while delivering new implementations in Chrome and the Oculus browsers.</p>
<p>Read the <a href="https://github.com/aframevr/aframe/releases/tag/v1.1.0">release notes and changelog</a> to check all the new features and celebrate everyone that made it happen.</p>
<p>Consider supporting A-Frame development by buying a <a href="https://cottonbureau.com/p/SX82KC/shirt/a-frame-og#/9479538/tee-men-standard-tee-vintage-black-tri-blend-s">gorgeous t-shirt</a></p>
<p>Happy immersive Christmas! 🎄</p>
]]></content:encoded>
<comments>https://aframe.io/blog/aframe-v1.1.0/#disqus_thread</comments>
</item>
<item>
<title>A-Frame Newsletter 2</title>
<link>https://aframe.io/blog/newsletter2/</link>
<guid>https://aframe.io/blog/newsletter2/</guid>
<pubDate>Sat, 16 May 2020 07:00:00 GMT</pubDate>
<description>
<script async src="//platform.twitter.com/widgets.js" charset="utf-8"></script>
<div class="tweets tweets-feature">
<blockquote class="twitter-tweet"><p lang="en" dir="ltr">5⃣ hours of <a href="https://twitter.com/aframevr?ref_src=twsrc%5Etfw">@aframevr</a> tutorials are now available on my YT channel 🤓<br>👉 <a href="https://t.co/L0lHa2F5qM">https://t.co/L0lHa2F5qM</a><br><br>🗣️ RT and spread the word to help beginners learn, support me as a content creator, or just for good karma 🙏<a href="https://twitter.com/hashtag/WebXR?src=hash&amp;ref_src=twsrc%5Etfw">#WebXR</a> <a href="https://twitter.com/hashtag/WebVR?src=hash&amp;ref_src=twsrc%5Etfw">#WebVR</a> <a href="https://twitter.com/hashtag/Immersive?src=hash&amp;ref_src=twsrc%5Etfw">#Immersive</a> <a href="https://twitter.com/hashtag/training?src=hash&amp;ref_src=twsrc%5Etfw">#training</a> <a href="https://twitter.com/hashtag/elearning?src=hash&amp;ref_src=twsrc%5Etfw">#elearning</a> <a href="https://twitter.com/hashtag/upskilling?src=hash&amp;ref_src=twsrc%5Etfw">#upskilling</a> <a href="https://twitter.com/hashtag/skills?src=hash&amp;ref_src=twsrc%5Etfw">#skills</a> <a href="https://t.co/xYdd8Xr58e">pic.twitter.com/xYdd8Xr58e</a></p>&mdash; Danilo Pasquariello (@theDart76) <a href="https://twitter.com/theDart76/status/1240998986166808576?ref_src=twsrc%5Etfw">March 20, 2020</a></blockquote>
<blockquote class="twitter-tweet"><p lang="en" dir="ltr">Finished laying out the maze. Added a simple camera control. Going to flesh it out into an orbiting camera. This builds on the AABB collision detection and animation work. <a href="https://twitter.com/aframevr?ref_src=twsrc%5Etfw">@aframevr</a> <a href="https://twitter.com/hashtag/THREEjs?src=hash&amp;ref_src=twsrc%5Etfw">#THREEjs</a> <a href="https://twitter.com/hashtag/indiedev?src=hash&amp;ref_src=twsrc%5Etfw">#indiedev</a> <a href="https://t.co/uyh1YeF3Pe">https://t.co/uyh1YeF3Pe</a></p>&mdash; ripter001 (@ripter001) <a href="https://twitter.com/ripter001/status/1227842204414009344?ref_src=twsrc%5Etfw">February 13, 2020</a></blockquote>
<blockquote class="twitter-tweet"><p lang="en" dir="ltr">What would the night sky look like if we replaced the Moon with planets in the Solar System?<br><br>My new VR experience, Planets by Earth, built with <a href="https://twitter.com/aframevr?ref_src=twsrc%5Etfw">@aframevr</a> and <a href="https://twitter.com/hashtag/threejs?src=hash&amp;ref_src=twsrc%5Etfw">#threejs</a> is finally finished!<br><br>You can try it out here: <a href="https://t.co/y32TAPAUvM">https://t.co/y32TAPAUvM</a> <a href="https://t.co/Ped8eyxb7V">pic.twitter.com/Ped8eyxb7V</a></p>&mdash; Kodub (@KodubDev) <a href="https://twitter.com/KodubDev/status/1255197031645282305?ref_src=twsrc%5Etfw">April 28, 2020</a></blockquote>
<blockquote class="twitter-tweet"><p lang="en" dir="ltr">Incredible feeling to win the Best of AR grand prize at <a href="https://twitter.com/mitrealityhack?ref_src=twsrc%5Etfw">@mitrealityhack</a>! During the weekend hackathon, our team built Draft360, a spatial storyboarding tool made with <a href="https://twitter.com/aframevr?ref_src=twsrc%5Etfw">@aframevr</a>, <a href="https://twitter.com/threejs_org?ref_src=twsrc%5Etfw">@threejs_org</a>, <a href="https://twitter.com/glitch?ref_src=twsrc%5Etfw">@glitch</a>, and <a href="https://twitter.com/Nreal?ref_src=twsrc%5Etfw">@nreal</a>. <a href="https://t.co/t8wHYoNxz5">pic.twitter.com/t8wHYoNxz5</a></p>&mdash; James 서 (@lossless) <a href="https://twitter.com/lossless/status/1219333174368579589?ref_src=twsrc%5Etfw">January 20, 2020</a></blockquote>
<blockquote class="twitter-tweet"><p lang="en" dir="ltr">VR scene with spatial sound and dynamic lighting made with <a href="https://twitter.com/aframevr?ref_src=twsrc%5Etfw">@aframevr</a> <a href="https://twitter.com/hashtag/webxr?src=hash&amp;ref_src=twsrc%5Etfw">#webxr</a> here: <a href="https://t.co/oqdgqm5tez">https://t.co/oqdgqm5tez</a> <a href="https://t.co/67keKD0VtK">pic.twitter.com/67keKD0VtK</a></p>&mdash; mhellar (@mhellar) <a href="https://twitter.com/mhellar/status/1216580977142591493?ref_src=twsrc%5Etfw">January 13, 2020</a></blockquote>
<blockquote class="twitter-tweet"><p lang="en" dir="ltr">Hacking Spider-Man VR physics by yourself! <a href="https://t.co/QDLD672BNB">https://t.co/QDLD672BNB</a> <br>WebXR is so easy to modify on <a href="https://twitter.com/glitch?ref_src=twsrc%5Etfw">@glitch</a>, game made with <a href="https://twitter.com/aframevr?ref_src=twsrc%5Etfw">@aframevr</a></p>&mdash; Tal Kol (@koltal) <a href="https://twitter.com/koltal/status/1215754100081680408?ref_src=twsrc%5Etfw">January 10, 2020</a></blockquote>
<blockquote class="twitter-tweet"><p lang="en" dir="ltr"><a href="https://t.co/0NjDyYvVoL">https://t.co/0NjDyYvVoL</a> is officially LIVE 🚀 Its a virtual living room for watching tv with friends, and I built it atop <a href="https://twitter.com/aframevr?ref_src=twsrc%5Etfw">@aframevr</a> <a href="https://twitter.com/sveltejs?ref_src=twsrc%5Etfw">@sveltejs</a> and <a href="https://twitter.com/Firebase?ref_src=twsrc%5Etfw">@Firebase</a> over the past couple months. Its been a labor of love and I&#39;m proud of what it has become 😊 Claim your username <a href="https://twitter.com/hashtag/vr?src=hash&amp;ref_src=twsrc%5Etfw">#vr</a> <a href="https://twitter.com/hashtag/WebXR?src=hash&amp;ref_src=twsrc%5Etfw">#WebXR</a> <a href="https://t.co/iSGbWAwi0s">https://t.co/iSGbWAwi0s</a></p>&mdash; Devon Bradley (@devonsbradley) <a href="https://twitter.com/devonsbradley/status/1237437260540207105?ref_src=twsrc%5Etfw">March 10, 2020</a></blockquote>
<blockquote class="twitter-tweet"><p lang="en" dir="ltr">Great news! Magic Leap controller support now available on <a href="https://twitter.com/aframevr?ref_src=twsrc%5Etfw">@aframevr</a> 👏 3 cheers for Alfred! 🔥🥳 <a href="https://t.co/lBOH6JaMI3">https://t.co/lBOH6JaMI3</a></p>&mdash; Magic Leap Developers (@magicleapdevs) <a href="https://twitter.com/magicleapdevs/status/1225544530184822784?ref_src=twsrc%5Etfw">February 6, 2020</a></blockquote>
<blockquote class="twitter-tweet"><p lang="en" dir="ltr">A-Frame 1.0.4 is out 🎊 Bug fixes thanks to the community family 🙏<a href="https://twitter.com/magicleap?ref_src=twsrc%5Etfw">@magicleap</a> controller support ✨ by Alfred Tarng and new hand models 🤲 from <a href="https://twitter.com/arturitu?ref_src=twsrc%5Etfw">@arturitu</a> Enjoy! Release notes: <a href="https://t.co/kczGke4ZBb">https://t.co/kczGke4ZBb</a></p>&mdash; A-Frame (@aframevr) <a href="https://twitter.com/aframevr/status/1225507399982878721?ref_src=twsrc%5Etfw">February 6, 2020</a></blockquote>
<blockquote class="twitter-tweet"><p lang="en" dir="ltr">Hand tracking 🤲 is now available for WebXR content on Oculus Browser! Set hand tracking in chrome://flags to “Hands an Pointers” and enter VR on <a href="https://twitter.com/aframevr?ref_src=twsrc%5Etfw">@aframevr</a> example <a href="https://t.co/bzPDwdGCuN">https://t.co/bzPDwdGCuN</a> Pinch to select 🤏 palm to exit VR mode 🤚 Thanks to <a href="https://twitter.com/abolgar?ref_src=twsrc%5Etfw">@abolgar</a> Check library for updates 👊 <a href="https://t.co/JcMRpauaJm">https://t.co/JcMRpauaJm</a></p>&mdash; Diego (@dmarcos) <a href="https://twitter.com/dmarcos/status/1224870381082701824?ref_src=twsrc%5Etfw">February 5, 2020</a></blockquote>
<blockquote class="twitter-tweet"><p lang="en" dir="ltr">Virtual fireworks!<br><br>Particle effects created in A-Frame <a href="https://twitter.com/aframevr?ref_src=twsrc%5Etfw">@aframevr</a> with the Shader Particle Engine library. Live example at <a href="https://t.co/yStTEPM08g">https://t.co/yStTEPM08g</a> (audio make need time to load).<a href="https://t.co/a3Wjzyfz8w">https://t.co/a3Wjzyfz8w</a></p>&mdash; Lee Stemkoski (@ProfStemkoski) <a href="https://twitter.com/ProfStemkoski/status/1252271535588544512?ref_src=twsrc%5Etfw">April 20, 2020</a></blockquote>
<blockquote class="twitter-tweet"><p lang="en" dir="ltr">Just released a new video tutorial on the environment component of <a href="https://twitter.com/aframevr?ref_src=twsrc%5Etfw">@aframevr</a> &quot;Easy Environment in A-Frame&quot; <a href="https://t.co/zByPDjLzxX">https://t.co/zByPDjLzxX</a><a href="https://twitter.com/hashtag/WebXR?src=hash&amp;ref_src=twsrc%5Etfw">#WebXR</a></p>&mdash; 🌷𝗦𝗼𝗿𝘀𝗸𝗼𝗼𝘁🌷 (@Sorskoot) <a href="https://twitter.com/Sorskoot/status/1230803500877189121?ref_src=twsrc%5Etfw">February 21, 2020</a></blockquote>
<blockquote class="twitter-tweet"><p lang="en" dir="ltr">A-Frame 1.0.3 is out to wrap up the decade! 🎇 It irons out a few more kinks post 1.0.0 Thanks to everyone that helped with bug reports and QA 🙏 Details in changelog: <a href="https://t.co/gVSCOlzRp9">https://t.co/gVSCOlzRp9</a></p>&mdash; A-Frame (@aframevr) <a href="https://twitter.com/aframevr/status/1211630957691846657?ref_src=twsrc%5Etfw">December 30, 2019</a></blockquote>
<blockquote class="twitter-tweet"><p lang="en" dir="ltr">Experiment today with Immersive navigation ⛵️ in the <a href="https://twitter.com/oculus?ref_src=twsrc%5Etfw">@Oculus</a> browser!<br><br>Enable WebXR navigation permission in chrome://flags and use <a href="https://twitter.com/aframevr?ref_src=twsrc%5Etfw">@aframevr</a> master builds (see code)<br><br>Try: <a href="https://t.co/LFAlDocAbZ">https://t.co/LFAlDocAbZ</a><br>Code: <a href="https://t.co/jjpEDjGM87">https://t.co/jjpEDjGM87</a><br>Subscribe: <a href="https://t.co/aPJZOcaWQo">https://t.co/aPJZOcaWQo</a> <a href="https://t.co/vaMHIfBL2V">pic.twitter.com/vaMHIfBL2V</a></p>&mdash; Diego (@dmarcos) <a href="https://twitter.com/dmarcos/status/1258118569767796737?ref_src=twsrc%5Etfw">May 6, 2020</a></blockquote>
<blockquote class="twitter-tweet"><p lang="en" dir="ltr"><a href="https://twitter.com/hashtag/3D?src=hash&amp;ref_src=twsrc%5Etfw">#3D</a> <a href="https://twitter.com/hashtag/website?src=hash&amp;ref_src=twsrc%5Etfw">#website</a> created by Planet Voodoo using <a href="https://twitter.com/aframevr?ref_src=twsrc%5Etfw">@aframevr</a> technology to introduce an interactive VR story about a real life <a href="https://twitter.com/hashtag/UFO?src=hash&amp;ref_src=twsrc%5Etfw">#UFO</a> encounter <a href="https://t.co/K4iSkxTWYl">https://t.co/K4iSkxTWYl</a> <a href="https://t.co/eorEag9TvP">pic.twitter.com/eorEag9TvP</a></p>&mdash; Planet Voodoo (@PlanetVoodoo) <a href="https://twitter.com/PlanetVoodoo/status/1213512791178563585?ref_src=twsrc%5Etfw">January 4, 2020</a></blockquote>
<blockquote class="twitter-tweet"><p lang="en" dir="ltr"><a href="https://t.co/Mx7VSz0MQp">https://t.co/Mx7VSz0MQp</a> is a web based virtual museum prototype we are working on <a href="https://twitter.com/augmersive?ref_src=twsrc%5Etfw">@augmersive</a> ! <br><br>It&#39;s built with <a href="https://twitter.com/aframevr?ref_src=twsrc%5Etfw">@aframevr</a> &amp; viewable on <a href="https://twitter.com/oculus?ref_src=twsrc%5Etfw">@oculus</a> quest, <a href="https://twitter.com/magicleap?ref_src=twsrc%5Etfw">@magicleap</a>, desktop &amp; mobile browsers!<br><br>If any museum wants to hire us for a custom VR experience my DM is open 😀 <a href="https://t.co/b8a9TfB2PM">pic.twitter.com/b8a9TfB2PM</a></p>&mdash; Tamrat (@tamrrat) <a href="<blockquote class="twitter-tweet"><p lang="en" dir="ltr"><a href="https://t.co/Mx7VSz0MQp">https://t.co/Mx7VSz0MQp</a> is a web based virtual museum prototype we are working on <a href="https://twitter.com/augmersive?ref_src=twsrc%5Etfw">@augmersive</a> ! <br><br>It&#39;s built with <a href="https://twitter.com/aframevr?ref_src=twsrc%5Etfw">@aframevr</a> &amp; viewable on <a href="https://twitter.com/oculus?ref_src=twsrc%5Etfw">@oculus</a> quest, <a href="https://twitter.com/magicleap?ref_src=twsrc%5Etfw">@magicleap</a>, desktop &amp; mobile browsers!<br><br>If any museum wants to hire us for a custom VR experience my DM is open 😀 <a href="https://t.co/b8a9TfB2PM">pic.twitter.com/b8a9TfB2PM</a></p>&mdash; Tamrat (@tamrrat) <a href="https://twitter.com/tamrrat/status/1254751202249760768?ref_src=twsrc%5Etfw">April 27, 2020</a></blockquote>
<p>?ref_src&#x3D;twsrc%5Etfw”&gt;April 27, 2020</a></blockquote></p>
<blockquote class="twitter-tweet"><p lang="en" dir="ltr">first draft of my new website, not even sure if i wanna spill this drip on it. uses ur webcam for immersive ascii art via <a href="https://twitter.com/p5xjs?ref_src=twsrc%5Etfw">@p5xjs</a>, interactive 3D scene using a star wars x-wing for testing with <a href="https://twitter.com/aframevr?ref_src=twsrc%5Etfw">@aframevr</a>, UI with <a href="https://twitter.com/jquery?ref_src=twsrc%5Etfw">@jquery</a>... bet <a href="https://t.co/hvXtabrFB2">pic.twitter.com/hvXtabrFB2</a></p>&mdash; RAREGEMS (@_RAREGEMS) <a href="https://twitter.com/_RAREGEMS/status/1253065641403310083?ref_src=twsrc%5Etfw">April 22, 2020</a></blockquote>
<blockquote class="twitter-tweet"><p lang="en" dir="ltr">Woke up with a weird idea, and just had to work it out. Spent all morning high fiving the air.<br><br>I present you: Don&#39;t leave &#39;em hanging.<a href="https://twitter.com/hashtag/aframe?src=hash&amp;ref_src=twsrc%5Etfw">#aframe</a> <a href="https://twitter.com/hashtag/OculusQuest?src=hash&amp;ref_src=twsrc%5Etfw">#OculusQuest</a> <a href="https://twitter.com/hashtag/webxr?src=hash&amp;ref_src=twsrc%5Etfw">#webxr</a> <a href="https://t.co/Gbj2S4Uq5T">pic.twitter.com/Gbj2S4Uq5T</a></p>&mdash; Ruben van der Leun 🕴️ (@rvdleun) <a href="https://twitter.com/rvdleun/status/1249708882416619522?ref_src=twsrc%5Etfw">April 13, 2020</a></blockquote>
<p><a href="https://twitter.com/tamrrat/status/1254751202249760768">https://twitter.com/tamrrat/status/1254751202249760768</a></p>
</div>
</description>
<content:encoded><![CDATA[<script async src="//platform.twitter.com/widgets.js" charset="utf-8"></script>
<div class="tweets tweets-feature">
<blockquote class="twitter-tweet"><p lang="en" dir="ltr">5⃣ hours of <a href="https://twitter.com/aframevr?ref_src=twsrc%5Etfw">@aframevr</a> tutorials are now available on my YT channel 🤓<br>👉 <a href="https://t.co/L0lHa2F5qM">https://t.co/L0lHa2F5qM</a><br><br>🗣️ RT and spread the word to help beginners learn, support me as a content creator, or just for good karma 🙏<a href="https://twitter.com/hashtag/WebXR?src=hash&ref_src=twsrc%5Etfw">#WebXR</a> <a href="https://twitter.com/hashtag/WebVR?src=hash&ref_src=twsrc%5Etfw">#WebVR</a> <a href="https://twitter.com/hashtag/Immersive?src=hash&ref_src=twsrc%5Etfw">#Immersive</a> <a href="https://twitter.com/hashtag/training?src=hash&ref_src=twsrc%5Etfw">#training</a> <a href="https://twitter.com/hashtag/elearning?src=hash&ref_src=twsrc%5Etfw">#elearning</a> <a href="https://twitter.com/hashtag/upskilling?src=hash&ref_src=twsrc%5Etfw">#upskilling</a> <a href="https://twitter.com/hashtag/skills?src=hash&ref_src=twsrc%5Etfw">#skills</a> <a href="https://t.co/xYdd8Xr58e">pic.twitter.com/xYdd8Xr58e</a></p>— Danilo Pasquariello (@theDart76) <a href="https://twitter.com/theDart76/status/1240998986166808576?ref_src=twsrc%5Etfw">March 20, 2020</a></blockquote>
<blockquote class="twitter-tweet"><p lang="en" dir="ltr">Finished laying out the maze. Added a simple camera control. Going to flesh it out into an orbiting camera. This builds on the AABB collision detection and animation work. <a href="https://twitter.com/aframevr?ref_src=twsrc%5Etfw">@aframevr</a> <a href="https://twitter.com/hashtag/THREEjs?src=hash&ref_src=twsrc%5Etfw">#THREEjs</a> <a href="https://twitter.com/hashtag/indiedev?src=hash&ref_src=twsrc%5Etfw">#indiedev</a> <a href="https://t.co/uyh1YeF3Pe">https://t.co/uyh1YeF3Pe</a></p>— ripter001 (@ripter001) <a href="https://twitter.com/ripter001/status/1227842204414009344?ref_src=twsrc%5Etfw">February 13, 2020</a></blockquote>
<blockquote class="twitter-tweet"><p lang="en" dir="ltr">What would the night sky look like if we replaced the Moon with planets in the Solar System?<br><br>My new VR experience, Planets by Earth, built with <a href="https://twitter.com/aframevr?ref_src=twsrc%5Etfw">@aframevr</a> and <a href="https://twitter.com/hashtag/threejs?src=hash&ref_src=twsrc%5Etfw">#threejs</a> is finally finished!<br><br>You can try it out here: <a href="https://t.co/y32TAPAUvM">https://t.co/y32TAPAUvM</a> <a href="https://t.co/Ped8eyxb7V">pic.twitter.com/Ped8eyxb7V</a></p>— Kodub (@KodubDev) <a href="https://twitter.com/KodubDev/status/1255197031645282305?ref_src=twsrc%5Etfw">April 28, 2020</a></blockquote>
<blockquote class="twitter-tweet"><p lang="en" dir="ltr">Incredible feeling to win the Best of AR grand prize at <a href="https://twitter.com/mitrealityhack?ref_src=twsrc%5Etfw">@mitrealityhack</a>! During the weekend hackathon, our team built Draft360, a spatial storyboarding tool made with <a href="https://twitter.com/aframevr?ref_src=twsrc%5Etfw">@aframevr</a>, <a href="https://twitter.com/threejs_org?ref_src=twsrc%5Etfw">@threejs_org</a>, <a href="https://twitter.com/glitch?ref_src=twsrc%5Etfw">@glitch</a>, and <a href="https://twitter.com/Nreal?ref_src=twsrc%5Etfw">@nreal</a>. <a href="https://t.co/t8wHYoNxz5">pic.twitter.com/t8wHYoNxz5</a></p>— James 서 (@lossless) <a href="https://twitter.com/lossless/status/1219333174368579589?ref_src=twsrc%5Etfw">January 20, 2020</a></blockquote>
<blockquote class="twitter-tweet"><p lang="en" dir="ltr">VR scene with spatial sound and dynamic lighting made with <a href="https://twitter.com/aframevr?ref_src=twsrc%5Etfw">@aframevr</a> <a href="https://twitter.com/hashtag/webxr?src=hash&ref_src=twsrc%5Etfw">#webxr</a> here: <a href="https://t.co/oqdgqm5tez">https://t.co/oqdgqm5tez</a> <a href="https://t.co/67keKD0VtK">pic.twitter.com/67keKD0VtK</a></p>— mhellar (@mhellar) <a href="https://twitter.com/mhellar/status/1216580977142591493?ref_src=twsrc%5Etfw">January 13, 2020</a></blockquote>
<blockquote class="twitter-tweet"><p lang="en" dir="ltr">Hacking Spider-Man VR physics by yourself! <a href="https://t.co/QDLD672BNB">https://t.co/QDLD672BNB</a> <br>WebXR is so easy to modify on <a href="https://twitter.com/glitch?ref_src=twsrc%5Etfw">@glitch</a>, game made with <a href="https://twitter.com/aframevr?ref_src=twsrc%5Etfw">@aframevr</a></p>— Tal Kol (@koltal) <a href="https://twitter.com/koltal/status/1215754100081680408?ref_src=twsrc%5Etfw">January 10, 2020</a></blockquote>
<blockquote class="twitter-tweet"><p lang="en" dir="ltr"><a href="https://t.co/0NjDyYvVoL">https://t.co/0NjDyYvVoL</a> is officially LIVE 🚀 Its a virtual living room for watching tv with friends, and I built it atop <a href="https://twitter.com/aframevr?ref_src=twsrc%5Etfw">@aframevr</a> <a href="https://twitter.com/sveltejs?ref_src=twsrc%5Etfw">@sveltejs</a> and <a href="https://twitter.com/Firebase?ref_src=twsrc%5Etfw">@Firebase</a> over the past couple months. Its been a labor of love and I'm proud of what it has become 😊 Claim your username <a href="https://twitter.com/hashtag/vr?src=hash&ref_src=twsrc%5Etfw">#vr</a> <a href="https://twitter.com/hashtag/WebXR?src=hash&ref_src=twsrc%5Etfw">#WebXR</a> <a href="https://t.co/iSGbWAwi0s">https://t.co/iSGbWAwi0s</a></p>— Devon Bradley (@devonsbradley) <a href="https://twitter.com/devonsbradley/status/1237437260540207105?ref_src=twsrc%5Etfw">March 10, 2020</a></blockquote>
<blockquote class="twitter-tweet"><p lang="en" dir="ltr">Great news! Magic Leap controller support now available on <a href="https://twitter.com/aframevr?ref_src=twsrc%5Etfw">@aframevr</a> 👏 3 cheers for Alfred! 🔥🥳 <a href="https://t.co/lBOH6JaMI3">https://t.co/lBOH6JaMI3</a></p>— Magic Leap Developers (@magicleapdevs) <a href="https://twitter.com/magicleapdevs/status/1225544530184822784?ref_src=twsrc%5Etfw">February 6, 2020</a></blockquote>
<blockquote class="twitter-tweet"><p lang="en" dir="ltr">A-Frame 1.0.4 is out 🎊 Bug fixes thanks to the community family 🙏<a href="https://twitter.com/magicleap?ref_src=twsrc%5Etfw">@magicleap</a> controller support ✨ by Alfred Tarng and new hand models 🤲 from <a href="https://twitter.com/arturitu?ref_src=twsrc%5Etfw">@arturitu</a> Enjoy! Release notes: <a href="https://t.co/kczGke4ZBb">https://t.co/kczGke4ZBb</a></p>— A-Frame (@aframevr) <a href="https://twitter.com/aframevr/status/1225507399982878721?ref_src=twsrc%5Etfw">February 6, 2020</a></blockquote>
<blockquote class="twitter-tweet"><p lang="en" dir="ltr">Hand tracking 🤲 is now available for WebXR content on Oculus Browser! Set hand tracking in chrome://flags to “Hands an Pointers” and enter VR on <a href="https://twitter.com/aframevr?ref_src=twsrc%5Etfw">@aframevr</a> example <a href="https://t.co/bzPDwdGCuN">https://t.co/bzPDwdGCuN</a> Pinch to select 🤏 palm to exit VR mode 🤚 Thanks to <a href="https://twitter.com/abolgar?ref_src=twsrc%5Etfw">@abolgar</a> Check library for updates 👊 <a href="https://t.co/JcMRpauaJm">https://t.co/JcMRpauaJm</a></p>— Diego (@dmarcos) <a href="https://twitter.com/dmarcos/status/1224870381082701824?ref_src=twsrc%5Etfw">February 5, 2020</a></blockquote>
<blockquote class="twitter-tweet"><p lang="en" dir="ltr">Virtual fireworks!<br><br>Particle effects created in A-Frame <a href="https://twitter.com/aframevr?ref_src=twsrc%5Etfw">@aframevr</a> with the Shader Particle Engine library. Live example at <a href="https://t.co/yStTEPM08g">https://t.co/yStTEPM08g</a> (audio make need time to load).<a href="https://t.co/a3Wjzyfz8w">https://t.co/a3Wjzyfz8w</a></p>— Lee Stemkoski (@ProfStemkoski) <a href="https://twitter.com/ProfStemkoski/status/1252271535588544512?ref_src=twsrc%5Etfw">April 20, 2020</a></blockquote>
<blockquote class="twitter-tweet"><p lang="en" dir="ltr">Just released a new video tutorial on the environment component of <a href="https://twitter.com/aframevr?ref_src=twsrc%5Etfw">@aframevr</a> "Easy Environment in A-Frame" <a href="https://t.co/zByPDjLzxX">https://t.co/zByPDjLzxX</a><a href="https://twitter.com/hashtag/WebXR?src=hash&ref_src=twsrc%5Etfw">#WebXR</a></p>— 🌷𝗦𝗼𝗿𝘀𝗸𝗼𝗼𝘁🌷 (@Sorskoot) <a href="https://twitter.com/Sorskoot/status/1230803500877189121?ref_src=twsrc%5Etfw">February 21, 2020</a></blockquote>
<blockquote class="twitter-tweet"><p lang="en" dir="ltr">A-Frame 1.0.3 is out to wrap up the decade! 🎇 It irons out a few more kinks post 1.0.0 Thanks to everyone that helped with bug reports and QA 🙏 Details in changelog: <a href="https://t.co/gVSCOlzRp9">https://t.co/gVSCOlzRp9</a></p>— A-Frame (@aframevr) <a href="https://twitter.com/aframevr/status/1211630957691846657?ref_src=twsrc%5Etfw">December 30, 2019</a></blockquote>
<blockquote class="twitter-tweet"><p lang="en" dir="ltr">Experiment today with Immersive navigation ⛵️ in the <a href="https://twitter.com/oculus?ref_src=twsrc%5Etfw">@Oculus</a> browser!<br><br>Enable WebXR navigation permission in chrome://flags and use <a href="https://twitter.com/aframevr?ref_src=twsrc%5Etfw">@aframevr</a> master builds (see code)<br><br>Try: <a href="https://t.co/LFAlDocAbZ">https://t.co/LFAlDocAbZ</a><br>Code: <a href="https://t.co/jjpEDjGM87">https://t.co/jjpEDjGM87</a><br>Subscribe: <a href="https://t.co/aPJZOcaWQo">https://t.co/aPJZOcaWQo</a> <a href="https://t.co/vaMHIfBL2V">pic.twitter.com/vaMHIfBL2V</a></p>— Diego (@dmarcos) <a href="https://twitter.com/dmarcos/status/1258118569767796737?ref_src=twsrc%5Etfw">May 6, 2020</a></blockquote>
<blockquote class="twitter-tweet"><p lang="en" dir="ltr"><a href="https://twitter.com/hashtag/3D?src=hash&ref_src=twsrc%5Etfw">#3D</a> <a href="https://twitter.com/hashtag/website?src=hash&ref_src=twsrc%5Etfw">#website</a> created by Planet Voodoo using <a href="https://twitter.com/aframevr?ref_src=twsrc%5Etfw">@aframevr</a> technology to introduce an interactive VR story about a real life <a href="https://twitter.com/hashtag/UFO?src=hash&ref_src=twsrc%5Etfw">#UFO</a> encounter <a href="https://t.co/K4iSkxTWYl">https://t.co/K4iSkxTWYl</a> <a href="https://t.co/eorEag9TvP">pic.twitter.com/eorEag9TvP</a></p>— Planet Voodoo (@PlanetVoodoo) <a href="https://twitter.com/PlanetVoodoo/status/1213512791178563585?ref_src=twsrc%5Etfw">January 4, 2020</a></blockquote>
<blockquote class="twitter-tweet"><p lang="en" dir="ltr"><a href="https://t.co/Mx7VSz0MQp">https://t.co/Mx7VSz0MQp</a> is a web based virtual museum prototype we are working on <a href="https://twitter.com/augmersive?ref_src=twsrc%5Etfw">@augmersive</a> ! <br><br>It's built with <a href="https://twitter.com/aframevr?ref_src=twsrc%5Etfw">@aframevr</a> & viewable on <a href="https://twitter.com/oculus?ref_src=twsrc%5Etfw">@oculus</a> quest, <a href="https://twitter.com/magicleap?ref_src=twsrc%5Etfw">@magicleap</a>, desktop & mobile browsers!<br><br>If any museum wants to hire us for a custom VR experience my DM is open 😀 <a href="https://t.co/b8a9TfB2PM">pic.twitter.com/b8a9TfB2PM</a></p>— Tamrat (@tamrrat) <a href="%3Cblockquote%20class="twitter-tweet"><p lang="en" dir="ltr"><a href="https://t.co/Mx7VSz0MQp">https://t.co/Mx7VSz0MQp</a> is a web based virtual museum prototype we are working on <a href="https://twitter.com/augmersive?ref_src=twsrc%5Etfw">@augmersive</a> ! <br><br>It's built with <a href="https://twitter.com/aframevr?ref_src=twsrc%5Etfw">@aframevr</a> & viewable on <a href="https://twitter.com/oculus?ref_src=twsrc%5Etfw">@oculus</a> quest, <a href="https://twitter.com/magicleap?ref_src=twsrc%5Etfw">@magicleap</a>, desktop & mobile browsers!<br><br>If any museum wants to hire us for a custom VR experience my DM is open 😀 <a href="https://t.co/b8a9TfB2PM">pic.twitter.com/b8a9TfB2PM</a></p>— Tamrat (@tamrrat) <a href="https://twitter.com/tamrrat/status/1254751202249760768?ref_src=twsrc%5Etfw">April 27, 2020</a></blockquote>
<p>?ref_src=twsrc%5Etfw”>April 27, 2020</a></blockquote></p>
<blockquote class="twitter-tweet"><p lang="en" dir="ltr">first draft of my new website, not even sure if i wanna spill this drip on it. uses ur webcam for immersive ascii art via <a href="https://twitter.com/p5xjs?ref_src=twsrc%5Etfw">@p5xjs</a>, interactive 3D scene using a star wars x-wing for testing with <a href="https://twitter.com/aframevr?ref_src=twsrc%5Etfw">@aframevr</a>, UI with <a href="https://twitter.com/jquery?ref_src=twsrc%5Etfw">@jquery</a>... bet <a href="https://t.co/hvXtabrFB2">pic.twitter.com/hvXtabrFB2</a></p>— RAREGEMS (@_RAREGEMS) <a href="https://twitter.com/_RAREGEMS/status/1253065641403310083?ref_src=twsrc%5Etfw">April 22, 2020</a></blockquote>
<blockquote class="twitter-tweet"><p lang="en" dir="ltr">Woke up with a weird idea, and just had to work it out. Spent all morning high fiving the air.<br><br>I present you: Don't leave 'em hanging.<a href="https://twitter.com/hashtag/aframe?src=hash&ref_src=twsrc%5Etfw">#aframe</a> <a href="https://twitter.com/hashtag/OculusQuest?src=hash&ref_src=twsrc%5Etfw">#OculusQuest</a> <a href="https://twitter.com/hashtag/webxr?src=hash&ref_src=twsrc%5Etfw">#webxr</a> <a href="https://t.co/Gbj2S4Uq5T">pic.twitter.com/Gbj2S4Uq5T</a></p>— Ruben van der Leun 🕴️ (@rvdleun) <a href="https://twitter.com/rvdleun/status/1249708882416619522?ref_src=twsrc%5Etfw">April 13, 2020</a></blockquote>
<p><a href="https://twitter.com/tamrrat/status/1254751202249760768">https://twitter.com/tamrrat/status/1254751202249760768</a></p>
</div>
<span id="more"></span>
<h2 id="projects"><a href="#projects" class="headerlink" title="Projects"></a>Projects</h2><div class="tweets">
<blockquote class="twitter-tweet"><p lang="en" dir="ltr">Happy New Year! <a href="https://t.co/MxNnkHKq4c">https://t.co/MxNnkHKq4c</a> is now updated to the latest version of WebXR <a href="https://twitter.com/aframevr?ref_src=twsrc%5Etfw">@aframevr</a> 1.0 and 0.2019.1211 GunDB <a href="https://twitter.com/marknadal?ref_src=twsrc%5Etfw">@marknadal</a>, which brings more stability to the experimental Luminary! Looking forward going deeply onto endless possibilities of the new <a href="https://twitter.com/Croquet?ref_src=twsrc%5Etfw">@croquet</a> V in 2020 <a href="https://t.co/SRJnQt7rBw">pic.twitter.com/SRJnQt7rBw</a></p>— Nikolay Suslov (@nsuslovi) <a href="https://twitter.com/nsuslovi/status/1212092617741213696?ref_src=twsrc%5Etfw">December 31, 2019</a></blockquote>
<blockquote class="twitter-tweet"><p lang="en" dir="ltr">My Hello VR World (in <a href="https://twitter.com/aframevr?ref_src=twsrc%5Etfw">@aframevr</a>): <br>explore the Menger Sponge fractal from the inside!<a href="https://t.co/3SicfaevZv">https://t.co/3SicfaevZv</a><a href="https://twitter.com/hashtag/AFrame?src=hash&ref_src=twsrc%5Etfw">#AFrame</a> <a href="https://twitter.com/hashtag/VR?src=hash&ref_src=twsrc%5Etfw">#VR</a> <a href="https://twitter.com/hashtag/fractal?src=hash&ref_src=twsrc%5Etfw">#fractal</a> <a href="https://twitter.com/hashtag/3d?src=hash&ref_src=twsrc%5Etfw">#3d</a> <a href="https://twitter.com/hashtag/JavaScript?src=hash&ref_src=twsrc%5Etfw">#JavaScript</a></p>— Piotr Migdal (@pmigdal) <a href="https://twitter.com/pmigdal/status/1249458663338717188?ref_src=twsrc%5Etfw">April 12, 2020</a></blockquote>
<blockquote class="twitter-tweet"><p lang="en" dir="ltr">Exploring cubemaps w/ <a href="https://twitter.com/aframevr?ref_src=twsrc%5Etfw">@aframevr</a> & <a href="https://twitter.com/threejs_org?ref_src=twsrc%5Etfw">@threejs_org</a> and using them for influencing lighting, thanks <a href="https://twitter.com/bryik_ws?ref_src=twsrc%5Etfw">@bryik_ws</a> for updating your component so quickly. New on the left, old on the right. Subtle but noticeable improvement on the ocean material toward the horizon. <a href="https://t.co/kzU8LPODaZ">https://t.co/kzU8LPODaZ</a> <a href="https://t.co/FJsLht3LJ1">pic.twitter.com/FJsLht3LJ1</a></p>— Kieran Farr (@kfarr) <a href="https://twitter.com/kfarr/status/1259996850100113411?ref_src=twsrc%5Etfw">May 12, 2020</a></blockquote>
<blockquote class="twitter-tweet"><p lang="en" dir="ltr"><a href="https://twitter.com/hashtag/OffKillter?src=hash&ref_src=twsrc%5Etfw">#OffKillter</a> released for <a href="https://twitter.com/hashtag/VRJAM2020?src=hash&ref_src=twsrc%5Etfw">#VRJAM2020</a>! Off-Killter is a <a href="https://twitter.com/hashtag/WebVR?src=hash&ref_src=twsrc%5Etfw">#WebVR</a> game prototype built with <a href="https://twitter.com/aframevr?ref_src=twsrc%5Etfw">@aframevr</a> where you record a set of actions and they get replayed back to you; but one is slightly off. Can you spot the imposter? Play it for free on <a href="https://twitter.com/hashtag/itchio?src=hash&ref_src=twsrc%5Etfw">#itchio</a>! <a href="https://t.co/YstWvmLpqQ">https://t.co/YstWvmLpqQ</a></p>— Tristan Cole (@elocnat) <a href="https://twitter.com/elocnat/status/1258829035846721536?ref_src=twsrc%5Etfw">May 8, 2020</a></blockquote>
<blockquote class="twitter-tweet"><p lang="en" dir="ltr">The Earth and the Moon, with bloom.<a href="https://twitter.com/hashtag/webgl?src=hash&ref_src=twsrc%5Etfw">#webgl</a> <a href="https://twitter.com/hashtag/threejs?src=hash&ref_src=twsrc%5Etfw">#threejs</a> <a href="https://twitter.com/hashtag/aframevr?src=hash&ref_src=twsrc%5Etfw">#aframevr</a> <a href="https://t.co/IPdAw9sEKP">pic.twitter.com/IPdAw9sEKP</a></p>— Kodub (@KodubDev) <a href="https://twitter.com/KodubDev/status/1239978142497796097?ref_src=twsrc%5Etfw">March 17, 2020</a></blockquote>
<blockquote class="twitter-tweet"><p lang="en" dir="ltr">Using A-Frame, me and my friends make a virtual tour website for my campus dian nuswantoro <a href="https://twitter.com/udinus_admisi?ref_src=twsrc%5Etfw">@udinus_admisi</a>.<br><br>Thank you <a href="https://twitter.com/aframevr?ref_src=twsrc%5Etfw">@aframevr</a> <br><br>Let's see 👌 <a href="https://t.co/SI0wcHnpnm">https://t.co/SI0wcHnpnm</a><a href="https://twitter.com/laravelnews?ref_src=twsrc%5Etfw">@laravelnews</a> <a href="https://twitter.com/nodejs?ref_src=twsrc%5Etfw">@nodejs</a> <a href="https://twitter.com/hashtag/webdev?src=hash&ref_src=twsrc%5Etfw">#webdev</a> <a href="https://twitter.com/hashtag/webvr?src=hash&ref_src=twsrc%5Etfw">#webvr</a> <a href="https://twitter.com/hashtag/VirtualReality?src=hash&ref_src=twsrc%5Etfw">#VirtualReality</a> <a href="https://twitter.com/hashtag/aframevr?src=hash&ref_src=twsrc%5Etfw">#aframevr</a> <a href="https://twitter.com/hashtag/javascript?src=hash&ref_src=twsrc%5Etfw">#javascript</a> <a href="https://t.co/vVD9Wz0qSW">pic.twitter.com/vVD9Wz0qSW</a></p>— AlbirrKarim (@albirrkarim) <a href="https://twitter.com/albirrkarim/status/1225952496398422017?ref_src=twsrc%5Etfw">February 8, 2020</a></blockquote>
<blockquote class="twitter-tweet"><p lang="en" dir="ltr">If you're looking for an aquatic VR scene with a gorgeous cel-shaded ocean, <a href="https://twitter.com/Lady_Ada_King?ref_src=twsrc%5Etfw">@Lady_Ada_King</a>'s new <a href="https://twitter.com/aframevr?ref_src=twsrc%5Etfw">@aframevr</a> component is a real Windfall! <a href="https://t.co/2624ZFyDBj">https://t.co/2624ZFyDBj</a></p>— Glitch for Devs! 🎏 (@GlitchDevs) <a href="https://twitter.com/GlitchDevs/status/1225867323048779776?ref_src=twsrc%5Etfw">February 7, 2020</a></blockquote>
<blockquote class="twitter-tweet"><p lang="en" dir="ltr">I'm missing playing football too much so I came up with this mini-game for VR headsets with hand controls.<br><br>It took no more than a couple of hours thanks to <a href="https://twitter.com/aframevr?ref_src=twsrc%5Etfw">@aframevr</a> and the WebXR magic.<a href="https://t.co/pOwxxjkoCa">https://t.co/pOwxxjkoCa</a> <a href="https://t.co/bHKzZrxdGW">pic.twitter.com/bHKzZrxdGW</a></p>— Dan Zajdband 💚 (@impronunciable) <a href="https://twitter.com/impronunciable/status/1250939821385752577?ref_src=twsrc%5Etfw">April 17, 2020</a></blockquote>
<blockquote class="twitter-tweet"><p lang="en" dir="ltr"><a href="https://twitter.com/hashtag/dataviz?src=hash&ref_src=twsrc%5Etfw">#dataviz</a> of current total covid-19 deaths in Brazil. Using <a href="https://twitter.com/aframevr?ref_src=twsrc%5Etfw">@aframevr</a> . <a href="https://t.co/7CxjQ87WUn">pic.twitter.com/7CxjQ87WUn</a></p>— jrmasiero (@jrmasiero) <a href="https://twitter.com/jrmasiero/status/1255583349562904576?ref_src=twsrc%5Etfw">April 29, 2020</a></blockquote>
<blockquote class="twitter-tweet"><p lang="en" dir="ltr">New version of AnVRopomotron! I invented holoprojectors and a tarsier is here. <a href="https://t.co/0jEFeHoi1m">https://t.co/0jEFeHoi1m</a>. <a href="https://twitter.com/hashtag/WebVR?src=hash&ref_src=twsrc%5Etfw">#WebVR</a> <a href="https://twitter.com/aframevr?ref_src=twsrc%5Etfw">@aframevr</a> <a href="https://t.co/QJilSulRkM">pic.twitter.com/QJilSulRkM</a></p>— Keith Chan (@chekeichan) <a href="https://twitter.com/chekeichan/status/1255561181739184133?ref_src=twsrc%5Etfw">April 29, 2020</a></blockquote>
<blockquote class="twitter-tweet"><p lang="en" dir="ltr">Just discovered <a href="https://t.co/lJTFMrj6PI">https://t.co/lJTFMrj6PI</a> (how did I miss this for so long?) and updated A-Frame <a href="https://twitter.com/aframevr?ref_src=twsrc%5Etfw">@aframevr</a> models example, including an animated model for fun.<a href="https://t.co/1ljWTXBRmq">https://t.co/1ljWTXBRmq</a> <a href="https://t.co/x4XkapnYf6">pic.twitter.com/x4XkapnYf6</a></p>— Lee Stemkoski (@ProfStemkoski) <a href="https://twitter.com/ProfStemkoski/status/1254267272199385090?ref_src=twsrc%5Etfw">April 26, 2020</a></blockquote>
<blockquote class="twitter-tweet"><p lang="und" dir="ltr">.<a href="https://twitter.com/aframevr?ref_src=twsrc%5Etfw">@aframevr</a> <a href="https://twitter.com/glitch?ref_src=twsrc%5Etfw">@glitch</a> <a href="https://t.co/gmHG7fDHZe">pic.twitter.com/gmHG7fDHZe</a></p>— Naoto HIÉDA (@naoto_hieda) <a href="https://twitter.com/naoto_hieda/status/1253801817798062080?ref_src=twsrc%5Etfw">April 24, 2020</a></blockquote>
<blockquote class="twitter-tweet"><p lang="en" dir="ltr">my latest invention: p-code land<br>where you can live code sound in a virtual space<a href="https://t.co/lom3eBvoll">https://t.co/lom3eBvoll</a><a href="https://twitter.com/glitch?ref_src=twsrc%5Etfw">@glitch</a> <a href="https://twitter.com/hysysk?ref_src=twsrc%5Etfw">@hysysk</a> <a href="https://twitter.com/hemokosa?ref_src=twsrc%5Etfw">@hemokosa</a> <a href="https://twitter.com/p5xjs?ref_src=twsrc%5Etfw">@p5xjs</a> <a href="https://twitter.com/ProcessingOrg?ref_src=twsrc%5Etfw">@ProcessingOrg</a> <a href="https://twitter.com/aframevr?ref_src=twsrc%5Etfw">@aframevr</a> <a href="https://t.co/tTiWbNfQPI">pic.twitter.com/tTiWbNfQPI</a></p>— Naoto HIÉDA (@naoto_hieda) <a href="https://twitter.com/naoto_hieda/status/1233750772199886848?ref_src=twsrc%5Etfw">February 29, 2020</a></blockquote>
<blockquote class="twitter-tweet"><p lang="en" dir="ltr">Update of AnVRopomotron is live! See great photos on the walls and the enigmatic Megaladapis. Oh, and teleport in VR. Built with <a href="https://twitter.com/aframevr?ref_src=twsrc%5Etfw">@aframevr</a>. <a href="https://twitter.com/hashtag/webXR?src=hash&ref_src=twsrc%5Etfw">#webXR</a> <a href="https://t.co/0jEFeHoi1m">https://t.co/0jEFeHoi1m</a> <a href="https://t.co/za8A6f8kT0">pic.twitter.com/za8A6f8kT0</a></p>— Keith Chan (@chekeichan) <a href="https://twitter.com/chekeichan/status/1231993541376659460?ref_src=twsrc%5Etfw">February 24, 2020</a></blockquote>
<blockquote class="twitter-tweet"><p lang="en" dir="ltr">Just put some polish on my <a href="https://twitter.com/hashtag/webVR?src=hash&ref_src=twsrc%5Etfw">#webVR</a> target practice game, a little bit of color goes a long way! Give it a go and see how many points you can rack up before the timer runs out.<a href="https://t.co/iHUU3vmBmz">https://t.co/iHUU3vmBmz</a> <a href="https://twitter.com/aframevr?ref_src=twsrc%5Etfw">@aframevr</a> <a href="https://twitter.com/glitch?ref_src=twsrc%5Etfw">@glitch</a> <a href="https://t.co/5tpHodLaGY">pic.twitter.com/5tpHodLaGY</a></p>— Casual Elephant (@CasualElephant) <a href="https://twitter.com/CasualElephant/status/1243932220353470464?ref_src=twsrc%5Etfw">March 28, 2020</a></blockquote>
<blockquote class="twitter-tweet"><p lang="en" dir="ltr"><a href="https://twitter.com/hashtag/pixelcrasher?src=hash&ref_src=twsrc%5Etfw">#pixelcrasher</a> project:<br>Testing reactive <a href="https://twitter.com/hashtag/midi?src=hash&ref_src=twsrc%5Etfw">#midi</a> input + output from <a href="https://twitter.com/Behringer?ref_src=twsrc%5Etfw">@Behringer</a> x-touch controller using <a href="https://twitter.com/hashtag/vuejs?src=hash&ref_src=twsrc%5Etfw">#vuejs</a> <a href="https://twitter.com/hashtag/reactivity?src=hash&ref_src=twsrc%5Etfw">#reactivity</a>. <br>Below: led stripe live visualization using <a href="https://twitter.com/aframevr?ref_src=twsrc%5Etfw">@aframevr</a> <a href="https://t.co/hhACtfUpug">pic.twitter.com/hhACtfUpug</a></p>— Hendrik 💅 (@hputzek) <a href="https://twitter.com/hputzek/status/1243314708301729792?ref_src=twsrc%5Etfw">March 26, 2020</a></blockquote>
<blockquote class="twitter-tweet"><p lang="en" dir="ltr">Next week we're launching the beta of Frame, an immersive creation + collab tool that runs on the web with <a href="https://twitter.com/hashtag/WebXR?src=hash&ref_src=twsrc%5Etfw">#WebXR</a>. It lets you give a new kind of presentation to an audience from desktop, mobile, or VR. Want to try it? <a href="https://t.co/70vqD9Dow4">https://t.co/70vqD9Dow4</a> Inspired <a href="https://twitter.com/ByHubs?ref_src=twsrc%5Etfw">@ByHubs</a>, made w/ <a href="https://twitter.com/aframevr?ref_src=twsrc%5Etfw">@aframevr</a> <a href="https://t.co/PKa6aMLL65">pic.twitter.com/PKa6aMLL65</a></p>— VirBELA (@VirBELA1) <a href="https://twitter.com/VirBELA1/status/1220112740431355905?ref_src=twsrc%5Etfw">January 22, 2020</a></blockquote>
<blockquote class="twitter-tweet"><p lang="en" dir="ltr">Inspired by <a href="https://twitter.com/ddiakopoulos?ref_src=twsrc%5Etfw">@ddiakopoulos</a> to finally get this out there. A WIP research and learning js again project, but maybe it will help motivate me past the numerous monoliths creeping. Thanks to <a href="https://twitter.com/aframevr?ref_src=twsrc%5Etfw">@aframevr</a> <a href="https://twitter.com/threejs_org?ref_src=twsrc%5Etfw">@threejs_org</a> and <a href="https://twitter.com/HaydenLee37?ref_src=twsrc%5Etfw">@HaydenLee37</a>'s *new* Networked-Aframe. <a href="https://t.co/VjG0bcY2wV">https://t.co/VjG0bcY2wV</a></p>— Anthony Scavarelli (@PlumCantaloupe) <a href="https://twitter.com/PlumCantaloupe/status/1220002684805304320?ref_src=twsrc%5Etfw">January 22, 2020</a></blockquote>
<blockquote class="twitter-tweet"><p lang="en" dir="ltr">Just shipped the IdeaSpaceVR release v1.2.2 which implements the new <a href="https://twitter.com/hashtag/WebXR?src=hash&ref_src=twsrc%5Etfw">#WebXR</a> Device API via <a href="https://twitter.com/aframevr?ref_src=twsrc%5Etfw">@aframevr</a> . All themes have been updated as well, so everything should work as expected again. <a href="https://t.co/cnDc6IPLPZ">https://t.co/cnDc6IPLPZ</a> <a href="https://t.co/uiWFHBpfx8">pic.twitter.com/uiWFHBpfx8</a></p>— IdeaSpaceVR (@ideaspacevr) <a href="https://twitter.com/ideaspacevr/status/1219294503204421632?ref_src=twsrc%5Etfw">January 20, 2020</a></blockquote>
<blockquote class="twitter-tweet"><p lang="en" dir="ltr">Working on a new project using <a href="https://twitter.com/aframevr?ref_src=twsrc%5Etfw">@aframevr</a> <a href="https://t.co/rWQsHcr32w">pic.twitter.com/rWQsHcr32w</a></p>— Kodub (@KodubDev) <a href="https://twitter.com/KodubDev/status/1217426329190240256?ref_src=twsrc%5Etfw">January 15, 2020</a></blockquote>
<blockquote class="twitter-tweet"><p lang="en" dir="ltr">New bus stop segment for <a href="https://twitter.com/streetmix?ref_src=twsrc%5Etfw">@streetmix</a> 3D <a href="https://t.co/8nEKqrA3AT">https://t.co/8nEKqrA3AT</a> thanks to Google <a href="https://twitter.com/poly?ref_src=twsrc%5Etfw">@poly</a> and user <a href="https://t.co/FgA4Z7mYuG">https://t.co/FgA4Z7mYuG</a> for the <a href="https://twitter.com/hashtag/creativecommons?src=hash&ref_src=twsrc%5Etfw">#creativecommons</a> model and as always <a href="https://twitter.com/aframevr?ref_src=twsrc%5Etfw">@aframevr</a> and <a href="https://twitter.com/threejs_org?ref_src=twsrc%5Etfw">@threejs_org</a> for making <a href="https://twitter.com/hashtag/webxr?src=hash&ref_src=twsrc%5Etfw">#webxr</a> accessible to so many <a href="https://t.co/fPQOrPfzYD">pic.twitter.com/fPQOrPfzYD</a></p>— Kieran Farr (@kfarr) <a href="https://twitter.com/kfarr/status/1208206771422158849?ref_src=twsrc%5Etfw">December 21, 2019</a></blockquote>
<blockquote class="twitter-tweet"><p lang="en" dir="ltr"><a href="https://twitter.com/hashtag/VR?src=hash&ref_src=twsrc%5Etfw">#VR</a> <a href="https://twitter.com/hashtag/WebXR?src=hash&ref_src=twsrc%5Etfw">#WebXR</a> <a href="https://twitter.com/hashtag/WebVR?src=hash&ref_src=twsrc%5Etfw">#WebVR</a> version of original <a href="https://twitter.com/hashtag/Doom?src=hash&ref_src=twsrc%5Etfw">#Doom</a> using <a href="https://twitter.com/aframevr?ref_src=twsrc%5Etfw">@aframevr</a> v1.0.0 and <a href="https://twitter.com/threejs_org?ref_src=twsrc%5Etfw">@threejs_org</a> <a href="https://t.co/1QOUwclIJx">https://t.co/1QOUwclIJx</a></p>— Ian Belcher (@_IanBelcher_) <a href="https://twitter.com/_IanBelcher_/status/1207521239482261505?ref_src=twsrc%5Etfw">December 19, 2019</a></blockquote>
<blockquote class="twitter-tweet"><p lang="en" dir="ltr">Check out this <a href="https://twitter.com/hashtag/WebVR?src=hash&ref_src=twsrc%5Etfw">#WebVR</a> game I built in the <a href="https://twitter.com/hashtag/8thWall?src=hash&ref_src=twsrc%5Etfw">#8thWall</a> Cloud Editor using <a href="https://twitter.com/aframevr?ref_src=twsrc%5Etfw">@aframevr</a> on Oculus Quest/Go - currently featured on the <a href="https://twitter.com/oculus?ref_src=twsrc%5Etfw">@oculus</a> browser! <a href="https://t.co/WM72lDMVub">https://t.co/WM72lDMVub</a> <a href="https://twitter.com/hashtag/WebXR?src=hash&ref_src=twsrc%5Etfw">#WebXR</a> 🌖🧑🚀 <a href="https://t.co/SQyqpzJOOA">https://t.co/SQyqpzJOOA</a></p>— Rigel (@rigelprime) <a href="https://twitter.com/rigelprime/status/1207445133131538432?ref_src=twsrc%5Etfw">December 18, 2019</a></blockquote>
<blockquote class="twitter-tweet"><p lang="en" dir="ltr">My <a href="https://twitter.com/hashtag/VR?src=hash&ref_src=twsrc%5Etfw">#VR</a> project is out! View primates, fossils, and artifacts in <a href="https://twitter.com/hashtag/WebXR?src=hash&ref_src=twsrc%5Etfw">#WebXR</a>! Made with <a href="https://twitter.com/aframevr?ref_src=twsrc%5Etfw">@aframevr</a> <a href="https://t.co/hdiypfuVop">https://t.co/hdiypfuVop</a> <a href="https://t.co/CDUtDexYk9">pic.twitter.com/CDUtDexYk9</a></p>— DrKeithCChan (@drkeithcchan) <a href="https://twitter.com/drkeithcchan/status/1217217353462599680?ref_src=twsrc%5Etfw">January 14, 2020</a></blockquote>
<blockquote class="twitter-tweet"><p lang="en" dir="ltr">User testing with my daughter -- she says the train must go underground instead. <a href="https://twitter.com/aframevr?ref_src=twsrc%5Etfw">@aframevr</a> inspector makes it easy to try out new configurations! <a href="https://twitter.com/hashtag/webxr?src=hash&ref_src=twsrc%5Etfw">#webxr</a> Try it yourself, press < ctrl + alt (option) + i > in a modern desktop browser after this scene loads: <a href="https://t.co/IKYo7qSwm8">https://t.co/IKYo7qSwm8</a> <a href="https://t.co/7JTgCdO83q">pic.twitter.com/7JTgCdO83q</a></p>— Kieran Farr (@kfarr) <a href="https://twitter.com/kfarr/status/1216073807888183297?ref_src=twsrc%5Etfw">January 11, 2020</a></blockquote>
<blockquote class="twitter-tweet"><p lang="en" dir="ltr">inside View Dome with ScreenSharing <a href="https://twitter.com/hashtag/webgl?src=hash&ref_src=twsrc%5Etfw">#webgl</a> <a href="https://twitter.com/hashtag/webxr?src=hash&ref_src=twsrc%5Etfw">#webxr</a> <a href="https://twitter.com/hashtag/webvr?src=hash&ref_src=twsrc%5Etfw">#webvr</a> <a href="https://twitter.com/aframevr?ref_src=twsrc%5Etfw">@aframevr</a> <a href="https://twitter.com/threejs_org?ref_src=twsrc%5Etfw">@threejs_org</a> <a href="https://twitter.com/hashtag/p2p?src=hash&ref_src=twsrc%5Etfw">#p2p</a> <a href="https://t.co/fi3ntO4WYv">pic.twitter.com/fi3ntO4WYv</a></p>— vrlandio (@vrlandio) <a href="https://twitter.com/vrlandio/status/1214887194306994177?ref_src=twsrc%5Etfw">January 8, 2020</a></blockquote>
<blockquote class="twitter-tweet"><p lang="en" dir="ltr">working on a new room! <a href="https://twitter.com/hashtag/multiplayer?src=hash&ref_src=twsrc%5Etfw">#multiplayer</a> <a href="https://twitter.com/hashtag/p2p?src=hash&ref_src=twsrc%5Etfw">#p2p</a> <a href="https://twitter.com/hashtag/threejs?src=hash&ref_src=twsrc%5Etfw">#threejs</a> <a href="https://twitter.com/hashtag/webgl?src=hash&ref_src=twsrc%5Etfw">#webgl</a> <a href="https://twitter.com/hashtag/webxr?src=hash&ref_src=twsrc%5Etfw">#webxr</a> <a href="https://twitter.com/hashtag/webvr?src=hash&ref_src=twsrc%5Etfw">#webvr</a> <a href="https://twitter.com/aframevr?ref_src=twsrc%5Etfw">@aframevr</a> <a href="https://twitter.com/oculus?ref_src=twsrc%5Etfw">@oculus</a> <a href="https://t.co/Hd2oNyqfdK">pic.twitter.com/Hd2oNyqfdK</a></p>— vrlandio (@vrlandio) <a href="https://twitter.com/vrlandio/status/1214609973969391616?ref_src=twsrc%5Etfw">January 7, 2020</a></blockquote>
<blockquote class="twitter-tweet"><p lang="en" dir="ltr">my new invention: Visitor Count VR 2⃣0⃣2⃣0⃣<a href="https://t.co/0liYDiMY1H">https://t.co/0liYDiMY1H</a><br>thanks to <a href="https://twitter.com/glitch?ref_src=twsrc%5Etfw">@glitch</a> <a href="https://twitter.com/p5xjs?ref_src=twsrc%5Etfw">@p5xjs</a> <a href="https://twitter.com/aframevr?ref_src=twsrc%5Etfw">@aframevr</a> <a href="https://t.co/qFimTWulWW">pic.twitter.com/qFimTWulWW</a></p>— Naoto HIÉDA (@naoto_hieda) <a href="https://twitter.com/naoto_hieda/status/1239249291304148992?ref_src=twsrc%5Etfw">March 15, 2020</a></blockquote>
<blockquote class="twitter-tweet"><p lang="ja" dir="ltr">A-Frameで使うオブジェクト自作を<br>3DF Zephyr Lite 試用版でフォトグラメトリ 😃<br><br>私由来の難ありだけど A-Frameで表示できた ♥️<br><br>Blender初挑戦!と起動したけど<br>長短あるけど3D-CAD経験、3業種製図経験があり<br>ゼロから描くのはと3Dスキャンに方向転換<a href="https://twitter.com/hashtag/WebVR?src=hash&ref_src=twsrc%5Etfw">#WebVR</a> <a href="https://twitter.com/hashtag/A?src=hash&ref_src=twsrc%5Etfw">#A</a>-Frame <a href="https://twitter.com/hashtag/Aframevr?src=hash&ref_src=twsrc%5Etfw">#Aframevr</a> <a href="https://twitter.com/hashtag/photogrammetry?src=hash&ref_src=twsrc%5Etfw">#photogrammetry</a> <a href="https://t.co/7NoUjkxuhi">pic.twitter.com/7NoUjkxuhi</a></p>— カフェラテ (@Cafe_latte_Tea) <a href="https://twitter.com/Cafe_latte_Tea/status/1237033028779528195?ref_src=twsrc%5Etfw">March 9, 2020</a></blockquote>
<blockquote class="twitter-tweet"><p lang="en" dir="ltr">The 3. and last panorama from <a href="https://twitter.com/KlassikStiftung?ref_src=twsrc%5Etfw">@KlassikStiftung</a>. It's a <a href="https://twitter.com/hashtag/VR?src=hash&ref_src=twsrc%5Etfw">#VR</a> "View of <a href="https://twitter.com/hashtag/Berlin?src=hash&ref_src=twsrc%5Etfw">#Berlin</a> from the roof of the dome" from an ~200 year old <a href="https://twitter.com/kpmberlin?ref_src=twsrc%5Etfw">@kpmberlin</a> vase:<a href="https://t.co/eOOcpUx98m">https://t.co/eOOcpUx98m</a><br><br>As usual I used: @gmic_ip <a href="https://twitter.com/GIMP_Official?ref_src=twsrc%5Etfw">@GIMP_Official</a> <a href="https://twitter.com/exiftool?ref_src=twsrc%5Etfw">@exiftool</a> <a href="https://twitter.com/aframevr?ref_src=twsrc%5Etfw">@aframevr</a>.<a href="https://twitter.com/lgworld?ref_src=twsrc%5Etfw">@lgworld</a> <a href="https://twitter.com/hashtag/FOSS?src=hash&ref_src=twsrc%5Etfw">#FOSS</a> <a href="https://twitter.com/hashtag/FreeSoftware?src=hash&ref_src=twsrc%5Etfw">#FreeSoftware</a> <a href="https://twitter.com/hashtag/ArtWithOpenSource?src=hash&ref_src=twsrc%5Etfw">#ArtWithOpenSource</a> <a href="https://t.co/oHvu9BtG8i">pic.twitter.com/oHvu9BtG8i</a></p>— tobias (@tobias24617399) <a href="https://twitter.com/tobias24617399/status/1225084881388044289?ref_src=twsrc%5Etfw">February 5, 2020</a></blockquote>
<blockquote class="twitter-tweet"><p lang="en" dir="ltr">Your votes are in! <a href="https://twitter.com/streetmix?ref_src=twsrc%5Etfw">@streetmix</a> 3d bidirectional bike paths show short dashed lines (instead of double yellow). Made easy w/ <a href="https://twitter.com/aframevr?ref_src=twsrc%5Etfw">@aframevr</a> mixins, added a new mixin to tint existing stripe MUTCD yellow (pantone 116 / hex <a href="https://twitter.com/hashtag/f7d117?src=hash&ref_src=twsrc%5Etfw">#f7d117</a>) and one to shorten dash texture <a href="https://t.co/dP6T6q7Lts">https://t.co/dP6T6q7Lts</a> <a href="https://t.co/fs131gNKDt">pic.twitter.com/fs131gNKDt</a></p>— Kieran Farr (@kfarr) <a href="https://twitter.com/kfarr/status/1224548440882872320?ref_src=twsrc%5Etfw">February 4, 2020</a></blockquote>
<blockquote class="twitter-tweet"><p lang="en" dir="ltr">Two Models, One Controller! I can now move and animate both unique models.<br> <a href="https://t.co/9XrUQ94Zke">https://t.co/9XrUQ94Zke</a> <a href="https://twitter.com/aframevr?ref_src=twsrc%5Etfw">@aframevr</a> <a href="https://twitter.com/hashtag/threejs?src=hash&ref_src=twsrc%5Etfw">#threejs</a></p>— ripter001 (@ripter001) <a href="https://twitter.com/ripter001/status/1222921647050481665?ref_src=twsrc%5Etfw">January 30, 2020</a></blockquote>
<blockquote class="twitter-tweet"><p lang="en" dir="ltr">A minimalist social <a href="https://twitter.com/hashtag/VR?src=hash&ref_src=twsrc%5Etfw">#VR</a> environment can be setup in minutes!<br><br>Here using Spoke I exported the scene to <a href="https://twitter.com/glTF3D?ref_src=twsrc%5Etfw">@glTF3D</a>, loaded it in the Networked <a href="https://twitter.com/aframevr?ref_src=twsrc%5Etfw">@AFrameVR</a> <a href="https://twitter.com/glitch?ref_src=twsrc%5Etfw">@Glitch</a> by <a href="https://twitter.com/HaydenLee37?ref_src=twsrc%5Etfw">@HaydenLee37</a> & voila <a href="https://t.co/qENBaHm4ht">https://t.co/qENBaHm4ht</a><a href="https://twitter.com/MozillaHubs?ref_src=twsrc%5Etfw">@MozillaHubs</a> is amazing but sometimes you need something leaner. <a href="https://t.co/fqOf5DFHdk">pic.twitter.com/fqOf5DFHdk</a></p>— Fabien Benetou (@utopiah) <a href="https://twitter.com/utopiah/status/1252262565847150592?ref_src=twsrc%5Etfw">April 20, 2020</a></blockquote>
<blockquote class="twitter-tweet"><p lang="en" dir="ltr">Today I made a nearly empty world where I can do something.<a href="https://twitter.com/hashtag/aframevr?src=hash&ref_src=twsrc%5Etfw">#aframevr</a><a href="https://t.co/i1S9uDOmmS">https://t.co/i1S9uDOmmS</a> <a href="https://t.co/EH36ClweXa">pic.twitter.com/EH36ClweXa</a></p>— Joe Simpson (@radicalappdev) <a href="https://twitter.com/radicalappdev/status/1251944762107662337?ref_src=twsrc%5Etfw">April 19, 2020</a></blockquote>
<blockquote class="twitter-tweet"><p lang="en" dir="ltr">just realised WebXR's AR module can be used for fake-VR, and that <a href="https://twitter.com/aframevr?ref_src=twsrc%5Etfw">@aframevr</a> supports AR out of the box <a href="https://t.co/KTsZSv1dsc">pic.twitter.com/KTsZSv1dsc</a></p>— Firepal (@Firepal3D) <a href="https://twitter.com/Firepal3D/status/1251828195252453379?ref_src=twsrc%5Etfw">April 19, 2020</a></blockquote>
<blockquote class="twitter-tweet"><p lang="en" dir="ltr">Shall we in the future teach, learn and communicate science with open, web-based augmented reality. Here chemistry and structural biology <a href="https://twitter.com/EducatorsVR?ref_src=twsrc%5Etfw">@EducatorsVR</a> <a href="https://twitter.com/vreducation?ref_src=twsrc%5Etfw">@vreducation</a> <a href="https://twitter.com/aframevr?ref_src=twsrc%5Etfw">@aframevr</a> <a href="https://twitter.com/GoogleARVR?ref_src=twsrc%5Etfw">@GoogleARVR</a> <a href="https://twitter.com/nicolocarp?ref_src=twsrc%5Etfw">@nicolocarp</a> <a href="https://twitter.com/ACSDivCHED?ref_src=twsrc%5Etfw">@ACSDivCHED</a> <a href="https://twitter.com/BAMBEdu?ref_src=twsrc%5Etfw">@BAMBEdu</a> <a href="https://twitter.com/threejs_org?ref_src=twsrc%5Etfw">@threejs_org</a> <a href="https://twitter.com/AR_bulletin?ref_src=twsrc%5Etfw">@AR_bulletin</a> <a href="https://t.co/pqDlSUjO0Y">https://t.co/pqDlSUjO0Y</a> <a href="https://t.co/CAYd5or0ku">pic.twitter.com/CAYd5or0ku</a></p>— Luciano Abriata (@labriataphd) <a href="https://twitter.com/labriataphd/status/1229837453172846592?ref_src=twsrc%5Etfw">February 18, 2020</a></blockquote>
<blockquote class="twitter-tweet"><p lang="en" dir="ltr">Starting to add real walls! I also made a camera control. very basic right now. <a href="https://twitter.com/aframevr?ref_src=twsrc%5Etfw">@aframevr</a> <a href="https://twitter.com/hashtag/threejs?src=hash&ref_src=twsrc%5Etfw">#threejs</a> <a href="https://twitter.com/hashtag/indiedev?src=hash&ref_src=twsrc%5Etfw">#indiedev</a> <a href="https://t.co/FpZA5zBBKz">https://t.co/FpZA5zBBKz</a></p>— ripter001 (@ripter001) <a href="https://twitter.com/ripter001/status/1229288456745959424?ref_src=twsrc%5Etfw">February 17, 2020</a></blockquote>
<blockquote class="twitter-tweet"><p lang="en" dir="ltr">Frame from VirBELA Labs is here in beta! <a href="https://t.co/cPFzyV0tDE">https://t.co/cPFzyV0tDE</a> This is a browser-based, multi-user site for meetings, presentations, tours, more. Desktop, mobile, and VR! Powered by WebXR, <a href="https://twitter.com/aframevr?ref_src=twsrc%5Etfw">@aframevr</a>, <a href="https://twitter.com/vuejs?ref_src=twsrc%5Etfw">@vuejs</a>, and more. Fantastic working w/ <a href="https://twitter.com/DanSinni?ref_src=twsrc%5Etfw">@DanSinni</a> + <a href="https://twitter.com/rvdleun?ref_src=twsrc%5Etfw">@rvdleun</a> on this. <a href="https://twitter.com/hashtag/vr?src=hash&ref_src=twsrc%5Etfw">#vr</a> <a href="https://t.co/nz95NmLmEm">pic.twitter.com/nz95NmLmEm</a></p>— Gabriel Baker (@gabrieljbaker) <a href="https://twitter.com/gabrieljbaker/status/1222228058670678016?ref_src=twsrc%5Etfw">January 28, 2020</a></blockquote>
<blockquote class="twitter-tweet"><p lang="en" dir="ltr">Time to invoke the spirit of <a href="https://twitter.com/BobRossOfficial?ref_src=twsrc%5Etfw">@BobRossOfficial</a> and add some happy little trees to <a href="https://twitter.com/streetmix?ref_src=twsrc%5Etfw">@streetmix</a> 3D! <a href="https://t.co/8nEKqrA3AT">https://t.co/8nEKqrA3AT</a><br><br>🌴trees thx to <a href="https://twitter.com/alexsafayan?ref_src=twsrc%5Etfw">@alexsafayan</a> via <a href="https://twitter.com/poly?ref_src=twsrc%5Etfw">@poly</a> (CC) 🌳trees thx to <a href="https://twitter.com/SyntyStudios?ref_src=twsrc%5Etfw">@SyntyStudios</a> polygon city pack via <a href="https://twitter.com/Sketchfab?ref_src=twsrc%5Etfw">@Sketchfab</a> store (paid) <br><br>and as always thx 🅰️ <a href="https://twitter.com/aframevr?ref_src=twsrc%5Etfw">@aframevr</a> <a href="https://t.co/DjSXoyg0po">pic.twitter.com/DjSXoyg0po</a></p>— Kieran Farr (@kfarr) <a href="https://twitter.com/kfarr/status/1209638029276721153?ref_src=twsrc%5Etfw">December 25, 2019</a></blockquote>
<blockquote class="twitter-tweet"><p lang="en" dir="ltr">Happy VR Holidays! I gift you "The Island" in WebXR, with only some minor bugs . . . <a href="https://t.co/JPemEhKY73">https://t.co/JPemEhKY73</a> <a href="https://twitter.com/aframevr?ref_src=twsrc%5Etfw">@aframevr</a> <a href="https://twitter.com/hashtag/threejs?src=hash&ref_src=twsrc%5Etfw">#threejs</a> <a href="https://twitter.com/hashtag/webvr?src=hash&ref_src=twsrc%5Etfw">#webvr</a> <a href="https://twitter.com/hashtag/webxr?src=hash&ref_src=twsrc%5Etfw">#webxr</a> <a href="https://twitter.com/hashtag/aframe?src=hash&ref_src=twsrc%5Etfw">#aframe</a> <a href="https://twitter.com/hashtag/webdev?src=hash&ref_src=twsrc%5Etfw">#webdev</a> <a href="https://twitter.com/hashtag/VR?src=hash&ref_src=twsrc%5Etfw">#VR</a> <a href="https://twitter.com/hashtag/webdevelopment?src=hash&ref_src=twsrc%5Etfw">#webdevelopment</a> <a href="https://t.co/j4eUjFFxVT">pic.twitter.com/j4eUjFFxVT</a></p>— Michael McAnally (@Michael_Blade) <a href="https://twitter.com/Michael_Blade/status/1209237227051483136?ref_src=twsrc%5Etfw">December 23, 2019</a></blockquote>
<blockquote class="twitter-tweet"><p lang="en" dir="ltr">Had a lot of fun making the <a href="https://twitter.com/hashtag/3D?src=hash&ref_src=twsrc%5Etfw">#3D</a> home page for the new Voodoo People website over at <a href="https://t.co/6bHs7Qdjdd">https://t.co/6bHs7Qdjdd</a> in December! Scene created using <a href="https://twitter.com/aframevr?ref_src=twsrc%5Etfw">@aframevr</a> <a href="https://t.co/x9HiJ0ub9d">pic.twitter.com/x9HiJ0ub9d</a></p>— Planet Voodoo (@PlanetVoodoo) <a href="https://twitter.com/PlanetVoodoo/status/1213507638727729152?ref_src=twsrc%5Etfw">January 4, 2020</a></blockquote>
<blockquote class="twitter-tweet"><p lang="en" dir="ltr">We recreated our home on <a href="https://twitter.com/hashtag/Carova?src=hash&ref_src=twsrc%5Etfw">#Carova</a> beach in <a href="https://twitter.com/hashtag/Corolla?src=hash&ref_src=twsrc%5Etfw">#Corolla</a> <a href="https://twitter.com/hashtag/NC?src=hash&ref_src=twsrc%5Etfw">#NC</a> for 2020. Check out the new Planet Voodoo <a href="https://twitter.com/hashtag/3D?src=hash&ref_src=twsrc%5Etfw">#3D</a> <a href="https://twitter.com/hashtag/website?src=hash&ref_src=twsrc%5Etfw">#website</a> <a href="https://twitter.com/hashtag/design?src=hash&ref_src=twsrc%5Etfw">#design</a> at <a href="https://t.co/Xh6K273tUQ">https://t.co/Xh6K273tUQ</a> built using <a href="https://twitter.com/aframevr?ref_src=twsrc%5Etfw">@aframevr</a> <a href="https://t.co/aojVhbUKBR">pic.twitter.com/aojVhbUKBR</a></p>— Planet Voodoo (@PlanetVoodoo) <a href="https://twitter.com/PlanetVoodoo/status/1213505423329890304?ref_src=twsrc%5Etfw">January 4, 2020</a></blockquote>
<blockquote class="twitter-tweet"><p lang="en" dir="ltr">New Project: VARTISTE. A VR 2D drawing / painting app made using <a href="https://twitter.com/aframevr?ref_src=twsrc%5Etfw">@aframevr</a>: <a href="https://t.co/ZABQBUhppA">https://t.co/ZABQBUhppA</a> <a href="https://twitter.com/hashtag/VR?src=hash&ref_src=twsrc%5Etfw">#VR</a> <a href="https://twitter.com/hashtag/VRART?src=hash&ref_src=twsrc%5Etfw">#VRART</a> <a href="https://t.co/xUoPZgj6u6">pic.twitter.com/xUoPZgj6u6</a></p>— Zach Capalbo (@zach_geek) <a href="https://twitter.com/zach_geek/status/1212570261016449032?ref_src=twsrc%5Etfw">January 2, 2020</a></blockquote>
<blockquote class="twitter-tweet"><p lang="en" dir="ltr">I spent the morning playing with color, animation, and sound in <a href="https://twitter.com/hashtag/WebVR?src=hash&ref_src=twsrc%5Etfw">#WebVR</a> and <a href="https://twitter.com/hashtag/aframevr?src=hash&ref_src=twsrc%5Etfw">#aframevr</a><a href="https://t.co/Be4122Uylh">https://t.co/Be4122Uylh</a> <a href="https://t.co/WydwsMO0Ob">pic.twitter.com/WydwsMO0Ob</a></p>— Joe Simpson (@radicalappdev) <a href="https://twitter.com/radicalappdev/status/1259506131329785856?ref_src=twsrc%5Etfw">May 10, 2020</a></blockquote>
<blockquote class="twitter-tweet"><p lang="en" dir="ltr">my virtual exhibition 004 has been a great success. I already started working on 005 but it's never been finished and it will not be finished. You can at least see the gallery that is always under construction 🚧🚧 <a href="https://t.co/lPzU8SdCsC">https://t.co/lPzU8SdCsC</a> <a href="https://twitter.com/glitch?ref_src=twsrc%5Etfw">@glitch</a> <a href="https://twitter.com/aframevr?ref_src=twsrc%5Etfw">@aframevr</a> <a href="https://t.co/uOBHlsRmp3">pic.twitter.com/uOBHlsRmp3</a></p>— Naoto HIÉDA (@naoto_hieda) <a href="https://twitter.com/naoto_hieda/status/1258815869729280000?ref_src=twsrc%5Etfw">May 8, 2020</a></blockquote>
<blockquote class="twitter-tweet"><p lang="en" dir="ltr"><a href="https://twitter.com/aframevr?ref_src=twsrc%5Etfw">@aframevr</a> is so useful for rapidly prototyping complex stuff like this!! <a href="https://t.co/0cMTrHRyVZ">https://t.co/0cMTrHRyVZ</a></p>— Andrés Cuervo (@cwervo) <a href="https://twitter.com/cwervo/status/1260263117625401360?ref_src=twsrc%5Etfw">May 12, 2020</a></blockquote>
<blockquote class="twitter-tweet"><p lang="en" dir="ltr">I just posted my tutorial <a href="https://t.co/pIBb4tqmNb">https://t.co/pIBb4tqmNb</a> on how to "Build a <a href="https://twitter.com/hashtag/WebAR?src=hash&ref_src=twsrc%5Etfw">#WebAR</a> Live Video <a href="https://twitter.com/hashtag/Streaming?src=hash&ref_src=twsrc%5Etfw">#Streaming</a> Web-App" using <a href="https://twitter.com/ARjs_Library?ref_src=twsrc%5Etfw">@ARjs_Library</a> with <a href="https://twitter.com/aframevr?ref_src=twsrc%5Etfw">@aframevr</a> and <a href="https://twitter.com/AgoraIO?ref_src=twsrc%5Etfw">@AgoraIO</a><a href="https://twitter.com/hashtag/madewitharjs?src=hash&ref_src=twsrc%5Etfw">#madewitharjs</a> <a href="https://twitter.com/hashtag/poweredbyagora?src=hash&ref_src=twsrc%5Etfw">#poweredbyagora</a><a href="https://twitter.com/hashtag/AugmentedReality?src=hash&ref_src=twsrc%5Etfw">#AugmentedReality</a> <a href="https://twitter.com/hashtag/javascript?src=hash&ref_src=twsrc%5Etfw">#javascript</a> <a href="https://t.co/po8HsvCBQi">pic.twitter.com/po8HsvCBQi</a></p>— Hermes Frangoudis (@hermes_f) <a href="https://twitter.com/hermes_f/status/1261480470983905286?ref_src=twsrc%5Etfw">May 16, 2020</a></blockquote>
</div>
<h2 id="components"><a href="#components" class="headerlink" title="Components"></a>Components</h2><div class="tweets">
<blockquote class="twitter-tweet"><p lang="en" dir="ltr">Introducing a component to navigate A-Frame scenes (for desktop/keyboard): extended WASD controls. Enables turn left/right, fly up/down, look up/down. Controls/settings are completely customizable; can be applied to camera or other entities. <a href="https://twitter.com/aframevr?ref_src=twsrc%5Etfw">@aframevr</a> <a href="https://t.co/X890LiaOrQ">https://t.co/X890LiaOrQ</a> <a href="https://t.co/pVxI8pBs3l">pic.twitter.com/pVxI8pBs3l</a></p>— Lee Stemkoski (@ProfStemkoski) <a href="https://twitter.com/ProfStemkoski/status/1249417117847433217?ref_src=twsrc%5Etfw">April 12, 2020</a></blockquote>
<blockquote class="twitter-tweet"><p lang="en" dir="ltr">Working on some new A-Frame examples illustrating pre-built components: environment, keyboard, physics. <a href="https://t.co/X890LiaOrQ">https://t.co/X890LiaOrQ</a><a href="https://twitter.com/aframevr?ref_src=twsrc%5Etfw">@aframevr</a> <a href="https://t.co/g4HbHCk5lu">pic.twitter.com/g4HbHCk5lu</a></p>— Lee Stemkoski (@ProfStemkoski) <a href="https://twitter.com/ProfStemkoski/status/1249143950071431208?ref_src=twsrc%5Etfw">April 12, 2020</a></blockquote>
<blockquote class="twitter-tweet"><p lang="en" dir="ltr">I implemented <a href="https://t.co/a1BYEU6mfo">https://t.co/a1BYEU6mfo</a> to draw multiple lines in a single draw call. Not very flashy, but they’re cheap, and you can do clever things with them like the Gosper curve in the example. <a href="https://twitter.com/aframevr?ref_src=twsrc%5Etfw">@aframevr</a></p>— Doug Reeder (@reeder29) <a href="https://twitter.com/reeder29/status/1236152446981939205?ref_src=twsrc%5Etfw">March 7, 2020</a></blockquote>
<blockquote class="twitter-tweet"><p lang="en" dir="ltr">Using the forbidden THREE.RectAreaLight in A-Frame for simulating light emitting from a screen cause i'm a crazy mfer<br><br>I'm considering making area lights available directly from <a href="https://twitter.com/aframevr?ref_src=twsrc%5Etfw">@aframevr</a>'s "light" component now, even though they don't support shadows <a href="https://t.co/KtJIFpcGmG">pic.twitter.com/KtJIFpcGmG</a></p>— Firepal (@Firepal3D) <a href="https://twitter.com/Firepal3D/status/1225785904620503045?ref_src=twsrc%5Etfw">February 7, 2020</a></blockquote>
<blockquote class="twitter-tweet"><p lang="en" dir="ltr">Introducing new A-Frame <a href="https://twitter.com/aframevr?ref_src=twsrc%5Etfw">@aframevr</a> components to create curves and tubes specified by parametric equations. Functions entered as strings and parsed with <a href="https://t.co/4yOa006nzs">https://t.co/4yOa006nzs</a>. <br><br>Example at: <a href="https://t.co/2LIOPyw0NB">https://t.co/2LIOPyw0NB</a> <a href="https://t.co/BhA1XnfFxI">pic.twitter.com/BhA1XnfFxI</a></p>— Lee Stemkoski (@ProfStemkoski) <a href="https://twitter.com/ProfStemkoski/status/1253879516403044353?ref_src=twsrc%5Etfw">April 25, 2020</a></blockquote>
<blockquote class="twitter-tweet"><p lang="en" dir="ltr">Made a quick GitHub page this morning to help other <a href="https://twitter.com/hashtag/webdevelopers?src=hash&ref_src=twsrc%5Etfw">#webdevelopers</a> get a simple progress-based <a href="https://twitter.com/hashtag/HTML5?src=hash&ref_src=twsrc%5Etfw">#HTML5</a> <a href="https://twitter.com/hashtag/loader?src=hash&ref_src=twsrc%5Etfw">#loader</a> working on their <a href="https://twitter.com/aframevr?ref_src=twsrc%5Etfw">@aframevr</a> projects. Will add more examples and improve the documentation later... <a href="https://t.co/oo3b4rBvPq">https://t.co/oo3b4rBvPq</a></p>— Planet Voodoo (@PlanetVoodoo) <a href="https://twitter.com/PlanetVoodoo/status/1218615026694737921?ref_src=twsrc%5Etfw">January 18, 2020</a></blockquote>
<blockquote class="twitter-tweet"><p lang="en" dir="ltr">Made a simple aframe-outline component based on an example by the great <a href="https://twitter.com/ProfStemkoski?ref_src=twsrc%5Etfw">@ProfStemkoski</a> .<a href="https://twitter.com/aframevr?ref_src=twsrc%5Etfw">@aframevr</a> <a href="https://t.co/2ogbUQE5ac">https://t.co/2ogbUQE5ac</a></p>— SirFizX (@SirFizX207) <a href="https://twitter.com/SirFizX207/status/1208861773320900613?ref_src=twsrc%5Etfw">December 22, 2019</a></blockquote>
<blockquote class="twitter-tweet"><p lang="en" dir="ltr">Working on particle effects in A-Frame <a href="https://twitter.com/aframevr?ref_src=twsrc%5Etfw">@aframevr</a>. <br><br>Best component I've seen is (seemingly little-known) <a href="https://t.co/iwDQ14kdAb">https://t.co/iwDQ14kdAb</a> which gives full access to *all* features in <a href="https://twitter.com/LukeMoody?ref_src=twsrc%5Etfw">@LukeMoody</a> Shader Particle Engine from <a href="https://t.co/VvjVl0ELjJ">https://t.co/VvjVl0ELjJ</a>.<br><br>Live demo at: <a href="https://t.co/PFTF8XoXsx">https://t.co/PFTF8XoXsx</a> <a href="https://t.co/YPEDsI68YA">pic.twitter.com/YPEDsI68YA</a></p>— Lee Stemkoski (@ProfStemkoski) <a href="https://twitter.com/ProfStemkoski/status/1251159193882554376?ref_src=twsrc%5Etfw">April 17, 2020</a></blockquote>
</div>
<h2 id="articles"><a href="#articles" class="headerlink" title="Articles"></a>Articles</h2><div class="tweets">
<blockquote class="twitter-tweet"><p lang="en" dir="ltr">Learn about image tracking 🖼 and location based AR 🌍 with AR.js 3 and <a href="https://twitter.com/aframevr?ref_src=twsrc%5Etfw">@aframevr</a> - <a href="https://twitter.com/nicolocarp?ref_src=twsrc%5Etfw">@nicolocarp</a> teaches you how in our latest blog post 👨🏫 <a href="https://t.co/70U6LVaIXk">https://t.co/70U6LVaIXk</a> <a href="https://t.co/KkEX3DaHpp">pic.twitter.com/KkEX3DaHpp</a></p>— A-Frame (@aframevr) <a href="https://twitter.com/aframevr/status/1243298916071694344?ref_src=twsrc%5Etfw">March 26, 2020</a></blockquote>
<blockquote class="twitter-tweet"><p lang="en" dir="ltr">Apparently, <a href="https://twitter.com/aframevr?ref_src=twsrc%5Etfw">@aframevr</a> version 0.9.0 brook and the WebVR game I developed more than a year ago did weird stuff for a few months 😢<br><br>Updated it to 0.9.2 and now it's all good again! <br><br>Horray 🎉<br><br>Updated the tutorial as well, enjoy:<a href="https://t.co/bjsQiJ8o8C">https://t.co/bjsQiJ8o8C</a></p>— Adi Polak (@AdiPolak) <a href="https://twitter.com/AdiPolak/status/1230604366098423817?ref_src=twsrc%5Etfw">February 20, 2020</a></blockquote>
</div>
<h2 id="events"><a href="#events" class="headerlink" title="Events"></a>Events</h2><div class="tweets">
<blockquote class="twitter-tweet"><p lang="en" dir="ltr">Very excited kicking off with my ideation talk for immersive XR projects as <a href="https://twitter.com/hashtag/WebXR?src=hash&ref_src=twsrc%5Etfw">#WebXR</a> mentor <a href="https://twitter.com/NYUADHackathon?ref_src=twsrc%5Etfw">@NYUADHackathon</a> for Social Good in the Arab World! <a href="https://twitter.com/hashtag/NYUADHack?src=hash&ref_src=twsrc%5Etfw">#NYUADHack</a> is tackling global challenges of <a href="https://twitter.com/hashtag/COVID19?src=hash&ref_src=twsrc%5Etfw">#COVID19</a> and we'll be prototyping in <a href="https://twitter.com/aframevr?ref_src=twsrc%5Etfw">@aframevr</a> - 🙏💯 <a href="https://twitter.com/pichyaGames?ref_src=twsrc%5Etfw">@pichyaGames</a> for bringing me on! <a href="https://t.co/ZgCh01FbB8">pic.twitter.com/ZgCh01FbB8</a></p>— Roland Dubois (@rolanddubois) <a href="https://twitter.com/rolanddubois/status/1249396224005980167?ref_src=twsrc%5Etfw">April 12, 2020</a></blockquote>
<blockquote class="twitter-tweet"><p lang="en" dir="ltr">Ready to go live on the LiveCodersConference! My session about <a href="https://twitter.com/hashtag/WebXR?src=hash&ref_src=twsrc%5Etfw">#WebXR</a> and <a href="https://twitter.com/aframevr?ref_src=twsrc%5Etfw">@aframevr</a> starts in 45 mins at 6:15PDT/15:15CET<a href="https://t.co/U0aA2XDNWm">https://t.co/U0aA2XDNWm</a> <a href="https://t.co/LJVyPC9Z1v">pic.twitter.com/LJVyPC9Z1v</a></p>— 🌷𝗦𝗼𝗿𝘀𝗸𝗼𝗼𝘁🌷 (@Sorskoot) <a href="https://twitter.com/Sorskoot/status/1248227549420736513?ref_src=twsrc%5Etfw">April 9, 2020</a></blockquote>
<blockquote class="twitter-tweet"><p lang="en" dir="ltr">What's happening with browser delivered <a href="https://twitter.com/hashtag/XR?src=hash&ref_src=twsrc%5Etfw">#XR</a>? Here u go <a href="https://t.co/pe15r6anQJ">https://t.co/pe15r6anQJ</a><br>And <a href="https://t.co/jM1rZlHd5T">https://t.co/jM1rZlHd5T</a> looks interesting. Know of other browser-accessible persistent worlds suitable for non-techy gen public I'm all ears. Courtesy: <a href="https://twitter.com/dougsillars?ref_src=twsrc%5Etfw">@dougsillars</a> <a href="https://twitter.com/aframevr?ref_src=twsrc%5Etfw">@aframevr</a> <a href="https://twitter.com/gdgreading?ref_src=twsrc%5Etfw">@gdgreading</a> <a href="https://twitter.com/hashtag/AR?src=hash&ref_src=twsrc%5Etfw">#AR</a> <a href="https://twitter.com/hashtag/VR?src=hash&ref_src=twsrc%5Etfw">#VR</a></p>— Brendan Ridge (@Exploring_MR) <a href="https://twitter.com/Exploring_MR/status/1247364382243172354?ref_src=twsrc%5Etfw">April 7, 2020</a></blockquote>
<blockquote class="twitter-tweet"><p lang="en" dir="ltr"><a href="https://twitter.com/dulce303?ref_src=twsrc%5Etfw">@dulce303</a> is presenting the <a href="https://twitter.com/aframevr?ref_src=twsrc%5Etfw">@aframevr</a> <a href="https://twitter.com/mitrealityhack?ref_src=twsrc%5Etfw">@mitrealityhack</a> workshop - excited to see how many teams are building <a href="https://twitter.com/hashtag/webxr?src=hash&ref_src=twsrc%5Etfw">#webxr</a> this year 🕺 <a href="https://t.co/LM2atnf0Oc">pic.twitter.com/LM2atnf0Oc</a></p>— Roland Dubois (@rolanddubois) <a href="https://twitter.com/rolanddubois/status/1217835670888161280?ref_src=twsrc%5Etfw">January 16, 2020</a></blockquote>
<blockquote class="twitter-tweet"><p lang="en" dir="ltr">It was an honour and a privilege to be at the <a href="https://twitter.com/NYULondon?ref_src=twsrc%5Etfw">@NYULondon</a> and run an <a href="https://twitter.com/aframevr?ref_src=twsrc%5Etfw">@aframevr</a> workshop to introduce their students to <a href="https://twitter.com/hashtag/WebVR?src=hash&ref_src=twsrc%5Etfw">#WebVR</a> 👨💻👩💻👨💻👩💻<br>Thank you for having me!<a href="https://twitter.com/hashtag/London?src=hash&ref_src=twsrc%5Etfw">#London</a> <a href="https://twitter.com/hashtag/WebXR?src=hash&ref_src=twsrc%5Etfw">#WebXR</a><br>1/3 <a href="https://t.co/Dq7rw7Q6Yo">pic.twitter.com/Dq7rw7Q6Yo</a></p>— Danilo Pasquariello (@theDart76) <a href="https://twitter.com/theDart76/status/1217771288464326656?ref_src=twsrc%5Etfw">January 16, 2020</a></blockquote>
</div>
<h2 id="miscellaneous"><a href="#miscellaneous" class="headerlink" title="Miscellaneous"></a>Miscellaneous</h2><div class="tweets">
<blockquote class="twitter-tweet"><p lang="en" dir="ltr">crazy how easy <a href="https://twitter.com/aframevr?ref_src=twsrc%5Etfw">@aframevr</a> makes it to build highly interactive 3D experiences in the browser! super powerful, i need to come up with a way to put this to use.</p>— RAREGEMS (@_RAREGEMS) <a href="https://twitter.com/_RAREGEMS/status/1248100088259411968?ref_src=twsrc%5Etfw">April 9, 2020</a></blockquote>
<blockquote class="twitter-tweet"><p lang="en" dir="ltr">Anyone work with one or more of javascript, three.js, <a href="https://twitter.com/aframevr?ref_src=twsrc%5Etfw">@aframevr</a>, node, Vue, webrtc, webgl, + any related fun stuff and want to work on collaborative, immersive web experiences? I'm hiring. DM if interested and share to any that might be! 🔥🔥</p>— Gabriel Baker (@gabrieljbaker) <a href="https://twitter.com/gabrieljbaker/status/1259987188583825409?ref_src=twsrc%5Etfw">May 11, 2020</a></blockquote>
<blockquote class="twitter-tweet"><p lang="en" dir="ltr">I successfully got a navmesh to work in <a href="https://twitter.com/aframevr?ref_src=twsrc%5Etfw">@aframevr</a> for the first time, AND accidentally learned how to make a “portkey” to teleport from one spot to another! My little WebVR scene is s l o w l y coming along</p>— Daniel FogLens (@510home) <a href="https://twitter.com/510home/status/1235680258973548546?ref_src=twsrc%5Etfw">March 5, 2020</a></blockquote>
<blockquote class="twitter-tweet"><p lang="en" dir="ltr">Conducted my first <a href="https://twitter.com/SVA_News?ref_src=twsrc%5Etfw">@SVA_News</a> XR class in <a href="https://twitter.com/MozillaHubs?ref_src=twsrc%5Etfw">@MozillaHubs</a> with an awesome intro/Q&A from <a href="https://twitter.com/elginskye?ref_src=twsrc%5Etfw">@elginskye</a> - we were running a card sorting exercise to troubleshoot <a href="https://twitter.com/aframevr?ref_src=twsrc%5Etfw">@aframevr</a> & <a href="https://twitter.com/hashtag/ARjs?src=hash&ref_src=twsrc%5Etfw">#ARjs</a> - students had a blast :-) <a href="https://twitter.com/hashtag/vr?src=hash&ref_src=twsrc%5Etfw">#vr</a> against <a href="https://twitter.com/hashtag/SocialDistancing?src=hash&ref_src=twsrc%5Etfw">#SocialDistancing</a> <a href="https://t.co/eBGlYG3T06">pic.twitter.com/eBGlYG3T06</a></p>— Roland Dubois (@rolanddubois) <a href="https://twitter.com/rolanddubois/status/1241179933428285440?ref_src=twsrc%5Etfw">March 21, 2020</a></blockquote>
<blockquote class="twitter-tweet"><p lang="en" dir="ltr">Don't know where to find <a href="https://twitter.com/hashtag/WebXR?src=hash&ref_src=twsrc%5Etfw">#WebXR</a> experiences?<a href="https://t.co/RcltMGW1TQ">https://t.co/RcltMGW1TQ</a><a href="https://twitter.com/MadeWithAFrame?ref_src=twsrc%5Etfw">@MadewithAframe</a> <a href="https://twitter.com/aframevr?ref_src=twsrc%5Etfw">@aframevr</a> <a href="https://twitter.com/hashtag/OculusQuest?src=hash&ref_src=twsrc%5Etfw">#OculusQuest</a> <a href="https://twitter.com/hashtag/VR?src=hash&ref_src=twsrc%5Etfw">#VR</a> <a href="https://twitter.com/hashtag/WebVR?src=hash&ref_src=twsrc%5Etfw">#WebVR</a> <a href="https://t.co/B1jdsyGPfI">pic.twitter.com/B1jdsyGPfI</a></p>— Vhite Rabbit (@VhiteRabbitVR) <a href="https://twitter.com/VhiteRabbitVR/status/1239570005701861379?ref_src=twsrc%5Etfw">March 16, 2020</a></blockquote>
<blockquote class="twitter-tweet"><p lang="en" dir="ltr">After months of hard work, <a href="https://twitter.com/hashtag/ARjs?src=hash&ref_src=twsrc%5Etfw">#ARjs</a> version 3 is finally out🎉 It features Image Tracking, supports <a href="https://twitter.com/threejs_org?ref_src=twsrc%5Etfw">@threejs_org</a> and <a href="https://twitter.com/aframevr?ref_src=twsrc%5Etfw">@aframevr</a>.<br>Also, it's now under a Github org and we have a new Documentation.<br>I have collected all news and references in a blog post: <a href="https://t.co/0rcxRQhZ0K">https://t.co/0rcxRQhZ0K</a></p>— Nicolò Carpignoli (@nicolocarp) <a href="https://twitter.com/nicolocarp/status/1239526341617373188?ref_src=twsrc%5Etfw">March 16, 2020</a></blockquote>
<blockquote class="twitter-tweet"><p lang="en" dir="ltr">My WebVR game Flappybird is featured inside the Oculus Browser!! <a href="https://twitter.com/aframevr?ref_src=twsrc%5Etfw">@aframevr</a> <a href="https://t.co/isrb4Nuxhe">pic.twitter.com/isrb4Nuxhe</a></p>— Tal Kol (@koltal) <a href="https://twitter.com/koltal/status/1225710801161523201?ref_src=twsrc%5Etfw">February 7, 2020</a></blockquote>
<blockquote class="twitter-tweet"><p lang="en" dir="ltr">I was confused about positional audio in WebXR using <a href="https://twitter.com/aframevr?ref_src=twsrc%5Etfw">@aframevr</a> so I decided to do some research. It was much easier once I figured out how to get a plot of the different "distance models." Here's a quick writeup <a href="https://t.co/sYMPmjNRqg">https://t.co/sYMPmjNRqg</a> <a href="https://t.co/KsvtA4TYhP">pic.twitter.com/KsvtA4TYhP</a></p>— Kieran Farr (@kfarr) <a href="https://twitter.com/kfarr/status/1253211862797127682?ref_src=twsrc%5Etfw">April 23, 2020</a></blockquote>
<blockquote class="twitter-tweet"><p lang="en" dir="ltr">Getting some air and giving the muscles a go in <a href="https://twitter.com/aframevr?ref_src=twsrc%5Etfw">@aframevr</a> <a href="https://twitter.com/hashtag/webvr?src=hash&ref_src=twsrc%5Etfw">#webvr</a> on the roof. <a href="https://t.co/5TpslUAEEB">https://t.co/5TpslUAEEB</a> <a href="https://t.co/jT1Ue9iSJG">pic.twitter.com/jT1Ue9iSJG</a></p>— Kevin Ngo 囚 (@andgokevin) <a href="https://twitter.com/andgokevin/status/1257973309506899968?ref_src=twsrc%5Etfw">May 6, 2020</a></blockquote>
<blockquote class="twitter-tweet"><p lang="en" dir="ltr">New video just went live!<br><br>5 things about the <a href="https://twitter.com/aframevr?ref_src=twsrc%5Etfw">@aframevr</a> inspector. <br><br>👉 <a href="https://t.co/SEHJEvgjc7">https://t.co/SEHJEvgjc7</a><a href="https://twitter.com/hashtag/WebXR?src=hash&ref_src=twsrc%5Etfw">#WebXR</a> <a href="https://twitter.com/hashtag/VirtualReality?src=hash&ref_src=twsrc%5Etfw">#VirtualReality</a></p>— 🌷𝗦𝗼𝗿𝘀𝗸𝗼𝗼𝘁🌷 (@Sorskoot) <a href="https://twitter.com/Sorskoot/status/1232625412691415042?ref_src=twsrc%5Etfw">February 26, 2020</a></blockquote>
<blockquote class="twitter-tweet"><p lang="en" dir="ltr">Just did a quick video on a great <a href="https://twitter.com/humble?ref_src=twsrc%5Etfw">@humble</a> bundle deal containing low poly 3D Models you can use in your <a href="https://twitter.com/hashtag/WebVR?src=hash&ref_src=twsrc%5Etfw">#WebVR</a> / <a href="https://twitter.com/hashtag/WebXR?src=hash&ref_src=twsrc%5Etfw">#WebXR</a> scenes and show how to use these in <a href="https://twitter.com/aframevr?ref_src=twsrc%5Etfw">@aframevr</a> ! <a href="https://t.co/tvT0usXbab">https://t.co/tvT0usXbab</a></p>— 🌷𝗦𝗼𝗿𝘀𝗸𝗼𝗼𝘁🌷 (@Sorskoot) <a href="https://twitter.com/Sorskoot/status/1231321053256921093?ref_src=twsrc%5Etfw">February 22, 2020</a></blockquote>
<blockquote class="twitter-tweet"><p lang="en" dir="ltr">🎉I'm SUPER excited for the 1.0.0 release of <a href="https://twitter.com/aframevr?ref_src=twsrc%5Etfw">@aframevr</a> now that <a href="https://twitter.com/hashtag/WebXR?src=hash&ref_src=twsrc%5Etfw">#WebXR</a> is shipping in Chrome 79🎉<br>There's SO much potential of merging spatial computing with the open web to form the <a href="https://twitter.com/hashtag/widerweb?src=hash&ref_src=twsrc%5Etfw">#widerweb</a> & early seeds for what may become "The Metaverse."<br>Congrats to the <a href="https://twitter.com/supermediumvr?ref_src=twsrc%5Etfw">@supermediumvr</a> team! <a href="https://t.co/FuEgbBstFS">https://t.co/FuEgbBstFS</a></p>— Kent Bye VoicesOfVR (@kentbye) <a href="https://twitter.com/kentbye/status/1206652778359083009?ref_src=twsrc%5Etfw">December 16, 2019</a></blockquote>
<blockquote class="twitter-tweet"><p lang="en" dir="ltr">Hey devs! 👋 Remember to serve your content over HTTPS to enter VR mode in Chrome with A-Frame 1.0.0. WebXR is not available over HTTP.</p>— A-Frame (@aframevr) <a href="https://twitter.com/aframevr/status/1206646669854461952?ref_src=twsrc%5Etfw">December 16, 2019</a></blockquote>
<blockquote class="twitter-tweet"><p lang="en" dir="ltr">A-Frame 1.0.0 is out! 🥳 With full WebXR support shipping now in Chrome 79 and Oculus Browser stable channels. Deliver VR experiences instantaneously to millions of users today! Happy immersive Christmas! 🎄</p>— A-Frame (@aframevr) <a href="https://twitter.com/aframevr/status/1206625588481417216?ref_src=twsrc%5Etfw">December 16, 2019</a></blockquote>
<blockquote class="twitter-tweet"><p lang="en" dir="ltr">Want to learn how to create animations in <a href="https://twitter.com/aframevr?ref_src=twsrc%5Etfw">@aframevr</a>? Check out my new video! 👇<a href="https://t.co/zyfWBydoBi">https://t.co/zyfWBydoBi</a><a href="https://twitter.com/hashtag/WebVR?src=hash&ref_src=twsrc%5Etfw">#WebVR</a> <a href="https://twitter.com/hashtag/WebXR?src=hash&ref_src=twsrc%5Etfw">#WebXR</a> <a href="https://twitter.com/hashtag/Aframe?src=hash&ref_src=twsrc%5Etfw">#Aframe</a> <a href="https://t.co/vUFrvaT691">pic.twitter.com/vUFrvaT691</a></p>— 🌷𝗦𝗼𝗿𝘀𝗸𝗼𝗼𝘁🌷 (@Sorskoot) <a href="https://twitter.com/Sorskoot/status/1237834439121604608?ref_src=twsrc%5Etfw">March 11, 2020</a></blockquote>
<blockquote class="twitter-tweet"><p lang="en" dir="ltr"><a href="https://twitter.com/hashtag/aframevr?src=hash&ref_src=twsrc%5Etfw">#aframevr</a> has atmospheric fog!?!? I'm gonna be using this a lot <a href="https://t.co/YXXdLcyJsZ">https://t.co/YXXdLcyJsZ</a></p>— Joe Simpson (@radicalappdev) <a href="https://twitter.com/radicalappdev/status/1251617550460432387?ref_src=twsrc%5Etfw">April 18, 2020</a></blockquote>
<blockquote class="twitter-tweet"><p lang="en" dir="ltr">Augmented Reality on the web (AR.js) is amazing! I created a new repository of examples to help people just starting out, built with A-Frame and <a href="https://twitter.com/hashtag/ARjs?src=hash&ref_src=twsrc%5Etfw">#ARjs</a>. Thanks to everyone contributing to open source! <a href="https://twitter.com/aframevr?ref_src=twsrc%5Etfw">@aframevr</a> <a href="https://twitter.com/andgokevin?ref_src=twsrc%5Etfw">@andgokevin</a> <a href="https://twitter.com/jerome_etienne?ref_src=twsrc%5Etfw">@jerome_etienne</a> <a href="https://twitter.com/nicolocarp?ref_src=twsrc%5Etfw">@nicolocarp</a><a href="https://t.co/9ZNayEwwd4">https://t.co/9ZNayEwwd4</a> <a href="https://t.co/adukbcJLL9">pic.twitter.com/adukbcJLL9</a></p>— Lee Stemkoski (@ProfStemkoski) <a href="https://twitter.com/ProfStemkoski/status/1220435358137143297?ref_src=twsrc%5Etfw">January 23, 2020</a></blockquote>
<blockquote class="twitter-tweet"><p lang="en" dir="ltr">My prediction for 2020 is VR on the web will explode now that <a href="https://twitter.com/hashtag/WebXR?src=hash&ref_src=twsrc%5Etfw">#WebXR</a> is shipping in Chrome & Oculus Browsers, <a href="https://twitter.com/aframevr?ref_src=twsrc%5Etfw">@aframevr</a> 1.0 was just released, & WebAssembly Core 1.0 is an official W3C spec.<br>These are the architectural foundations of a decentralized, spatial, open web ecosystem. <a href="https://t.co/li8n1Z7mIg">pic.twitter.com/li8n1Z7mIg</a></p>— Kent Bye VoicesOfVR (@kentbye) <a href="https://twitter.com/kentbye/status/1211739305648914432?ref_src=twsrc%5Etfw">December 30, 2019</a></blockquote>
</div>
]]></content:encoded>
<comments>https://aframe.io/blog/newsletter2/#disqus_thread</comments>
</item>
<item>
<title>Image Tracking and Location-Based AR with A-Frame and AR.js 3</title>
<link>https://aframe.io/blog/arjs3/</link>
<guid>https://aframe.io/blog/arjs3/</guid>
<pubDate>Thu, 26 Mar 2020 17:00:00 GMT</pubDate>
<description>
<p>We’re happy to announce AR.js 3 and A-Frame integration featuring new image and
location based tracking.</p>
<p>For detailed API reference and source code check the <a href="https://ar-js-org.github.io/AR.js-Docs/">official
documentation</a> and the <a href="https://github.com/AR-js-org/AR.js">Github
repository</a></p>
</description>
<content:encoded><![CDATA[<p>We’re happy to announce AR.js 3 and A-Frame integration featuring new image and
location based tracking.</p>
<p>For detailed API reference and source code check the <a href="https://ar-js-org.github.io/AR.js-Docs/">official
documentation</a> and the <a href="https://github.com/AR-js-org/AR.js">Github
repository</a></p>
<span id="more"></span>
<h2 id="getting-started-with-image-tracking"><a href="#getting-started-with-image-tracking" class="headerlink" title="Getting Started with Image Tracking"></a>Getting Started with Image Tracking</h2><p>The new AR.js tracking can take any arbitrary image or drawing (not only
markers) to position and display your 3D content.</p>
<p>You just need a high resolution image with a good amount of detail. The more
complexity in the image the better the tracking. <a href="https://github.com/Carnaux/NFT-Marker-Creator/wiki/Creating-good-markers">Learn how to choose images for
best results in this article by Daniel Fernandes</a>.</p>
<p>For this tutorial we will use the following image:</p>
<p><img src="/images/blog/arjs3-image-tracking.jpg" alt="image tracking"></p>
<h2 id="creating-image-descriptors"><a href="#creating-image-descriptors" class="headerlink" title="Creating Image Descriptors"></a>Creating Image Descriptors</h2><p>Next step is to create image descriptors: a set of files that describe your
image and are needed by the tracking algorithm. We will use the NFT Marked
creator available via Web (also available locally as a node.js script if you
prefer). Upload your image and click “generate” to create the descriptors. Once
the image is processed three files will automatically download. Copy the
following snippet of code on a new HTML file and host it on a server. Also a
Codepen with all the necessary code is available below for convenience.</p>
<figure class="highlight html"><table><tr><td class="code"><pre><span class="line"><span class="meta"><!DOCTYPE <span class="keyword">html</span>></span></span><br><span class="line"><span class="tag"><<span class="name">html</span>></span></span><br><span class="line"> <span class="tag"><<span class="name">head</span>></span></span><br><span class="line"> <span class="tag"><<span class="name">meta</span> <span class="attr">charset</span>=<span class="string">"utf-8"</span> /></span></span><br><span class="line"> <span class="tag"><<span class="name">meta</span> <span class="attr">http-equiv</span>=<span class="string">"X-UA-Compatible"</span> <span class="attr">content</span>=<span class="string">"IE=edge"</span> /></span></span><br><span class="line"> <span class="tag"><<span class="name">title</span>></span>Image based tracking AR.js demo<span class="tag"></<span class="name">title</span>></span></span><br><span class="line"> <span class="comment"><!-- import aframe and then ar.js with image tracking / location based features --></span></span><br><span class="line"> <span class="tag"><<span class="name">script</span> <span class="attr">src</span>=<span class="string">"https://aframe.io/releases/1.0.4/aframe.min.js"</span>></span><span class="tag"></<span class="name">script</span>></span></span><br><span class="line"> <span class="tag"><<span class="name">script</span> <span class="attr">src</span>=<span class="string">"https://raw.githack.com/AR-js-org/AR.js/master/aframe/build/aframe-ar-nft.js"</span>></span><span class="tag"></<span class="name">script</span>></span></span><br><span class="line"></span><br><span class="line"> <span class="comment"><!-- style for the loader --></span></span><br><span class="line"> <span class="tag"><<span class="name">style</span>></span><span class="language-css"></span></span><br><span class="line"><span class="language-css"> <span class="selector-class">.arjs-loader</span> {</span></span><br><span class="line"><span class="language-css"> <span class="attribute">height</span>: <span class="number">100%</span>;</span></span><br><span class="line"><span class="language-css"> <span class="attribute">width</span>: <span class="number">100%</span>;</span></span><br><span class="line"><span class="language-css"> <span class="attribute">position</span>: absolute;</span></span><br><span class="line"><span class="language-css"> <span class="attribute">top</span>: <span class="number">0</span>;</span></span><br><span class="line"><span class="language-css"> <span class="attribute">left</span>: <span class="number">0</span>;</span></span><br><span class="line"><span class="language-css"> <span class="attribute">background-color</span>: <span class="built_in">rgba</span>(<span class="number">0</span>, <span class="number">0</span>, <span class="number">0</span>, <span class="number">0.8</span>);</span></span><br><span class="line"><span class="language-css"> <span class="attribute">z-index</span>: <span class="number">9999</span>;</span></span><br><span class="line"><span class="language-css"> <span class="attribute">display</span>: flex;</span></span><br><span class="line"><span class="language-css"> <span class="attribute">justify-content</span>: center;</span></span><br><span class="line"><span class="language-css"> <span class="attribute">align-items</span>: center;</span></span><br><span class="line"><span class="language-css"> }</span></span><br><span class="line"><span class="language-css"></span></span><br><span class="line"><span class="language-css"> <span class="selector-class">.arjs-loader</span> <span class="selector-tag">div</span> {</span></span><br><span class="line"><span class="language-css"> <span class="attribute">text-align</span>: center;</span></span><br><span class="line"><span class="language-css"> <span class="attribute">font-size</span>: <span class="number">1.25em</span>;</span></span><br><span class="line"><span class="language-css"> <span class="attribute">color</span>: white;</span></span><br><span class="line"><span class="language-css"> }</span></span><br><span class="line"><span class="language-css"> </span><span class="tag"></<span class="name">style</span>></span></span><br><span class="line"> <span class="tag"></<span class="name">head</span>></span></span><br><span class="line"></span><br><span class="line"> <span class="tag"><<span class="name">body</span> <span class="attr">style</span>=<span class="string">"margin : 0px; overflow: hidden;"</span>></span></span><br><span class="line"> <span class="comment"><!-- minimal loader shown until image descriptors are loaded. Loading may take a while according to the device computational power --></span></span><br><span class="line"> <span class="tag"><<span class="name">div</span> <span class="attr">class</span>=<span class="string">"arjs-loader"</span>></span></span><br><span class="line"> <span class="tag"><<span class="name">div</span>></span>Loading, please wait...<span class="tag"></<span class="name">div</span>></span></span><br><span class="line"> <span class="tag"></<span class="name">div</span>></span></span><br><span class="line"></span><br><span class="line"> <span class="comment"><!-- a-frame scene --></span></span><br><span class="line"> <span class="tag"><<span class="name">a-scene</span></span></span><br><span class="line"><span class="tag"> <span class="attr">vr-mode-ui</span>=<span class="string">"enabled: false;"</span></span></span><br><span class="line"><span class="tag"> <span class="attr">renderer</span>=<span class="string">"logarithmicDepthBuffer: true;"</span></span></span><br><span class="line"><span class="tag"> <span class="attr">embedded</span></span></span><br><span class="line"><span class="tag"> <span class="attr">arjs</span>=<span class="string">"trackingMethod: best; sourceType: webcam;debugUIEnabled: false;"</span>></span></span><br><span class="line"> <span class="comment"><!-- a-nft is the anchor that defines an Image Tracking entity --></span></span><br><span class="line"> <span class="comment"><!-- on 'url' use the path to the Image Descriptors created before. --></span></span><br><span class="line"> <span class="comment"><!-- the path should end with the name without the extension e.g. if file is trex.fset' the path should end with trex --></span></span><br><span class="line"> <span class="tag"><<span class="name">a-nft</span></span></span><br><span class="line"><span class="tag"> <span class="attr">type</span>=<span class="string">"nft"</span></span></span><br><span class="line"><span class="tag"> <span class="attr">url</span>=<span class="string">"<path-to-your-image-descriptors>"</span></span></span><br><span class="line"><span class="tag"> <span class="attr">smooth</span>=<span class="string">"true"</span></span></span><br><span class="line"><span class="tag"> <span class="attr">smoothCount</span>=<span class="string">"10"</span></span></span><br><span class="line"><span class="tag"> <span class="attr">smoothTolerance</span>=<span class="string">".01"</span></span></span><br><span class="line"><span class="tag"> <span class="attr">smoothThreshold</span>=<span class="string">"5"</span>></span></span><br><span class="line"> <span class="comment"><!-- as a child of the a-nft entity, you can define the content to show. here's a GLTF model entity --></span></span><br><span class="line"> <span class="tag"><<span class="name">a-entity</span></span></span><br><span class="line"><span class="tag"> <span class="attr">gltf-model</span>=<span class="string">"https://arjs-cors-proxy.herokuapp.com/https://raw.githack.com/AR-js-org/AR.js/master/aframe/examples/image-tracking/nft/trex/scene.gltf"</span></span></span><br><span class="line"><span class="tag"> <span class="attr">scale</span>=<span class="string">"5 5 5"</span></span></span><br><span class="line"><span class="tag"> <span class="attr">position</span>=<span class="string">"100 100 0"</span></span></span><br><span class="line"><span class="tag"> ></span></span><br><span class="line"> <span class="tag"></<span class="name">a-entity</span>></span></span><br><span class="line"> <span class="tag"></<span class="name">a-nft</span>></span></span><br><span class="line"> <span class="comment"><!-- static camera that moves according to the device movemenents --></span></span><br><span class="line"> <span class="tag"><<span class="name">a-entity</span> <span class="attr">camera</span>></span><span class="tag"></<span class="name">a-entity</span>></span></span><br><span class="line"> <span class="tag"></<span class="name">a-scene</span>></span></span><br><span class="line"> <span class="tag"></<span class="name">body</span>></span></span><br><span class="line"><span class="tag"></<span class="name">html</span>></span></span><br></pre></td></tr></table></figure>
<p>Point <code><path-to-your-image-descriptors></code> to the path containing the Image
Descriptors you generated and downloaded before. Those files will have a common
name. Remove the file extension (e.g. with “dinosaur.fset”, “dinosaur.iset” and
so on, the path you have to add should end with “dinosaur”).</p>
<p>Serve the example from a local or remote server: <a href="https://pages.github.com/">Github
Pages</a> and <a href="https://glitch.com/">Glitch</a> are free
and convenient options. Navigate to the URL on your device and you should see a
T-Rex model after the loading screen disappears.</p>
<p>Visit <a href="https://codepen.io/nicolocarpignoli/pen/vYOeYKd">this Codepen</a> if you
want to see right away how it looks without hosting your own.</p>
<p>You can replace the model above with any other assets: 2D videos, images, audio
files. Any A-Frame <code>a-entity</code> is a valid child of the <code>a-nft</code> anchor.</p>
<h2 id="location-based-ar"><a href="#location-based-ar" class="headerlink" title="Location-Based AR"></a>Location-Based AR</h2><p>Location-based tracking uses real-world coordinates to place AR content in context. Users can move freely (outdoors for better precision) and content associated with their location will be scaled and placed accordingly (e.g: content will render bigger / smaller based on distance to the user). With AR.js and A-Frame is now very easy to build experiences like cities and museum tours, restaurant guides, treasure hunts, biology or history learning games or place virtual art on any real world location.</p>
<p>The following example shows how to place text on a fixed position in the real world. The text will remain in place as you move around. The content is anchored to your current location. Make sure that GPS tracking is enabled on your device before you try.</p>
<figure class="highlight html"><table><tr><td class="code"><pre><span class="line"><span class="meta"><!DOCTYPE <span class="keyword">html</span>></span></span><br><span class="line"><span class="tag"><<span class="name">html</span>></span></span><br><span class="line"> <span class="tag"><<span class="name">head</span>></span></span><br><span class="line"> <span class="tag"><<span class="name">meta</span> <span class="attr">charset</span>=<span class="string">"utf-8"</span> /></span></span><br><span class="line"> <span class="tag"><<span class="name">meta</span> <span class="attr">http-equiv</span>=<span class="string">"X-UA-Compatible"</span> <span class="attr">content</span>=<span class="string">"IE=edge"</span> /></span></span><br><span class="line"> <span class="tag"><<span class="name">title</span>></span>Location-based AR.js demo<span class="tag"></<span class="name">title</span>></span></span><br><span class="line"> <span class="tag"><<span class="name">script</span> <span class="attr">src</span>=<span class="string">"https://aframe.io/releases/1.0.4/aframe.min.js"</span>></span><span class="tag"></<span class="name">script</span>></span></span><br><span class="line"> <span class="tag"><<span class="name">script</span> <span class="attr">src</span>=<span class="string">"https://unpkg.com/[email protected]/dist/aframe-look-at-component.min.js"</span>></span><span class="tag"></<span class="name">script</span>></span></span><br><span class="line"> <span class="tag"><<span class="name">script</span> <span class="attr">src</span>=<span class="string">"https://raw.githack.com/AR-js-org/AR.js/master/aframe/build/aframe-ar-nft.js"</span>></span><span class="tag"></<span class="name">script</span>></span></span><br><span class="line"> <span class="tag"></<span class="name">head</span>></span></span><br><span class="line"></span><br><span class="line"> <span class="tag"><<span class="name">body</span> <span class="attr">style</span>=<span class="string">"margin: 0; overflow: hidden;"</span>></span></span><br><span class="line"> <span class="tag"><<span class="name">a-scene</span></span></span><br><span class="line"><span class="tag"> <span class="attr">vr-mode-ui</span>=<span class="string">"enabled: false"</span></span></span><br><span class="line"><span class="tag"> <span class="attr">embedded</span></span></span><br><span class="line"><span class="tag"> <span class="attr">arjs</span>=<span class="string">"sourceType: webcam; debugUIEnabled: false;"</span></span></span><br><span class="line"><span class="tag"> ></span></span><br><span class="line"> <span class="tag"><<span class="name">a-text</span></span></span><br><span class="line"><span class="tag"> <span class="attr">value</span>=<span class="string">"This content will always face you."</span></span></span><br><span class="line"><span class="tag"> <span class="attr">look-at</span>=<span class="string">"[gps-camera]"</span></span></span><br><span class="line"><span class="tag"> <span class="attr">scale</span>=<span class="string">"50 50 50"</span></span></span><br><span class="line"><span class="tag"> <span class="attr">gps-entity-place</span>=<span class="string">"latitude: <add-your-latitude>; longitude: <add-your-longitude>;"</span></span></span><br><span class="line"><span class="tag"> ></span><span class="tag"></<span class="name">a-text</span>></span></span><br><span class="line"> <span class="tag"><<span class="name">a-camera</span> <span class="attr">gps-camera</span> <span class="attr">rotation-reader</span>></span> <span class="tag"></<span class="name">a-camera</span>></span></span><br><span class="line"> <span class="tag"></<span class="name">a-scene</span>></span></span><br><span class="line"> <span class="tag"></<span class="name">body</span>></span></span><br><span class="line"><span class="tag"></<span class="name">html</span>></span></span><br></pre></td></tr></table></figure>
<p>Some notes:</p>
<ul>
<li>Replace <code><add-your-latitude></code> and <code><add-your-longitude></code> with your GPS coordinates. There are several online services that lets you retrieve those data for free like <a href="https://www.latlong.net/">latlong</a></li>
<li>Change the <code>scale</code> property according to the distance of the place you specified with the coordinates: if you are not seeing the text, try to scale it up or choose a place much near</li>
<li>We used the custom <code>look-at</code> A-Frame component, that makes the content always look towards the user camera. This is fundamental, in particular for 2D content as text.</li>
</ul>
<p>Run the example on your device with GPS data on and you should be able to see
the text fixed in place. Its position should honor the real-world positioning
according to the GPS coordinates you added.</p>
<p>Unleash your creativity and replace the text with any content you like, thanks
to A-Frame you can quickly display 3D models, videos, images: Any <code>a-entity</code>
will be tracked as expected..</p>
<p>You can find additional support on the resources linked below and also on the
<a href="https://gitter.im/AR-js/Lobby">official Gitter channel</a>.</p>
<p>Have fun and please share the AR experiences you built with AR.js and A-Frame.
We will love to check them out!</p>
<p>Nicolo Carpignoli and Diego Marcos.</p>
<h2 id="additional-resources"><a href="#additional-resources" class="headerlink" title="Additional Resources"></a>Additional Resources</h2><ul>
<li><a href="https://github.com/AR-js-org/AR.js">AR.js Repository</a></li>
<li><a href="https://ar-js-org.github.io/AR.js-Docs/">AR.js Documentation</a></li>
<li><a href="https://medium.com/swlh/build-your-location-based-augmented-reality-web-app-a841956eed2c">Location-based Tutorials with AR.js</a></li>
</ul>
]]></content:encoded>
<comments>https://aframe.io/blog/arjs3/#disqus_thread</comments>
</item>
<item>
<title>Experiment with AR and A-Frame</title>
<link>https://aframe.io/blog/webxr-ar-module/</link>
<guid>https://aframe.io/blog/webxr-ar-module/</guid>
<pubDate>Tue, 31 Dec 2019 08:00:00 GMT</pubDate>
<description>
<p><strong>Google Chrome and Oculus Browser are now shipping WebXR enabled by default for VR headsets</strong>. The Web magic doesn’t stop there. <strong>AR is also coming</strong> to the <a href="https://immersive-web.github.io/webxr-ar-module/">standard</a> and you can <strong>experiment today</strong> on <a href="https://developers.google.com/ar/discover/supported-devices">Android ARCore compatible devices</a> and <a href="https://chromereleases.googleblog.com/2019/12/chrome-for-android-update_17.html">Chrome 79 or newer</a>.</p>
<p>Enable the experimental <a href="https://immersive-web.github.io/webxr-ar-module/">WebXR AR module</a> in <code>chrome://flags</code> and make sure your page is served over HTTPS. <a href="https://github.com/aframevr/aframe/releases">A-Frame 1.0.3 or newer</a> automatically detects AR and shows the new <code>Enter AR</code> button:</p>
<p><img src="/images/blog/ar-vr-buttons.png" alt="button image"></p>
</description>
<content:encoded><![CDATA[<p><strong>Google Chrome and Oculus Browser are now shipping WebXR enabled by default for VR headsets</strong>. The Web magic doesn’t stop there. <strong>AR is also coming</strong> to the <a href="https://immersive-web.github.io/webxr-ar-module/">standard</a> and you can <strong>experiment today</strong> on <a href="https://developers.google.com/ar/discover/supported-devices">Android ARCore compatible devices</a> and <a href="https://chromereleases.googleblog.com/2019/12/chrome-for-android-update_17.html">Chrome 79 or newer</a>.</p>
<p>Enable the experimental <a href="https://immersive-web.github.io/webxr-ar-module/">WebXR AR module</a> in <code>chrome://flags</code> and make sure your page is served over HTTPS. <a href="https://github.com/aframevr/aframe/releases">A-Frame 1.0.3 or newer</a> automatically detects AR and shows the new <code>Enter AR</code> button:</p>
<p><img src="/images/blog/ar-vr-buttons.png" alt="button image"></p>
<span id="more"></span>
<p>Build a scene in the same way than you do for VR. Just make sure that the background doesn’t block the camera view 🙂</p>
<figure class="highlight html"><table><tr><td class="code"><pre><span class="line"><span class="tag"><<span class="name">a-scene</span>></span></span><br><span class="line"> <span class="tag"><<span class="name">a-assets</span> <span class="attr">timeout</span>=<span class="string">"30000"</span>></span></span><br><span class="line"> <span class="tag"><<span class="name">a-asset-item</span> <span class="attr">id</span>=<span class="string">"spinosaurus"</span> <span class="attr">src</span>=<span class="string">"dino-model.glb"</span>></span><span class="tag"></<span class="name">a-asset-item</span>></span></span><br><span class="line"> <span class="tag"></<span class="name">a-assets</span>></span></span><br><span class="line"></span><br><span class="line"> <span class="tag"><<span class="name">a-camera</span> <span class="attr">position</span>=<span class="string">"0 1.2 0"</span>></span><span class="tag"></<span class="name">a-camera</span>></span></span><br><span class="line"></span><br><span class="line"> <span class="comment"><!-- 2D environment omitted for simplicity --></span></span><br><span class="line"></span><br><span class="line"> <span class="tag"><<span class="name">a-entity</span> <span class="attr">id</span>=<span class="string">"dino"</span> <span class="attr">position</span>=<span class="string">"-1 0 -3"</span> <span class="attr">scale</span>=<span class="string">"0.5 0.5 0.5"</span>></span></span><br><span class="line"> <span class="tag"><<span class="name">a-entity</span> <span class="attr">position</span>=<span class="string">"0 2.15 0"</span> <span class="attr">rotation</span>=<span class="string">"0 55 0"</span></span></span><br><span class="line"><span class="tag"> <span class="attr">gltf-model</span>=<span class="string">"#spinosaurus"</span></span></span><br><span class="line"><span class="tag"> <span class="attr">animation-mixer</span></span></span><br><span class="line"><span class="tag"> <span class="attr">shadow</span>=<span class="string">"cast: true; receive: false"</span>></span><span class="tag"></<span class="name">a-entity</span>></span></span><br><span class="line"> <span class="tag"></<span class="name">a-entity</span>></span></span><br><span class="line"></span><br><span class="line"> <span class="comment"><!-- Lights configuration omitted for simplicity --></span></span><br><span class="line"><span class="tag"></<span class="name">a-scene</span>></span></span><br></pre></td></tr></table></figure>
<p><a href="https://xr-spinosaurus.glitch.me/">Try now on your ARCore phone</a> and check out the <a href="https://glitch.com/edit/#!/xr-spinosaurus?path=index.html:1:0">source code</a></p>
<p><img src="/images/blog/dino-ar.gif" alt="dino AR"></p>
<h2 id="what-about-interactions"><a href="#what-about-interactions" class="headerlink" title="What about interactions?"></a>What about interactions?</h2><p>When entering immersive mode, regular <a href="https://developer.mozilla.org/en-US/docs/Web/Events">user DOM Events</a> are disabled. There are two ongoing efforts to enable interactivity in AR experiences:</p>
<p><strong><a href="https://github.com/immersive-web/hit-test">Hit Test</a></strong></p>
<p>Developers will be able to cast rays into the real world and retrieve a list of intersection points against the real world understanding. A ray might be triggered by user input like touches or mouse clicks to for instance, place or move virtual objects in the real world.</p>
<p><strong><a href="https://github.com/immersive-web/dom-overlays/blob/master/explainer.md">DOM Overlay layer</a></strong></p>
<p>When entering AR or VR mode, only WebGL content and the real world or camera image are rendered on screen. DOM layers will allow overlaying HTML elements to present for instance 2D UIs, instructions or contextual information associated to virtual or real world objects.</p>
<p><strong><a href="https://discordapp.com/invite/tGYjkYr">Join our discord channel</a></strong>. The community will love to see what you make.</p>
<p>If you’d like to continue to support us, please <strong><a href="https://aframe.io/subscribe/">subscribe to the A-Frame
newsletter</a></strong> where we’ll not only provide
updates and showcase community projects, but requests for testing and user
feedback support every now and then to keep us going in this grassroots
project.</p>
]]></content:encoded>
<comments>https://aframe.io/blog/webxr-ar-module/#disqus_thread</comments>
</item>
<item>
<title>A-Frame v1.0.0 - WebXR Support, AR Mode</title>
<link>https://aframe.io/blog/aframe-v1.0.0/</link>
<guid>https://aframe.io/blog/aframe-v1.0.0/</guid>
<pubDate>Mon, 16 Dec 2019 08:00:00 GMT</pubDate>
<description>
<script async src="//platform.twitter.com/widgets.js" charset="utf-8"></script>
<p><strong>Today marks A-Frame’s fourth birthday</strong>. Four years ago, on December 16th, 2015,
we released the first version of A-Frame to make it easier to build VR
experiences and make the Web keep pace with the VR industry.</p>
<p>With the help of a community of hundreds of thousands of developers over the
years, we’re releasing <strong>A-Frame v1.0.0</strong> to support the coming out of the WebXR
spec which has been under discussion for the past several years. The upgrade to
A-Frame v1 and beyond will become necessary on more and more browsers as they
deprecate WebVR and only support the WebXR specification.</p>
<p>To clear confusion, WebXR refers to both AR and VR support on the Web. To that
end, we’ve included an AR mode out of the box in A-Frame for browsers that
support ARCore and ARKit. In production, make sure to use HTTPS for VR and AR
support.</p>
<p>We’d like to thank in part Google for providing a bit of funding to us at
<a href="https://supermedium.com/">Supermedium</a> to help develop and maintain WebXR
support for A-Frame. And to thank people within Google, Oculus, and importantly
the Web community for testing this version for us. We’ll continue to provide
necessary updates to A-Frame.</p>
<p>We’d also like to celebrate now <strong>300+ contributors</strong>, <strong>10,000+ GitHub
stars</strong>, and <strong>300+ email subscribers</strong> to the A-Frame project.</p>
<p>If you’d like to continue to support us, please <strong><a href="https://aframe.io/subscribe/">subscribe to the A-Frame
newsletter</a></strong> where we’ll not only provide
updates and showcase community projects, but requests for testing and user
feedback support every now and then to keep us going in this grassroots
project.</p>
<p>Read the <a href="https://github.com/aframevr/aframe/releases/tag/v1.0.0">release notes and changelog</a>.</p>
<div class="tweets tweets-feature">
<blockquote class="twitter-tweet"><p lang="en" dir="ltr">A-Frame 1.0.0 is out! 🥳 With full WebXR support shipping now in Chrome 79 and Oculus Browser stable channels. Deliver VR experiences instantaneously to millions of users today! Happy immersive Christmas! 🎄</p>&mdash; A-Frame (@aframevr) <a href="https://twitter.com/aframevr/status/1206625588481417216?ref_src=twsrc%5Etfw">December 16, 2019</a></blockquote>
<blockquote class="twitter-tweet"><p lang="en" dir="ltr">We&#39;re still at it! Today marks the exact date of <a href="https://twitter.com/aframevr?ref_src=twsrc%5Etfw">@aframevr</a>&#39;s fourth birthday, and we&#39;re excited to release v1 with the help of the <a href="https://twitter.com/hashtag/WebVR?src=hash&amp;ref_src=twsrc%5Etfw">#WebVR</a> community. <a href="https://t.co/rlvFSpjBvu">https://t.co/rlvFSpjBvu</a> <a href="https://t.co/DHgRoEgb9f">https://t.co/DHgRoEgb9f</a></p>&mdash; Supermedium (@supermediumvr) <a href="https://twitter.com/supermediumvr/status/1206698957759336448?ref_src=twsrc%5Etfw">December 16, 2019</a></blockquote>
<blockquote class="twitter-tweet"><p lang="en" dir="ltr">For those who are using AR.js with <a href="https://twitter.com/hashtag/aframe?src=hash&amp;ref_src=twsrc%5Etfw">#aframe</a> in WebAR apps, please import latest <a href="https://twitter.com/hashtag/aframe?src=hash&amp;ref_src=twsrc%5Etfw">#aframe</a>, v1.0.0 has been shipped 🚀<br><br>This will avoid problems with new Chrome 79 that has WebXR Device API enabled by default.<br><br>Thanks to <a href="https://twitter.com/aframevr?ref_src=twsrc%5Etfw">@aframevr</a> team for the great work. It&#39;s outstanding.</p>&mdash; Nicolò Carpignoli (@nicolocarp) <a href="<blockquote class="twitter-tweet"><p lang="en" dir="ltr">For those who are using AR.js with <a href="https://twitter.com/hashtag/aframe?src=hash&amp;ref_src=twsrc%5Etfw">#aframe</a> in WebAR apps, please import latest <a href="https://twitter.com/hashtag/aframe?src=hash&amp;ref_src=twsrc%5Etfw">#aframe</a>, v1.0.0 has been shipped 🚀<br><br>This will avoid problems with new Chrome 79 that has WebXR Device API enabled by default.<br><br>Thanks to <a href="https://twitter.com/aframevr?ref_src=twsrc%5Etfw">@aframevr</a> team for the great work. It&#39;s outstanding.</p>&mdash; Nicolò Carpignoli (@nicolocarp) <a href="https://twitter.com/nicolocarp/status/1206268332883808256?ref_src=twsrc%5Etfw">December 15, 2019</a></blockquote>
<p>?ref_src&#x3D;twsrc%5Etfw”&gt;December 15, 2019</a></blockquote></p>
<blockquote class="twitter-tweet"><p lang="en" dir="ltr">Hey devs! 👋 Remember to serve your content over HTTPS to enter VR mode in Chrome with A-Frame 1.0.0. WebXR is not available over HTTP.</p>&mdash; A-Frame (@aframevr) <a href="https://twitter.com/aframevr/status/1206646669854461952?ref_src=twsrc%5Etfw">December 16, 2019</a></blockquote>
<blockquote class="twitter-tweet"><p lang="en" dir="ltr">🎉I&#39;m SUPER excited for the 1.0.0 release of <a href="https://twitter.com/aframevr?ref_src=twsrc%5Etfw">@aframevr</a> now that <a href="https://twitter.com/hashtag/WebXR?src=hash&amp;ref_src=twsrc%5Etfw">#WebXR</a> is shipping in Chrome 79🎉<br>There&#39;s SO much potential of merging spatial computing with the open web to form the <a href="https://twitter.com/hashtag/widerweb?src=hash&amp;ref_src=twsrc%5Etfw">#widerweb</a> &amp; early seeds for what may become &quot;The Metaverse.&quot;<br>Congrats to the <a href="https://twitter.com/supermediumvr?ref_src=twsrc%5Etfw">@supermediumvr</a> team! <a href="https://t.co/FuEgbBstFS">https://t.co/FuEgbBstFS</a></p>&mdash; Kent Bye VoicesOfVR (@kentbye) <a href="https://twitter.com/kentbye/status/1206652778359083009?ref_src=twsrc%5Etfw">December 16, 2019</a></blockquote>
</div>
</description>
<content:encoded><![CDATA[<script async src="//platform.twitter.com/widgets.js" charset="utf-8"></script>
<p><strong>Today marks A-Frame’s fourth birthday</strong>. Four years ago, on December 16th, 2015,
we released the first version of A-Frame to make it easier to build VR
experiences and make the Web keep pace with the VR industry.</p>
<p>With the help of a community of hundreds of thousands of developers over the
years, we’re releasing <strong>A-Frame v1.0.0</strong> to support the coming out of the WebXR
spec which has been under discussion for the past several years. The upgrade to
A-Frame v1 and beyond will become necessary on more and more browsers as they
deprecate WebVR and only support the WebXR specification.</p>
<p>To clear confusion, WebXR refers to both AR and VR support on the Web. To that
end, we’ve included an AR mode out of the box in A-Frame for browsers that
support ARCore and ARKit. In production, make sure to use HTTPS for VR and AR
support.</p>
<p>We’d like to thank in part Google for providing a bit of funding to us at
<a href="https://supermedium.com/">Supermedium</a> to help develop and maintain WebXR
support for A-Frame. And to thank people within Google, Oculus, and importantly
the Web community for testing this version for us. We’ll continue to provide
necessary updates to A-Frame.</p>
<p>We’d also like to celebrate now <strong>300+ contributors</strong>, <strong>10,000+ GitHub
stars</strong>, and <strong>300+ email subscribers</strong> to the A-Frame project.</p>
<p>If you’d like to continue to support us, please <strong><a href="https://aframe.io/subscribe/">subscribe to the A-Frame
newsletter</a></strong> where we’ll not only provide
updates and showcase community projects, but requests for testing and user
feedback support every now and then to keep us going in this grassroots
project.</p>
<p>Read the <a href="https://github.com/aframevr/aframe/releases/tag/v1.0.0">release notes and changelog</a>.</p>
<div class="tweets tweets-feature">
<blockquote class="twitter-tweet"><p lang="en" dir="ltr">A-Frame 1.0.0 is out! 🥳 With full WebXR support shipping now in Chrome 79 and Oculus Browser stable channels. Deliver VR experiences instantaneously to millions of users today! Happy immersive Christmas! 🎄</p>— A-Frame (@aframevr) <a href="https://twitter.com/aframevr/status/1206625588481417216?ref_src=twsrc%5Etfw">December 16, 2019</a></blockquote>
<blockquote class="twitter-tweet"><p lang="en" dir="ltr">We're still at it! Today marks the exact date of <a href="https://twitter.com/aframevr?ref_src=twsrc%5Etfw">@aframevr</a>'s fourth birthday, and we're excited to release v1 with the help of the <a href="https://twitter.com/hashtag/WebVR?src=hash&ref_src=twsrc%5Etfw">#WebVR</a> community. <a href="https://t.co/rlvFSpjBvu">https://t.co/rlvFSpjBvu</a> <a href="https://t.co/DHgRoEgb9f">https://t.co/DHgRoEgb9f</a></p>— Supermedium (@supermediumvr) <a href="https://twitter.com/supermediumvr/status/1206698957759336448?ref_src=twsrc%5Etfw">December 16, 2019</a></blockquote>
<blockquote class="twitter-tweet"><p lang="en" dir="ltr">For those who are using AR.js with <a href="https://twitter.com/hashtag/aframe?src=hash&ref_src=twsrc%5Etfw">#aframe</a> in WebAR apps, please import latest <a href="https://twitter.com/hashtag/aframe?src=hash&ref_src=twsrc%5Etfw">#aframe</a>, v1.0.0 has been shipped 🚀<br><br>This will avoid problems with new Chrome 79 that has WebXR Device API enabled by default.<br><br>Thanks to <a href="https://twitter.com/aframevr?ref_src=twsrc%5Etfw">@aframevr</a> team for the great work. It's outstanding.</p>— Nicolò Carpignoli (@nicolocarp) <a href="%3Cblockquote%20class="twitter-tweet"><p lang="en" dir="ltr">For those who are using AR.js with <a href="https://twitter.com/hashtag/aframe?src=hash&ref_src=twsrc%5Etfw">#aframe</a> in WebAR apps, please import latest <a href="https://twitter.com/hashtag/aframe?src=hash&ref_src=twsrc%5Etfw">#aframe</a>, v1.0.0 has been shipped 🚀<br><br>This will avoid problems with new Chrome 79 that has WebXR Device API enabled by default.<br><br>Thanks to <a href="https://twitter.com/aframevr?ref_src=twsrc%5Etfw">@aframevr</a> team for the great work. It's outstanding.</p>— Nicolò Carpignoli (@nicolocarp) <a href="https://twitter.com/nicolocarp/status/1206268332883808256?ref_src=twsrc%5Etfw">December 15, 2019</a></blockquote>
<p>?ref_src=twsrc%5Etfw”>December 15, 2019</a></blockquote></p>
<blockquote class="twitter-tweet"><p lang="en" dir="ltr">Hey devs! 👋 Remember to serve your content over HTTPS to enter VR mode in Chrome with A-Frame 1.0.0. WebXR is not available over HTTP.</p>— A-Frame (@aframevr) <a href="https://twitter.com/aframevr/status/1206646669854461952?ref_src=twsrc%5Etfw">December 16, 2019</a></blockquote>
<blockquote class="twitter-tweet"><p lang="en" dir="ltr">🎉I'm SUPER excited for the 1.0.0 release of <a href="https://twitter.com/aframevr?ref_src=twsrc%5Etfw">@aframevr</a> now that <a href="https://twitter.com/hashtag/WebXR?src=hash&ref_src=twsrc%5Etfw">#WebXR</a> is shipping in Chrome 79🎉<br>There's SO much potential of merging spatial computing with the open web to form the <a href="https://twitter.com/hashtag/widerweb?src=hash&ref_src=twsrc%5Etfw">#widerweb</a> & early seeds for what may become "The Metaverse."<br>Congrats to the <a href="https://twitter.com/supermediumvr?ref_src=twsrc%5Etfw">@supermediumvr</a> team! <a href="https://t.co/FuEgbBstFS">https://t.co/FuEgbBstFS</a></p>— Kent Bye VoicesOfVR (@kentbye) <a href="https://twitter.com/kentbye/status/1206652778359083009?ref_src=twsrc%5Etfw">December 16, 2019</a></blockquote>
</div>
<span id="more"></span>
<h2 id="projects"><a href="#projects" class="headerlink" title="Projects"></a>Projects</h2><div class="tweets">
<blockquote class="twitter-tweet"><p lang="en" dir="ltr">YES! CHESS IN VR <a href="https://twitter.com/aframevr?ref_src=twsrc%5Etfw">@aframevr</a> 👏 <a href="https://t.co/jb3h1boQi3">https://t.co/jb3h1boQi3</a></p>— roncho (@ronchoqa) <a href="https://twitter.com/ronchoqa/status/1202625508976009218?ref_src=twsrc%5Etfw">December 5, 2019</a></blockquote>
<blockquote class="twitter-tweet"><p lang="en" dir="ltr">xAPIGnome: Hanging out in the maker space at the <a href="https://twitter.com/hashtag/xAPIParty?src=hash&ref_src=twsrc%5Etfw">#xAPIParty</a>. We’re playing with <a href="https://twitter.com/hashtag/AR?src=hash&ref_src=twsrc%5Etfw">#AR</a> using aframevr markers to generate <a href="https://twitter.com/hashtag/xapi?src=hash&ref_src=twsrc%5Etfw">#xapi</a> statements! What’s possible with these markers? We’re thinking space tours, new hire onboarding, complex equipment tutorials, etc… <a href="https://t.co/7iVlgmZwIX">pic.twitter.com/7iVlgmZwIX</a></p>— Digital Thinking 4 L&D (@FreshThinkingfo) <a href="https://twitter.com/FreshThinkingfo/status/1205770247338438656?ref_src=twsrc%5Etfw">December 14, 2019</a></blockquote>
<blockquote class="twitter-tweet"><p lang="en" dir="ltr">onCollide InstantGeometry GPU Particles for <a href="https://twitter.com/vrlandio?ref_src=twsrc%5Etfw">@vrlandio</a> with <a href="https://twitter.com/hashtag/threejs?src=hash&ref_src=twsrc%5Etfw">#threejs</a> <a href="https://twitter.com/hashtag/webgl?src=hash&ref_src=twsrc%5Etfw">#webgl</a> <a href="https://twitter.com/hashtag/webvr?src=hash&ref_src=twsrc%5Etfw">#webvr</a> <a href="https://twitter.com/hashtag/webx?src=hash&ref_src=twsrc%5Etfw">#webx</a> <a href="https://twitter.com/aframevr?ref_src=twsrc%5Etfw">@aframevr</a> <a href="https://t.co/N0j1U7fd2G">pic.twitter.com/N0j1U7fd2G</a></p>— arpu (@arnputz) <a href="https://twitter.com/arnputz/status/1204180890747883520?ref_src=twsrc%5Etfw">December 9, 2019</a></blockquote>
<blockquote class="twitter-tweet"><p lang="en" dir="ltr">A <a href="https://twitter.com/hashtag/blog?src=hash&ref_src=twsrc%5Etfw">#blog</a> theme for <a href="https://twitter.com/hashtag/WebVR?src=hash&ref_src=twsrc%5Etfw">#WebVR</a> <a href="https://twitter.com/hashtag/WebXR?src=hash&ref_src=twsrc%5Etfw">#WebXR</a> - IdeaSpace Compass Blog - for desktop, mobile and VR devices, included in the latest IdeaSpaceVR release - preview theme: <a href="https://t.co/AaDETNbakr">https://t.co/AaDETNbakr</a> enjoy! <a href="https://t.co/24spFehdDP">pic.twitter.com/24spFehdDP</a></p>— IdeaSpaceVR (@ideaspacevr) <a href="https://twitter.com/ideaspacevr/status/1179071359730802688?ref_src=twsrc%5Etfw">October 1, 2019</a></blockquote>
</div>
<h2 id="events"><a href="#events" class="headerlink" title="Events"></a>Events</h2><div class="tweets">
<blockquote class="twitter-tweet"><p lang="ja" dir="ltr">今日は職場主催のイベントでWebAR/VRのハンズオンやります!<br>SOILセミナー: HTMLで作ろうWebAR/VR入門 <a href="https://t.co/01T6lZXzBW">https://t.co/01T6lZXzBW</a> <a href="https://twitter.com/hashtag/SRPOIL?src=hash&ref_src=twsrc%5Etfw">#SRPOIL</a> <a href="https://twitter.com/hashtag/AR_Fukuoka?src=hash&ref_src=twsrc%5Etfw">#AR_Fukuoka</a> <a href="https://twitter.com/hashtag/webvr?src=hash&ref_src=twsrc%5Etfw">#webvr</a> <a href="https://twitter.com/hashtag/webar?src=hash&ref_src=twsrc%5Etfw">#webar</a> <a href="https://twitter.com/hashtag/aframevr?src=hash&ref_src=twsrc%5Etfw">#aframevr</a></p>— TakashiYoshinaga@AzureKinectとAR (@Taka_Yoshinaga) <a href="https://twitter.com/Taka_Yoshinaga/status/1204880585253998592?ref_src=twsrc%5Etfw">December 11, 2019</a></blockquote>
<blockquote class="twitter-tweet"><p lang="en" dir="ltr">Using <a href="https://twitter.com/aframevr?ref_src=twsrc%5Etfw">@AFrameVR</a> and <a href="https://twitter.com/mozilla?ref_src=twsrc%5Etfw">@Mozilla</a> <a href="https://twitter.com/hashtag/WebXR?src=hash&ref_src=twsrc%5Etfw">#WebXR</a> tools to teach <a href="https://twitter.com/hashtag/AI?src=hash&ref_src=twsrc%5Etfw">#AI</a> in the classroom (here solving the <a href="https://t.co/WxRKdmRXxp">https://t.co/WxRKdmRXxp</a> ) and the difference between procedural knowledge (<a href="https://twitter.com/threejs_org?ref_src=twsrc%5Etfw">@threejs_org</a>) and declarative knowledge (<a href="https://twitter.com/aframevr?ref_src=twsrc%5Etfw">@AframeVR</a>) by <a href="https://twitter.com/Mikel_Salazar?ref_src=twsrc%5Etfw">@Mikel_Salazar</a> at <a href="https://twitter.com/centro_sanluis?ref_src=twsrc%5Etfw">@centro_sanluis</a> 🤗 <a href="https://t.co/leljYSKZvp">pic.twitter.com/leljYSKZvp</a></p>— Fabien Benetou (@utopiah) <a href="https://twitter.com/utopiah/status/1203975602132393984?ref_src=twsrc%5Etfw">December 9, 2019</a></blockquote>
<blockquote class="twitter-tweet"><p lang="en" dir="ltr">Congratulations! <a href="https://twitter.com/aframevr?ref_src=twsrc%5Etfw">@aframevr</a> is probably my favourite web framework out there atm - go try it out! <a href="https://t.co/sX4sxulrw3">https://t.co/sX4sxulrw3</a></p>— Pookage (@pookagehayes) <a href="https://twitter.com/pookagehayes/status/1206625962760298498?ref_src=twsrc%5Etfw">December 16, 2019</a></blockquote>
</div>
<h2 id="miscellaneous"><a href="#miscellaneous" class="headerlink" title="Miscellaneous"></a>Miscellaneous</h2><div class="tweets">
<blockquote class="twitter-tweet"><p lang="en" dir="ltr">Rural and Underserved inner city kids face the same challenges. Lack of access to Tech. Lack of Mentors. There are some great curriculums out there. <a href="https://twitter.com/freeCodeCamp?ref_src=twsrc%5Etfw">@freeCodeCamp</a> had over 5000 tutorials. Our PI515 kids are building <a href="https://twitter.com/hashtag/VR?src=hash&ref_src=twsrc%5Etfw">#VR</a> via <a href="https://twitter.com/aframevr?ref_src=twsrc%5Etfw">@aframevr</a> and <a href="https://twitter.com/glitch?ref_src=twsrc%5Etfw">@glitch</a>.</p>— PI 515 (@LOVEPI515) <a href="https://twitter.com/LOVEPI515/status/1203769331982753799?ref_src=twsrc%5Etfw">December 8, 2019</a></blockquote>
<blockquote class="twitter-tweet"><p lang="en" dir="ltr"><a href="https://twitter.com/hashtag/WebXR?src=hash&ref_src=twsrc%5Etfw">#WebXR</a> is arriving. Last week's first 🅰️-Frame Newsletter highlighting community projects and updates on WebXR and the next <a href="https://twitter.com/aframevr?ref_src=twsrc%5Etfw">@aframevr</a> release. Subscribe to get tomorrow's drop. <a href="https://t.co/heDZVmmw95">https://t.co/heDZVmmw95</a> <a href="https://t.co/rrrtZ3bQ74">pic.twitter.com/rrrtZ3bQ74</a></p>— A-Frame (@aframevr) <a href="https://twitter.com/aframevr/status/1205253314301984768?ref_src=twsrc%5Etfw">December 12, 2019</a></blockquote>
<blockquote class="twitter-tweet"><p lang="en" dir="ltr">me trying to build anything using <a href="https://twitter.com/aframevr?ref_src=twsrc%5Etfw">@aframevr</a> <a href="https://twitter.com/hashtag/Memes?src=hash&ref_src=twsrc%5Etfw">#Memes</a> <a href="https://t.co/TEyJnG3aua">pic.twitter.com/TEyJnG3aua</a></p>— roncho (@ronchoqa) <a href="https://twitter.com/ronchoqa/status/1206284740174794754?ref_src=twsrc%5Etfw">December 15, 2019</a></blockquote>
<blockquote class="twitter-tweet"><p lang="en" dir="ltr">For those who are using AR.js with <a href="https://twitter.com/hashtag/aframe?src=hash&ref_src=twsrc%5Etfw">#aframe</a> in WebAR apps, please import latest <a href="https://twitter.com/hashtag/aframe?src=hash&ref_src=twsrc%5Etfw">#aframe</a>, v1.0.0 has been shipped ð<br><br>This will avoid problems with new Chrome 79 that has WebXR Device API enabled by default.<br><br>Thanks to <a href="https://twitter.com/aframevr?ref_src=twsrc%5Etfw">@aframevr</a> team for the great work. It's outstanding.</p>— Nicolò Carpignoli (@nicolocarp) <a href="https://twitter.com/nicolocarp/status/1206268332883808256?ref_src=twsrc%5Etfw">December 15, 2019</a></blockquote>
<blockquote class="twitter-tweet"><p lang="en" dir="ltr">Just sent out the new A-Frame newsletter! Subscribe to get a copy of it, else we'll try to release it next week too. <a href="https://t.co/6SfIh0HYpY">https://t.co/6SfIh0HYpY</a> <a href="https://t.co/1z0zPJeedc">pic.twitter.com/1z0zPJeedc</a></p>— A-Frame (@aframevr) <a href="https://twitter.com/aframevr/status/1203092603194888192?ref_src=twsrc%5Etfw">December 6, 2019</a></blockquote>
<blockquote class="twitter-tweet"><p lang="en" dir="ltr">How's that for an early Christmas gift?<br><br>Congrats to all the <a href="https://twitter.com/aframevr?ref_src=twsrc%5Etfw">@aframevr</a> contributors, this is a major milestone. <a href="https://t.co/wj5WIzbq6f">https://t.co/wj5WIzbq6f</a></p>— Ruben van der Leun (@rvdleun) <a href="https://twitter.com/rvdleun/status/1206632782778294273?ref_src=twsrc%5Etfw">December 16, 2019</a></blockquote>
<blockquote class="twitter-tweet"><p lang="en" dir="ltr">honestly huge <a href="https://t.co/SJlcLKdZ9C">https://t.co/SJlcLKdZ9C</a></p>— Joseph Schiarizzi (@CupOJoseph) <a href="https://twitter.com/CupOJoseph/status/1206709997142495239?ref_src=twsrc%5Etfw">December 16, 2019</a></blockquote>
<blockquote class="twitter-tweet"><p lang="en" dir="ltr">Subscribe to the A-Frame Newsletter for continuing updates on WebXR support, next version release, and community projects: <a href="https://t.co/0lwriQmXqv">https://t.co/0lwriQmXqv</a></p>— A-Frame (@aframevr) <a href="https://twitter.com/aframevr/status/1206626784382341128?ref_src=twsrc%5Etfw">December 16, 2019</a></blockquote>
</div>
<h2 id="in-other-webvr-news"><a href="#in-other-webvr-news" class="headerlink" title="In Other WebVR News"></a>In Other WebVR News</h2><div class="tweets">
<blockquote class="twitter-tweet"><p lang="en" dir="ltr">The new WebXR Device API, explained <a href="https://t.co/eYpp3huHw1">https://t.co/eYpp3huHw1</a> Available as of today in vanilla Chrome, soon in Firefox and other browsers. Extended reality is coming to the web rather quickly. <a href="https://twitter.com/aframevr?ref_src=twsrc%5Etfw">@aframevr</a> to support it in its upcoming v1.0</p>— Jesus M Gonzalez-Barahona (@jgbarah) <a href="https://twitter.com/jgbarah/status/1204672745755303936?ref_src=twsrc%5Etfw">December 11, 2019</a></blockquote>
</div>
]]></content:encoded>
<comments>https://aframe.io/blog/aframe-v1.0.0/#disqus_thread</comments>
</item>
<item>
<title>A-Frame Newsletter 1</title>
<link>https://aframe.io/blog/newsletter1/</link>
<guid>https://aframe.io/blog/newsletter1/</guid>
<pubDate>Fri, 06 Dec 2019 08:00:00 GMT</pubDate>
<description>
<script async src="//platform.twitter.com/widgets.js" charset="utf-8"></script>
<p>The return of the A-Frame roundups! Thank you for subscribing to the email
newsletter if you have! If you have not already, subscribe through
<strong><a href="https://aframe.io/subscribe/">aframe.io&#x2F;subscribe</a></strong>.</p>
<p><strong>A-Frame v1 with WebXR</strong> and AR support will be releasing shortly as the
industry-wide rollout of WebXR commences. Everything is ready to go after a bit
more testing. After years of work, we’re excited to be ready for the wave on
day 1.</p>
<p>And we’re excited to release <strong><a href="https://supermedium.com/nightsky">Night Sky</a></strong>,
a VR planetarium built with A-Frame to look and learn about the stars! You can
set your location and see constellations above you in real time.</p>
<p><img src="https://user-images.githubusercontent.com/674727/70360477-83b07600-1833-11ea-90b0-34d7caef7099.PNG" alt="Night Sky"></p>
<p>Without further ado, check out cool A-Frame projects from the recent months.</p>
<div class="tweets tweets-feature">
<blockquote class="twitter-tweet"><p lang="en" dir="ltr">Built a huge 5ft Gameboy you can fully play in Web VR - <a href="https://t.co/RxkwFVwtPO">https://t.co/RxkwFVwtPO</a> - open source &amp; made with <a href="https://twitter.com/aframevr?ref_src=twsrc%5Etfw">@aframevr</a> <a href="https://twitter.com/dmarcos?ref_src=twsrc%5Etfw">@dmarcos</a> <a href="https://twitter.com/Tojiro?ref_src=twsrc%5Etfw">@Tojiro</a> <a href="https://t.co/nUsdLOqLTd">pic.twitter.com/nUsdLOqLTd</a></p>&mdash; Tal Kol (@koltal) <a href="https://twitter.com/koltal/status/1203065745778913282?ref_src=twsrc%5Etfw">December 6, 2019</a></blockquote> <script async src="https://platform.twitter.com/widgets.js" charset="utf-8"></script>
<blockquote class="twitter-tweet"><p lang="en" dir="ltr">Built Flappy Birds VR with <a href="https://twitter.com/aframevr?ref_src=twsrc%5Etfw">@aframevr</a> ! WebVR is awesome. Warning, game is intense - <a href="https://t.co/Z1b4fqoX9E">https://t.co/Z1b4fqoX9E</a> <a href="https://t.co/fCGvYcWEq2">pic.twitter.com/fCGvYcWEq2</a></p>&mdash; Tal Kol (@koltal) <a href="https://twitter.com/koltal/status/1197216206735974401?ref_src=twsrc%5Etfw">November 20, 2019</a></blockquote> <script async src="https://platform.twitter.com/widgets.js" charset="utf-8"></script>
<blockquote class="twitter-tweet"><p lang="en" dir="ltr">A demo of the different modes and opportunities to workout with Towermax Fitness Drill Track.<br>The length of running you see is 6 meters, in VR it&#39;s 12 meters with the room extender.<br>Full Video here:<a href="https://t.co/dHF3bsg4E2">https://t.co/dHF3bsg4E2</a><a href="https://twitter.com/hashtag/vrfitness?src=hash&amp;ref_src=twsrc%5Etfw">#vrfitness</a> <a href="https://twitter.com/hashtag/OculusQuest?src=hash&amp;ref_src=twsrc%5Etfw">#OculusQuest</a> <a href="https://twitter.com/hashtag/webxr?src=hash&amp;ref_src=twsrc%5Etfw">#webxr</a> <a href="https://twitter.com/hashtag/runningmotivation?src=hash&amp;ref_src=twsrc%5Etfw">#runningmotivation</a> <a href="https://t.co/UtukWV5zAe">pic.twitter.com/UtukWV5zAe</a></p>&mdash; TowermaxFitness (@towermaxfitness) <a href="https://twitter.com/towermaxfitness/status/1196897615721455617?ref_src=twsrc%5Etfw">November 19, 2019</a></blockquote> <script async src="https://platform.twitter.com/widgets.js" charset="utf-8"></script>
<blockquote class="twitter-tweet"><p lang="en" dir="ltr">Thank you <a href="https://twitter.com/spaceappslondon?ref_src=twsrc%5Etfw">@spaceappslondon</a> âï¸Had a blast playing with <a href="https://twitter.com/aframevr?ref_src=twsrc%5Etfw">@aframevr</a> again + NASA models to make this with <a href="https://twitter.com/Rushlet_?ref_src=twsrc%5Etfw">@Rushlet_</a> and <a href="https://twitter.com/PrinaShah2?ref_src=twsrc%5Etfw">@PrinaShah2</a> The story from Apollo to Artemis in webVR: <a href="https://t.co/bh4U7bBrr6">https://t.co/bh4U7bBrr6</a> ð ð§ <a href="https://t.co/oN3Yly5GRi">pic.twitter.com/oN3Yly5GRi</a></p>&mdash; Sumi Senthi (@SumiSenthi) <a href="https://twitter.com/SumiSenthi/status/1186020557260759040?ref_src=twsrc%5Etfw">October 20, 2019</a></blockquote> <script async src="https://platform.twitter.com/widgets.js" charset="utf-8"></script>
<blockquote class="twitter-tweet"><p lang="en" dir="ltr">Slowly learning how to play a <a href="https://twitter.com/hashtag/WebVR?src=hash&amp;ref_src=twsrc%5Etfw">#WebVR</a> marimba. <br>You can try it out here: <a href="https://t.co/xpS5mIwia2">https://t.co/xpS5mIwia2</a><br>Made with <a href="https://twitter.com/aframevr?ref_src=twsrc%5Etfw">@aframevr</a> and <a href="https://twitter.com/hashtag/threejs?src=hash&amp;ref_src=twsrc%5Etfw">#threejs</a> <a href="https://twitter.com/hashtag/VR?src=hash&amp;ref_src=twsrc%5Etfw">#VR</a> <a href="https://twitter.com/hashtag/music?src=hash&amp;ref_src=twsrc%5Etfw">#music</a> <a href="https://twitter.com/hashtag/instrument?src=hash&amp;ref_src=twsrc%5Etfw">#instrument</a> <a href="https://t.co/uRfsoS3QUY">pic.twitter.com/uRfsoS3QUY</a></p>&mdash; Oliver Fei (@OliverFei_VR) <a href="https://twitter.com/OliverFei_VR/status/1199332455867703301?ref_src=twsrc%5Etfw">November 26, 2019</a></blockquote> <script async src="https://platform.twitter.com/widgets.js" charset="utf-8"></script>
<blockquote class="twitter-tweet"><p lang="en" dir="ltr">Done and submitted. Here&#39;s a clip of yesterdays stream playing the finished the <a href="https://twitter.com/aframevr?ref_src=twsrc%5Etfw">@aframevr</a> <a href="https://twitter.com/hashtag/webxr?src=hash&amp;ref_src=twsrc%5Etfw">#webxr</a> game build for the <a href="https://twitter.com/hashtag/js13k?src=hash&amp;ref_src=twsrc%5Etfw">#js13k</a> competition. It&#39;s intense... <a href="https://t.co/xENSMiSgLA">pic.twitter.com/xENSMiSgLA</a></p>&mdash; ɬıɱɱ᧠ÆÆ¡ÆÆÉ ð· (@Sorskoot) <a href="https://twitter.com/Sorskoot/status/1172442105420996609?ref_src=twsrc%5Etfw">September 13, 2019</a></blockquote> <script async src="https://platform.twitter.com/widgets.js" charset="utf-8"></script>
<blockquote class="twitter-tweet"><p lang="en" dir="ltr">Amazing AR poster made by <a href="https://twitter.com/tzs007?ref_src=twsrc%5Etfw">@tzs007</a> for <a href="https://twitter.com/HBO?ref_src=twsrc%5Etfw">@HBO</a> using <a href="https://twitter.com/aframevr?ref_src=twsrc%5Etfw">@aframevr</a> Awesome work! ð <a href="https://t.co/Jdm7XbG65P">pic.twitter.com/Jdm7XbG65P</a></p>&mdash; A-Frame (@aframevr) <a href="https://twitter.com/aframevr/status/1200945472950722560?ref_src=twsrc%5Etfw">December 1, 2019</a></blockquote> <script async src="https://platform.twitter.com/widgets.js" charset="utf-8"></script>
<blockquote class="twitter-tweet"><p lang="en" dir="ltr">Added haptics, keyboard support, a basic menu system, and a name to the <a href="https://twitter.com/hashtag/WebVR?src=hash&amp;ref_src=twsrc%5Etfw">#WebVR</a> rhythm game prototype I made a while ago with <a href="https://twitter.com/aframevr?ref_src=twsrc%5Etfw">@aframevr</a>. <br><br>You can now play Cadenza!! here: <a href="https://t.co/wDzrUnvRtW">https://t.co/wDzrUnvRtW</a></p>&mdash; Oliver Fei (@OliverFei_VR) <a href="https://twitter.com/OliverFei_VR/status/1160629369729179648?ref_src=twsrc%5Etfw">August 11, 2019</a></blockquote>
<blockquote class="twitter-tweet"><p lang="en" dir="ltr">We got new enter AR / VR icons!🎉Thanks to <a href="https://twitter.com/klausweidner?ref_src=twsrc%5Etfw">@klausweidner</a> <a href="https://twitter.com/theDart76?ref_src=twsrc%5Etfw">@theDart76</a> <a href="https://twitter.com/brendanciccone?ref_src=twsrc%5Etfw">@brendanciccone</a> <a href="https://twitter.com/andgokevin?ref_src=twsrc%5Etfw">@andgokevin</a> designs and everyone that provided feedback. Leave your thoughts in the comments👇 <a href="https://t.co/loDglNJjXA">pic.twitter.com/loDglNJjXA</a></p>&mdash; A-Frame (@aframevr) <a href="https://twitter.com/aframevr/status/1201524847257489410?ref_src=twsrc%5Etfw">December 2, 2019</a></blockquote>
<blockquote class="twitter-tweet"><p lang="en" dir="ltr">Here&#39;s a sneak peek at a feature in the upcoming &quot;Barista Express&quot; update!<a href="https://twitter.com/MadeWithAFrame?ref_src=twsrc%5Etfw">@MadeWithAFrame</a> <a href="https://twitter.com/aframevr?ref_src=twsrc%5Etfw">@aframevr</a> <a href="https://twitter.com/hashtag/webvr?src=hash&amp;ref_src=twsrc%5Etfw">#webvr</a> <a href="https://twitter.com/hashtag/webxr?src=hash&amp;ref_src=twsrc%5Etfw">#webxr</a> <a href="https://twitter.com/hashtag/vr?src=hash&amp;ref_src=twsrc%5Etfw">#vr</a> <a href="https://twitter.com/hashtag/barista?src=hash&amp;ref_src=twsrc%5Etfw">#barista</a> <a href="https://twitter.com/hashtag/gamedev?src=hash&amp;ref_src=twsrc%5Etfw">#gamedev</a> <a href="https://twitter.com/hashtag/aframe?src=hash&amp;ref_src=twsrc%5Etfw">#aframe</a> <a href="https://t.co/5t6vaMhmuH">pic.twitter.com/5t6vaMhmuH</a></p>&mdash; Construct Arcade (@ConstructArcade) <a href="https://twitter.com/ConstructArcade/status/1186527465029681158?ref_src=twsrc%5Etfw">October 22, 2019</a></blockquote>
<blockquote class="twitter-tweet"><p lang="en" dir="ltr">Yay! New office doggy ��<a href="https://twitter.com/googlechrome?ref_src=twsrc%5Etfw">@googlechrome</a> is now shipping AR ð experimental features as part of the WebXR implementation. You can play with them today using <a href="https://twitter.com/aframevr?ref_src=twsrc%5Etfw">@aframevr</a> thanks to <a href="https://twitter.com/klausweidner?ref_src=twsrc%5Etfw">@klausweidner</a> Have fun! Instructions in the comments <a href="https://t.co/PyFHUDbjrN">pic.twitter.com/PyFHUDbjrN</a></p>&mdash; Diego (@dmarcos) <a href="https://twitter.com/dmarcos/status/1188990196525584384?ref_src=twsrc%5Etfw">October 29, 2019</a></blockquote> <script async src="https://platform.twitter.com/widgets.js" charset="utf-8"></script>
<blockquote class="twitter-tweet"><p lang="en" dir="ltr">US Civil War resurrection with <a href="https://twitter.com/aframevr?ref_src=twsrc%5Etfw">@aframevr</a> using <a href="https://twitter.com/hashtag/ARjs?src=hash&amp;ref_src=twsrc%5Etfw">#ARjs</a><a href="https://t.co/FDVTUdIywc">https://t.co/FDVTUdIywc</a> <a href="https://t.co/rj1Jrtz7VH">pic.twitter.com/rj1Jrtz7VH</a></p>&mdash; Vinh T Nguyen (@VinhTTU) <a href="https://twitter.com/VinhTTU/status/1164635620859269120?ref_src=twsrc%5Etfw">August 22, 2019</a></blockquote>
</div>
</description>
<content:encoded><![CDATA[<script async src="//platform.twitter.com/widgets.js" charset="utf-8"></script>
<p>The return of the A-Frame roundups! Thank you for subscribing to the email
newsletter if you have! If you have not already, subscribe through
<strong><a href="https://aframe.io/subscribe/">aframe.io/subscribe</a></strong>.</p>
<p><strong>A-Frame v1 with WebXR</strong> and AR support will be releasing shortly as the
industry-wide rollout of WebXR commences. Everything is ready to go after a bit
more testing. After years of work, we’re excited to be ready for the wave on
day 1.</p>
<p>And we’re excited to release <strong><a href="https://supermedium.com/nightsky">Night Sky</a></strong>,
a VR planetarium built with A-Frame to look and learn about the stars! You can
set your location and see constellations above you in real time.</p>
<p><img src="https://user-images.githubusercontent.com/674727/70360477-83b07600-1833-11ea-90b0-34d7caef7099.PNG" alt="Night Sky"></p>
<p>Without further ado, check out cool A-Frame projects from the recent months.</p>
<div class="tweets tweets-feature">
<blockquote class="twitter-tweet"><p lang="en" dir="ltr">Built a huge 5ft Gameboy you can fully play in Web VR - <a href="https://t.co/RxkwFVwtPO">https://t.co/RxkwFVwtPO</a> - open source & made with <a href="https://twitter.com/aframevr?ref_src=twsrc%5Etfw">@aframevr</a> <a href="https://twitter.com/dmarcos?ref_src=twsrc%5Etfw">@dmarcos</a> <a href="https://twitter.com/Tojiro?ref_src=twsrc%5Etfw">@Tojiro</a> <a href="https://t.co/nUsdLOqLTd">pic.twitter.com/nUsdLOqLTd</a></p>— Tal Kol (@koltal) <a href="https://twitter.com/koltal/status/1203065745778913282?ref_src=twsrc%5Etfw">December 6, 2019</a></blockquote> <script async src="https://platform.twitter.com/widgets.js" charset="utf-8"></script>
<blockquote class="twitter-tweet"><p lang="en" dir="ltr">Built Flappy Birds VR with <a href="https://twitter.com/aframevr?ref_src=twsrc%5Etfw">@aframevr</a> ! WebVR is awesome. Warning, game is intense - <a href="https://t.co/Z1b4fqoX9E">https://t.co/Z1b4fqoX9E</a> <a href="https://t.co/fCGvYcWEq2">pic.twitter.com/fCGvYcWEq2</a></p>— Tal Kol (@koltal) <a href="https://twitter.com/koltal/status/1197216206735974401?ref_src=twsrc%5Etfw">November 20, 2019</a></blockquote> <script async src="https://platform.twitter.com/widgets.js" charset="utf-8"></script>
<blockquote class="twitter-tweet"><p lang="en" dir="ltr">A demo of the different modes and opportunities to workout with Towermax Fitness Drill Track.<br>The length of running you see is 6 meters, in VR it's 12 meters with the room extender.<br>Full Video here:<a href="https://t.co/dHF3bsg4E2">https://t.co/dHF3bsg4E2</a><a href="https://twitter.com/hashtag/vrfitness?src=hash&ref_src=twsrc%5Etfw">#vrfitness</a> <a href="https://twitter.com/hashtag/OculusQuest?src=hash&ref_src=twsrc%5Etfw">#OculusQuest</a> <a href="https://twitter.com/hashtag/webxr?src=hash&ref_src=twsrc%5Etfw">#webxr</a> <a href="https://twitter.com/hashtag/runningmotivation?src=hash&ref_src=twsrc%5Etfw">#runningmotivation</a> <a href="https://t.co/UtukWV5zAe">pic.twitter.com/UtukWV5zAe</a></p>— TowermaxFitness (@towermaxfitness) <a href="https://twitter.com/towermaxfitness/status/1196897615721455617?ref_src=twsrc%5Etfw">November 19, 2019</a></blockquote> <script async src="https://platform.twitter.com/widgets.js" charset="utf-8"></script>
<blockquote class="twitter-tweet"><p lang="en" dir="ltr">Thank you <a href="https://twitter.com/spaceappslondon?ref_src=twsrc%5Etfw">@spaceappslondon</a> âï¸Had a blast playing with <a href="https://twitter.com/aframevr?ref_src=twsrc%5Etfw">@aframevr</a> again + NASA models to make this with <a href="https://twitter.com/Rushlet_?ref_src=twsrc%5Etfw">@Rushlet_</a> and <a href="https://twitter.com/PrinaShah2?ref_src=twsrc%5Etfw">@PrinaShah2</a> The story from Apollo to Artemis in webVR: <a href="https://t.co/bh4U7bBrr6">https://t.co/bh4U7bBrr6</a> ð ð§ <a href="https://t.co/oN3Yly5GRi">pic.twitter.com/oN3Yly5GRi</a></p>— Sumi Senthi (@SumiSenthi) <a href="https://twitter.com/SumiSenthi/status/1186020557260759040?ref_src=twsrc%5Etfw">October 20, 2019</a></blockquote> <script async src="https://platform.twitter.com/widgets.js" charset="utf-8"></script>
<blockquote class="twitter-tweet"><p lang="en" dir="ltr">Slowly learning how to play a <a href="https://twitter.com/hashtag/WebVR?src=hash&ref_src=twsrc%5Etfw">#WebVR</a> marimba. <br>You can try it out here: <a href="https://t.co/xpS5mIwia2">https://t.co/xpS5mIwia2</a><br>Made with <a href="https://twitter.com/aframevr?ref_src=twsrc%5Etfw">@aframevr</a> and <a href="https://twitter.com/hashtag/threejs?src=hash&ref_src=twsrc%5Etfw">#threejs</a> <a href="https://twitter.com/hashtag/VR?src=hash&ref_src=twsrc%5Etfw">#VR</a> <a href="https://twitter.com/hashtag/music?src=hash&ref_src=twsrc%5Etfw">#music</a> <a href="https://twitter.com/hashtag/instrument?src=hash&ref_src=twsrc%5Etfw">#instrument</a> <a href="https://t.co/uRfsoS3QUY">pic.twitter.com/uRfsoS3QUY</a></p>— Oliver Fei (@OliverFei_VR) <a href="https://twitter.com/OliverFei_VR/status/1199332455867703301?ref_src=twsrc%5Etfw">November 26, 2019</a></blockquote> <script async src="https://platform.twitter.com/widgets.js" charset="utf-8"></script>
<blockquote class="twitter-tweet"><p lang="en" dir="ltr">Done and submitted. Here's a clip of yesterdays stream playing the finished the <a href="https://twitter.com/aframevr?ref_src=twsrc%5Etfw">@aframevr</a> <a href="https://twitter.com/hashtag/webxr?src=hash&ref_src=twsrc%5Etfw">#webxr</a> game build for the <a href="https://twitter.com/hashtag/js13k?src=hash&ref_src=twsrc%5Etfw">#js13k</a> competition. It's intense... <a href="https://t.co/xENSMiSgLA">pic.twitter.com/xENSMiSgLA</a></p>— ɬıɱɱ᧠ÆÆ¡ÆÆÉ ð· (@Sorskoot) <a href="https://twitter.com/Sorskoot/status/1172442105420996609?ref_src=twsrc%5Etfw">September 13, 2019</a></blockquote> <script async src="https://platform.twitter.com/widgets.js" charset="utf-8"></script>
<blockquote class="twitter-tweet"><p lang="en" dir="ltr">Amazing AR poster made by <a href="https://twitter.com/tzs007?ref_src=twsrc%5Etfw">@tzs007</a> for <a href="https://twitter.com/HBO?ref_src=twsrc%5Etfw">@HBO</a> using <a href="https://twitter.com/aframevr?ref_src=twsrc%5Etfw">@aframevr</a> Awesome work! ð <a href="https://t.co/Jdm7XbG65P">pic.twitter.com/Jdm7XbG65P</a></p>— A-Frame (@aframevr) <a href="https://twitter.com/aframevr/status/1200945472950722560?ref_src=twsrc%5Etfw">December 1, 2019</a></blockquote> <script async src="https://platform.twitter.com/widgets.js" charset="utf-8"></script>
<blockquote class="twitter-tweet"><p lang="en" dir="ltr">Added haptics, keyboard support, a basic menu system, and a name to the <a href="https://twitter.com/hashtag/WebVR?src=hash&ref_src=twsrc%5Etfw">#WebVR</a> rhythm game prototype I made a while ago with <a href="https://twitter.com/aframevr?ref_src=twsrc%5Etfw">@aframevr</a>. <br><br>You can now play Cadenza!! here: <a href="https://t.co/wDzrUnvRtW">https://t.co/wDzrUnvRtW</a></p>— Oliver Fei (@OliverFei_VR) <a href="https://twitter.com/OliverFei_VR/status/1160629369729179648?ref_src=twsrc%5Etfw">August 11, 2019</a></blockquote>
<blockquote class="twitter-tweet"><p lang="en" dir="ltr">We got new enter AR / VR icons!🎉Thanks to <a href="https://twitter.com/klausweidner?ref_src=twsrc%5Etfw">@klausweidner</a> <a href="https://twitter.com/theDart76?ref_src=twsrc%5Etfw">@theDart76</a> <a href="https://twitter.com/brendanciccone?ref_src=twsrc%5Etfw">@brendanciccone</a> <a href="https://twitter.com/andgokevin?ref_src=twsrc%5Etfw">@andgokevin</a> designs and everyone that provided feedback. Leave your thoughts in the comments👇 <a href="https://t.co/loDglNJjXA">pic.twitter.com/loDglNJjXA</a></p>— A-Frame (@aframevr) <a href="https://twitter.com/aframevr/status/1201524847257489410?ref_src=twsrc%5Etfw">December 2, 2019</a></blockquote>
<blockquote class="twitter-tweet"><p lang="en" dir="ltr">Here's a sneak peek at a feature in the upcoming "Barista Express" update!<a href="https://twitter.com/MadeWithAFrame?ref_src=twsrc%5Etfw">@MadeWithAFrame</a> <a href="https://twitter.com/aframevr?ref_src=twsrc%5Etfw">@aframevr</a> <a href="https://twitter.com/hashtag/webvr?src=hash&ref_src=twsrc%5Etfw">#webvr</a> <a href="https://twitter.com/hashtag/webxr?src=hash&ref_src=twsrc%5Etfw">#webxr</a> <a href="https://twitter.com/hashtag/vr?src=hash&ref_src=twsrc%5Etfw">#vr</a> <a href="https://twitter.com/hashtag/barista?src=hash&ref_src=twsrc%5Etfw">#barista</a> <a href="https://twitter.com/hashtag/gamedev?src=hash&ref_src=twsrc%5Etfw">#gamedev</a> <a href="https://twitter.com/hashtag/aframe?src=hash&ref_src=twsrc%5Etfw">#aframe</a> <a href="https://t.co/5t6vaMhmuH">pic.twitter.com/5t6vaMhmuH</a></p>— Construct Arcade (@ConstructArcade) <a href="https://twitter.com/ConstructArcade/status/1186527465029681158?ref_src=twsrc%5Etfw">October 22, 2019</a></blockquote>
<blockquote class="twitter-tweet"><p lang="en" dir="ltr">Yay! New office doggy ��<a href="https://twitter.com/googlechrome?ref_src=twsrc%5Etfw">@googlechrome</a> is now shipping AR ð experimental features as part of the WebXR implementation. You can play with them today using <a href="https://twitter.com/aframevr?ref_src=twsrc%5Etfw">@aframevr</a> thanks to <a href="https://twitter.com/klausweidner?ref_src=twsrc%5Etfw">@klausweidner</a> Have fun! Instructions in the comments <a href="https://t.co/PyFHUDbjrN">pic.twitter.com/PyFHUDbjrN</a></p>— Diego (@dmarcos) <a href="https://twitter.com/dmarcos/status/1188990196525584384?ref_src=twsrc%5Etfw">October 29, 2019</a></blockquote> <script async src="https://platform.twitter.com/widgets.js" charset="utf-8"></script>
<blockquote class="twitter-tweet"><p lang="en" dir="ltr">US Civil War resurrection with <a href="https://twitter.com/aframevr?ref_src=twsrc%5Etfw">@aframevr</a> using <a href="https://twitter.com/hashtag/ARjs?src=hash&ref_src=twsrc%5Etfw">#ARjs</a><a href="https://t.co/FDVTUdIywc">https://t.co/FDVTUdIywc</a> <a href="https://t.co/rj1Jrtz7VH">pic.twitter.com/rj1Jrtz7VH</a></p>— Vinh T Nguyen (@VinhTTU) <a href="https://twitter.com/VinhTTU/status/1164635620859269120?ref_src=twsrc%5Etfw">August 22, 2019</a></blockquote>
</div>
<span id="more"></span>
<h2 id="projects"><a href="#projects" class="headerlink" title="Projects"></a>Projects</h2><div class="tweets">
<blockquote class="twitter-tweet"><p lang="en" dir="ltr">Even the most switched on academics only know Unity and Unreal when it comes to <a href="https://twitter.com/hashtag/AR?src=hash&ref_src=twsrc%5Etfw">#AR</a> and <a href="https://twitter.com/hashtag/VR?src=hash&ref_src=twsrc%5Etfw">#VR</a>. <a href="https://twitter.com/hashtag/aframevr?src=hash&ref_src=twsrc%5Etfw">#aframevr</a> is <a href="https://twitter.com/hashtag/foss?src=hash&ref_src=twsrc%5Etfw">#foss</a> and needs only basic HTML and JavaScript. I've had so much fun building powerful <a href="https://twitter.com/hashtag/ar?src=hash&ref_src=twsrc%5Etfw">#ar</a> and <a href="https://twitter.com/hashtag/vr?src=hash&ref_src=twsrc%5Etfw">#vr</a> on A-frame. The Ironman costume is my favorite. <a href="https://t.co/uGfJLUJiqS">https://t.co/uGfJLUJiqS</a></p>— Ishan Abeywardena (@ishansa) <a href="https://twitter.com/ishansa/status/1162182304879599616?ref_src=twsrc%5Etfw">August 16, 2019</a></blockquote>
<blockquote class="twitter-tweet"><p lang="en" dir="ltr">Work In Progress on a VR UI interface structure concept: The Mind Palace Project <a href="https://t.co/JPemEhKY73">https://t.co/JPemEhKY73</a> <a href="https://twitter.com/hashtag/aframevr?src=hash&ref_src=twsrc%5Etfw">#aframevr</a> <a href="https://twitter.com/hashtag/webvr?src=hash&ref_src=twsrc%5Etfw">#webvr</a> <a href="https://twitter.com/hashtag/virtualreality?src=hash&ref_src=twsrc%5Etfw">#virtualreality</a> <a href="https://twitter.com/aframevr?ref_src=twsrc%5Etfw">@aframevr</a> <a href="https://twitter.com/hashtag/webxr?src=hash&ref_src=twsrc%5Etfw">#webxr</a> <a href="https://twitter.com/hashtag/VR?src=hash&ref_src=twsrc%5Etfw">#VR</a> <a href="https://twitter.com/hashtag/webdev?src=hash&ref_src=twsrc%5Etfw">#webdev</a> <a href="https://t.co/tuEKbMEeYL">pic.twitter.com/tuEKbMEeYL</a></p>— Michael McAnally (@Michael_Blade) <a href="https://twitter.com/Michael_Blade/status/1181274481202843648?ref_src=twsrc%5Etfw">October 7, 2019</a></blockquote>
<blockquote class="twitter-tweet"><p lang="en" dir="ltr">The CS1 IDE currently provides 16 focussed lessons in getting you started with using the CS1 Game Engine powered by <a href="https://twitter.com/aframevr?ref_src=twsrc%5Etfw">@aframevr</a> and <a href="https://twitter.com/threejs_org?ref_src=twsrc%5Etfw">@threejs_org</a> , and hosted at <a href="https://twitter.com/glitch?ref_src=twsrc%5Etfw">@glitch</a> !<a href="https://t.co/b6UCuRXw7C">https://t.co/b6UCuRXw7C</a> <a href="https://t.co/gKseuZdk2n">pic.twitter.com/gKseuZdk2n</a></p>— SirFizX (@SirFizX_ELHS) <a href="https://twitter.com/SirFizX_ELHS/status/1180869082058563584?ref_src=twsrc%5Etfw">October 6, 2019</a></blockquote>
<blockquote class="twitter-tweet"><p lang="en" dir="ltr">We're really pleased to announce that we've won the 2019 CG Architect award for best interactive project with our WebGL virtual kitchen <a href="https://t.co/SVRf9SpO2n">https://t.co/SVRf9SpO2n</a><a href="https://twitter.com/hashtag/webgl?src=hash&ref_src=twsrc%5Etfw">#webgl</a> <a href="https://twitter.com/hashtag/interactive?src=hash&ref_src=twsrc%5Etfw">#interactive</a> <a href="https://twitter.com/hashtag/3d?src=hash&ref_src=twsrc%5Etfw">#3d</a> <a href="https://twitter.com/hashtag/VR?src=hash&ref_src=twsrc%5Etfw">#VR</a> <a href="https://twitter.com/hashtag/VirtualReality?src=hash&ref_src=twsrc%5Etfw">#VirtualReality</a> <a href="https://twitter.com/hashtag/CGI?src=hash&ref_src=twsrc%5Etfw">#CGI</a> <a href="https://twitter.com/hashtag/CGArchitect?src=hash&ref_src=twsrc%5Etfw">#CGArchitect</a> <a href="https://twitter.com/hashtag/D2conferences?src=hash&ref_src=twsrc%5Etfw">#D2conferences</a> <a href="https://twitter.com/hashtag/Winners?src=hash&ref_src=twsrc%5Etfw">#Winners</a> <a href="https://twitter.com/hashtag/Awards?src=hash&ref_src=twsrc%5Etfw">#Awards</a> <a href="https://twitter.com/hashtag/aframevr?src=hash&ref_src=twsrc%5Etfw">#aframevr</a> <a href="https://twitter.com/hashtag/WebXR?src=hash&ref_src=twsrc%5Etfw">#WebXR</a> <a href="https://twitter.com/aframevr?ref_src=twsrc%5Etfw">@aframevr</a> <a href="https://t.co/YuR57vzz2s">pic.twitter.com/YuR57vzz2s</a></p>— Pikcells (@PikcellsUK) <a href="https://twitter.com/PikcellsUK/status/1164975764535689219?ref_src=twsrc%5Etfw">August 23, 2019</a></blockquote>
<blockquote class="twitter-tweet"><p lang="en" dir="ltr">for <a href="https://twitter.com/vrlandio?ref_src=twsrc%5Etfw">@vrlandio</a> rtin martini mesh optimization and cannonjs physics heightfield generation on the fly from png gray scale height map <a href="https://twitter.com/hashtag/webxr?src=hash&ref_src=twsrc%5Etfw">#webxr</a> <a href="https://twitter.com/hashtag/webvr?src=hash&ref_src=twsrc%5Etfw">#webvr</a> <a href="https://twitter.com/hashtag/webgl?src=hash&ref_src=twsrc%5Etfw">#webgl</a> <a href="https://twitter.com/threejs_org?ref_src=twsrc%5Etfw">@threejs_org</a> <a href="https://twitter.com/aframevr?ref_src=twsrc%5Etfw">@aframevr</a> <a href="https://t.co/7JTTTULHRc">pic.twitter.com/7JTTTULHRc</a></p>— arpu (@arnputz) <a href="https://twitter.com/arnputz/status/1185349949325828097?ref_src=twsrc%5Etfw">October 19, 2019</a></blockquote>
<blockquote class="twitter-tweet"><p lang="en" dir="ltr">Experimenting with road textures captured using my phone and tiled using <a href="https://twitter.com/Substance3D?ref_src=twsrc%5Etfw">@Substance3D</a> to make a more realistic looking 3D version of <a href="https://twitter.com/streetmix?ref_src=twsrc%5Etfw">@streetmix</a>. Voxel style on left, textured style on right, plus a new skymap. Still using <a href="https://twitter.com/aframevr?ref_src=twsrc%5Etfw">@aframevr</a> <a href="https://twitter.com/hashtag/webxr?src=hash&ref_src=twsrc%5Etfw">#webxr</a> <a href="https://t.co/AZoUdpz1Cl">pic.twitter.com/AZoUdpz1Cl</a></p>— Kieran Farr (@kfarr) <a href="https://twitter.com/kfarr/status/1168745293753356288?ref_src=twsrc%5Etfw">September 3, 2019</a></blockquote>
<blockquote class="twitter-tweet"><p lang="en" dir="ltr">Financial Planning meets Virtual Reality <a href="https://t.co/ol7G0W8sXt">https://t.co/ol7G0W8sXt</a> <a href="https://twitter.com/hashtag/financialplanning?src=hash&ref_src=twsrc%5Etfw">#financialplanning</a> <a href="https://twitter.com/hashtag/VirtualReality?src=hash&ref_src=twsrc%5Etfw">#VirtualReality</a> <a href="https://twitter.com/hashtag/aframevr?src=hash&ref_src=twsrc%5Etfw">#aframevr</a> <a href="https://twitter.com/hashtag/oculus?src=hash&ref_src=twsrc%5Etfw">#oculus</a></p>— Richard Kennard (@kennardconsult) <a href="https://twitter.com/kennardconsult/status/1194385333116272642?ref_src=twsrc%5Etfw">November 12, 2019</a></blockquote>
<blockquote class="twitter-tweet"><p lang="en" dir="ltr">A-Frame Mind Palace Island Office project is making some progress!!! Includes networked-aframe we have been testing across the Pacific Ocean. Andre and I are working on audio and PDF functionality next... <a href="https://t.co/TJW2CRtUJM">https://t.co/TJW2CRtUJM</a> <a href="https://twitter.com/aframevr?ref_src=twsrc%5Etfw">@aframevr</a> <a href="https://t.co/otuHVL3yNl">pic.twitter.com/otuHVL3yNl</a></p>— Michael McAnally (@Michael_Blade) <a href="https://twitter.com/Michael_Blade/status/1191497170576216064?ref_src=twsrc%5Etfw">November 4, 2019</a></blockquote>
<blockquote class="twitter-tweet"><p lang="und" dir="ltr"><a href="https://twitter.com/aframevr?ref_src=twsrc%5Etfw">@aframevr</a> <a href="https://twitter.com/threejs_org?ref_src=twsrc%5Etfw">@threejs_org</a> <a href="https://t.co/o9c1Kr1FCh">https://t.co/o9c1Kr1FCh</a></p>— Micah Blumberg codes @ Silicon Valley Global News (@worksalt) <a href="https://twitter.com/worksalt/status/1191251653560659974?ref_src=twsrc%5Etfw">November 4, 2019</a></blockquote>
<blockquote class="twitter-tweet"><p lang="en" dir="ltr">Realtime Hologram Viewer on WebAR<br>Point cloud acquired by 3 Kinect is transmitted to smartphone over wifi connection and visualized by using A-Frame and Three.js.<a href="https://twitter.com/hashtag/AzureKinect?src=hash&ref_src=twsrc%5Etfw">#AzureKinect</a> <a href="https://twitter.com/hashtag/aframevr?src=hash&ref_src=twsrc%5Etfw">#aframevr</a> <a href="https://twitter.com/hashtag/WebAR?src=hash&ref_src=twsrc%5Etfw">#WebAR</a> <a href="https://twitter.com/hashtag/ARjs?src=hash&ref_src=twsrc%5Etfw">#ARjs</a> <a href="https://twitter.com/hashtag/AR_Fukuoka?src=hash&ref_src=twsrc%5Etfw">#AR_Fukuoka</a> <a href="https://t.co/gPzI1SPKbs">https://t.co/gPzI1SPKbs</a></p>— T_Yoshinaga@AzureKinect&AR (@Tks_Yoshinaga) <a href="https://twitter.com/Tks_Yoshinaga/status/1190623207901945858?ref_src=twsrc%5Etfw">November 2, 2019</a></blockquote>
<blockquote class="twitter-tweet"><p lang="en" dir="ltr">Some spooky <a href="https://twitter.com/hashtag/augmentedreality?src=hash&ref_src=twsrc%5Etfw">#augmentedreality</a> experiments with <a href="https://twitter.com/aframevr?ref_src=twsrc%5Etfw">@aframevr</a> and <a href="https://twitter.com/the8thwall?ref_src=twsrc%5Etfw">@the8thwall</a> <a href="https://twitter.com/hashtag/AR?src=hash&ref_src=twsrc%5Etfw">#AR</a> <a href="https://twitter.com/hashtag/aframejs?src=hash&ref_src=twsrc%5Etfw">#aframejs</a> <a href="https://twitter.com/hashtag/immersive?src=hash&ref_src=twsrc%5Etfw">#immersive</a> <a href="https://twitter.com/hashtag/HappyHalloween2019?src=hash&ref_src=twsrc%5Etfw">#HappyHalloween2019</a> <a href="https://t.co/jUPCX78jxI">pic.twitter.com/jUPCX78jxI</a></p>— Michael Posso (@micposso) <a href="https://twitter.com/micposso/status/1190315779956363265?ref_src=twsrc%5Etfw">November 1, 2019</a></blockquote>
<blockquote class="twitter-tweet"><p lang="en" dir="ltr">Texture Spallting with basis texture compression! <a href="https://twitter.com/threejs_org?ref_src=twsrc%5Etfw">@threejs_org</a> <a href="https://twitter.com/aframevr?ref_src=twsrc%5Etfw">@aframevr</a> works with <a href="https://twitter.com/hashtag/webgl?src=hash&ref_src=twsrc%5Etfw">#webgl</a> <a href="https://twitter.com/hashtag/webvr?src=hash&ref_src=twsrc%5Etfw">#webvr</a> <a href="https://twitter.com/hashtag/webxr?src=hash&ref_src=twsrc%5Etfw">#webxr</a> here is a small test world <a href="https://t.co/i6jARlWlxC">https://t.co/i6jARlWlxC</a> <a href="https://t.co/CVb6hOLUFk">pic.twitter.com/CVb6hOLUFk</a></p>— arpu (@arnputz) <a href="https://twitter.com/arnputz/status/1158351898119987200?ref_src=twsrc%5Etfw">August 5, 2019</a></blockquote>
<blockquote class="twitter-tweet"><p lang="en" dir="ltr">Just had 45 minutes this morning to do some more <a href="https://twitter.com/hashtag/VR?src=hash&ref_src=twsrc%5Etfw">#VR</a> work -- converting WebEarth over to the <a href="https://twitter.com/aframevr?ref_src=twsrc%5Etfw">@aframevr</a> framework. Still more to do with texture animations, but for > 20 lines of code, it isn't bad - and will work in all modern WebXR capable browsers! <a href="https://t.co/Z2FxuA6tGy">https://t.co/Z2FxuA6tGy</a></p>— Mark Pesce (@mpesce) <a href="https://twitter.com/mpesce/status/1172651567733805056?ref_src=twsrc%5Etfw">September 13, 2019</a></blockquote>
<blockquote class="twitter-tweet"><p lang="en" dir="ltr">Just look at this. Plays on phone, PC and in VR with no install! Only 13k. SOURCE CODE AT GITHUB. Download, inspect and learn. <a href="https://twitter.com/aframevr?ref_src=twsrc%5Etfw">@aframevr</a> <a href="https://twitter.com/mrdoob?ref_src=twsrc%5Etfw">@mrdoob</a> <a href="https://t.co/B5pdXnnCBm">https://t.co/B5pdXnnCBm</a></p>— M͓̽E͓̽R͓̽R͓̽Y͓̽ ͓̽🌲C͓̽H͓̽R͓̽I͓̽S͓̽T͓̽M͓̽A͓̽S͓̽ (@electricdisk) <a href="https://twitter.com/electricdisk/status/1172626471866818562?ref_src=twsrc%5Etfw">September 13, 2019</a></blockquote>
<blockquote class="twitter-tweet"><p lang="en" dir="ltr">Only what's inside the large circle will show on a VR device. It's quite a narrow POV. Be mindful of this when composing your scene on desktop!<a href="https://twitter.com/aframevr?ref_src=twsrc%5Etfw">@aframevr</a> <a href="https://twitter.com/hashtag/aframe?src=hash&ref_src=twsrc%5Etfw">#aframe</a> <a href="https://twitter.com/hashtag/webvr?src=hash&ref_src=twsrc%5Etfw">#webvr</a> <a href="https://twitter.com/hashtag/webxr?src=hash&ref_src=twsrc%5Etfw">#webxr</a> <a href="https://twitter.com/hashtag/gamedev?src=hash&ref_src=twsrc%5Etfw">#gamedev</a> <a href="https://twitter.com/hashtag/indiedev?src=hash&ref_src=twsrc%5Etfw">#indiedev</a> <a href="https://t.co/2osRYNQhsm">https://t.co/2osRYNQhsm</a></p>— J-ROM (@herebefrogs) <a href="https://twitter.com/herebefrogs/status/1171755491854299136?ref_src=twsrc%5Etfw">September 11, 2019</a></blockquote>
<blockquote class="twitter-tweet"><p lang="en" dir="ltr">In my <a href="https://twitter.com/js13kGames?ref_src=twsrc%5Etfw">@js13kGames</a>, Don't Look Back, <a href="https://twitter.com/Coil?ref_src=twsrc%5Etfw">@Coil</a> subscribers will have 20% more outlaws to shoot at and will be addressed as "cowboy Coil"!<a href="https://twitter.com/hashtag/js13k?src=hash&ref_src=twsrc%5Etfw">#js13k</a> <a href="https://twitter.com/aframevr?ref_src=twsrc%5Etfw">@aframevr</a> <a href="https://twitter.com/hashtag/webvr?src=hash&ref_src=twsrc%5Etfw">#webvr</a> <a href="https://twitter.com/hashtag/webxr?src=hash&ref_src=twsrc%5Etfw">#webxr</a> <a href="https://twitter.com/hashtag/gamedev?src=hash&ref_src=twsrc%5Etfw">#gamedev</a> <a href="https://t.co/ZG6UnyMu0g">pic.twitter.com/ZG6UnyMu0g</a></p>— J-ROM (@herebefrogs) <a href="https://twitter.com/herebefrogs/status/1171229384373673989?ref_src=twsrc%5Etfw">September 10, 2019</a></blockquote>
<blockquote class="twitter-tweet"><p lang="fr" dir="ltr">Et voilà, j'ai enfin terminé mon jeu de l'été pour <a href="https://twitter.com/js13kGames?ref_src=twsrc%5Etfw">@js13kGames</a> après environ 80h de développement.<br>Ca fonctionne très bien sur Desktop et Oculus Go via la techno <a href="https://twitter.com/aframevr?ref_src=twsrc%5Etfw">@aframevr</a> , des soucis par contre sur (Vive / <a href="https://twitter.com/Google?ref_src=twsrc%5Etfw">@google</a> Daydream). <a href="https://twitter.com/Coil?ref_src=twsrc%5Etfw">@coil</a> activated !<a href="https://t.co/2dlFVagzP7">https://t.co/2dlFVagzP7</a> <a href="https://t.co/x1BbjOcP9G">pic.twitter.com/x1BbjOcP9G</a></p>— Julien Kermarec (@JulienKermarec) <a href="https://twitter.com/JulienKermarec/status/1171081421898833930?ref_src=twsrc%5Etfw">September 9, 2019</a></blockquote>
<blockquote class="twitter-tweet"><p lang="en" dir="ltr">OMG those chickens are so cute! But you should see those outlaws, they're just plain scary!!! (3421 bytes)<a href="https://twitter.com/js13kGames?ref_src=twsrc%5Etfw">@js13kgames</a> <a href="https://twitter.com/hashtag/js13k?src=hash&ref_src=twsrc%5Etfw">#js13k</a> <a href="https://twitter.com/aframevr?ref_src=twsrc%5Etfw">@aframevr</a> <a href="https://twitter.com/hashtag/webvr?src=hash&ref_src=twsrc%5Etfw">#webvr</a> <a href="https://twitter.com/hashtag/webxr?src=hash&ref_src=twsrc%5Etfw">#webxr</a> <a href="https://twitter.com/hashtag/gamedev?src=hash&ref_src=twsrc%5Etfw">#gamedev</a> <a href="https://t.co/kG1lM2ljwJ">pic.twitter.com/kG1lM2ljwJ</a></p>— J-ROM (@herebefrogs) <a href="https://twitter.com/herebefrogs/status/1170873504725688322?ref_src=twsrc%5Etfw">September 9, 2019</a></blockquote>
<blockquote class="twitter-tweet"><p lang="en" dir="ltr">The todo list is getting smaller and smaller. You can now score points and there's a game-over screen. Hopefully getting everything done before Friday. Come join for a chill coding stream tomorrow at 21:30 CEST at <a href="https://t.co/of14hCOtMn">https://t.co/of14hCOtMn</a> <a href="https://twitter.com/hashtag/webxr?src=hash&ref_src=twsrc%5Etfw">#webxr</a> <a href="https://twitter.com/hashtag/js13k?src=hash&ref_src=twsrc%5Etfw">#js13k</a> <a href="https://twitter.com/aframevr?ref_src=twsrc%5Etfw">@aframevr</a> <a href="https://t.co/sL4LvOzIud">pic.twitter.com/sL4LvOzIud</a></p>— ɬıɱɱყ ƙơƙƙɛ 🌷 (@Sorskoot) <a href="https://twitter.com/Sorskoot/status/1170815274007838730?ref_src=twsrc%5Etfw">September 8, 2019</a></blockquote>
<blockquote class="twitter-tweet"><p lang="en" dir="ltr">Sneak peek at my game's enemies.<br><br>This year, <a href="https://twitter.com/js13kGames?ref_src=twsrc%5Etfw">@js13kgames</a> has been extra challenging: not only am I discovering <a href="https://twitter.com/aframevr?ref_src=twsrc%5Etfw">@aframevr</a>, but my personal laptop died before the compo, and my Wacom tablet didn't work on my work laptop. I had to draw these with a mouse.<a href="https://twitter.com/hashtag/js13k?src=hash&ref_src=twsrc%5Etfw">#js13k</a> <a href="https://twitter.com/hashtag/webxr?src=hash&ref_src=twsrc%5Etfw">#webxr</a> <a href="https://twitter.com/hashtag/gamedev?src=hash&ref_src=twsrc%5Etfw">#gamedev</a> <a href="https://t.co/VJL6prfNDZ">pic.twitter.com/VJL6prfNDZ</a></p>— J-ROM (@herebefrogs) <a href="https://twitter.com/herebefrogs/status/1170525979204378634?ref_src=twsrc%5Etfw">September 8, 2019</a></blockquote>
<blockquote class="twitter-tweet"><p lang="en" dir="ltr">Teaching “UX Design for AR/VR” <a href="https://twitter.com/therlabnyc?ref_src=twsrc%5Etfw">@therlabnyc</a> together with my friend <a href="https://twitter.com/ironandsilk?ref_src=twsrc%5Etfw">@ironandsilk</a> tomorrow - here a teaser of my WebAR workshop <a href="https://twitter.com/aframevr?ref_src=twsrc%5Etfw">@aframevr</a> <a href="https://twitter.com/hashtag/webxr?src=hash&ref_src=twsrc%5Etfw">#webxr</a> <a href="https://twitter.com/jerome_etienne?ref_src=twsrc%5Etfw">@jerome_etienne</a> themed to the Wizard of Oz - right on time for the 🎃 season <a href="https://t.co/ZhxFpYK5nn">pic.twitter.com/ZhxFpYK5nn</a></p>— Roland Dubois (@rolanddubois) <a href="https://twitter.com/rolanddubois/status/1175064015086727168?ref_src=twsrc%5Etfw">September 20, 2019</a></blockquote>
<blockquote class="twitter-tweet"><p lang="en" dir="ltr">An awful falling simulator I made in about 2 hours with <a href="https://twitter.com/aframevr?ref_src=twsrc%5Etfw">@aframevr</a> <a href="https://twitter.com/hashtag/webVR?src=hash&ref_src=twsrc%5Etfw">#webVR</a> using <a href="https://twitter.com/replit?ref_src=twsrc%5Etfw">@replit</a> feel free to fork it, modify it, destroy it, etc!<a href="https://t.co/WWG9Z2pJ9A">https://t.co/WWG9Z2pJ9A</a></p>— Mauricio Martínez (@mauriko_mtz) <a href="https://twitter.com/mauriko_mtz/status/1174353573389492224?ref_src=twsrc%5Etfw">September 18, 2019</a></blockquote>
<blockquote class="twitter-tweet"><p lang="en" dir="ltr">I started to craft a jukebox primitive for <a href="https://twitter.com/aframevr?ref_src=twsrc%5Etfw">@aframevr</a> . Fun stuff! 🎵<a href="https://t.co/WePFAcNHqC">https://t.co/WePFAcNHqC</a><a href="https://t.co/Z6QgYHXWyh">https://t.co/Z6QgYHXWyh</a><a href="https://t.co/74KBIgTA3G">https://t.co/74KBIgTA3G</a></p>— SirFizX (@SirFizX_ELHS) <a href="https://twitter.com/SirFizX_ELHS/status/1162503269719171072?ref_src=twsrc%5Etfw">August 16, 2019</a></blockquote>
<blockquote class="twitter-tweet"><p lang="en" dir="ltr">One of the most grassroots Random Studio experiences I’ve ever worked on for <a href="https://twitter.com/fredperry?ref_src=twsrc%5Etfw">@fredperry</a> x <a href="https://twitter.com/hashtag/rafsimons?src=hash&ref_src=twsrc%5Etfw">#rafsimons</a> was launched today on <a href="https://t.co/ANkEpidhZ9">https://t.co/ANkEpidhZ9</a>. Once again pushing the limits of unconventional storytelling and design. Made with <a href="https://twitter.com/aframevr?ref_src=twsrc%5Etfw">@aframevr</a>, <a href="https://twitter.com/threejs_org?ref_src=twsrc%5Etfw">@threejs_org</a> and photogrammetry.</p>— Tim van Scherpenzeel (@tvscherpenzeel) <a href="https://twitter.com/tvscherpenzeel/status/1162085939411398662?ref_src=twsrc%5Etfw">August 15, 2019</a></blockquote>
<blockquote class="twitter-tweet"><p lang="ht" dir="ltr">C.R.E.A.M. <a href="https://twitter.com/hashtag/webvr?src=hash&ref_src=twsrc%5Etfw">#webvr</a> <a href="https://twitter.com/hashtag/aframevr?src=hash&ref_src=twsrc%5Etfw">#aframevr</a> <a href="https://twitter.com/hashtag/oculusquest?src=hash&ref_src=twsrc%5Etfw">#oculusquest</a> <a href="https://twitter.com/hashtag/kinetictypography?src=hash&ref_src=twsrc%5Etfw">#kinetictypography</a> <a href="https://t.co/5mkwBrq9OV">https://t.co/5mkwBrq9OV</a></p>— J. Stephen Lee (@j_stephen_lee) <a href="https://twitter.com/j_stephen_lee/status/1162040299754930179?ref_src=twsrc%5Etfw">August 15, 2019</a></blockquote>
<blockquote class="twitter-tweet"><p lang="en" dir="ltr"><a href="https://t.co/amQr6RMK78">https://t.co/amQr6RMK78</a> <a href="https://twitter.com/hashtag/DigitalTwin?src=hash&ref_src=twsrc%5Etfw">#DigitalTwin</a> : <a href="https://twitter.com/hashtag/solar?src=hash&ref_src=twsrc%5Etfw">#solar</a> <a href="https://twitter.com/hashtag/house?src=hash&ref_src=twsrc%5Etfw">#house</a> , An other <a href="https://twitter.com/hashtag/WebOfTwins?src=hash&ref_src=twsrc%5Etfw">#WebOfTwins</a> demo with <a href="https://twitter.com/BlenderDev?ref_src=twsrc%5Etfw">@BlenderDev</a> and <a href="https://twitter.com/thekhronosgroup?ref_src=twsrc%5Etfw">@thekhronosgroup</a> <a href="https://twitter.com/hashtag/GLTF?src=hash&ref_src=twsrc%5Etfw">#GLTF</a> <a href="https://twitter.com/MozillaIoT?ref_src=twsrc%5Etfw">@mozillaiot</a> <a href="https://twitter.com/aframevr?ref_src=twsrc%5Etfw">@aframevr</a> <a href="https://twitter.com/samsunginternet?ref_src=twsrc%5Etfw">@samsunginternet</a> ... more to come <a href="https://t.co/xy36auSaAJ">pic.twitter.com/xy36auSaAJ</a></p>— https://mastodon.social/@rzr (@RzrFreeFr) <a href="https://twitter.com/RzrFreeFr/status/1161637124329943046?ref_src=twsrc%5Etfw">August 14, 2019</a></blockquote>
<blockquote class="twitter-tweet"><p lang="en" dir="ltr">Starting to plot my 360 photos on a map using <a href="https://twitter.com/openstreetmap?ref_src=twsrc%5Etfw">@openstreetmap</a> <a href="https://twitter.com/LeafletJS?ref_src=twsrc%5Etfw">@LeafletJS</a> and geoJSON (with of course <a href="https://twitter.com/aframevr?ref_src=twsrc%5Etfw">@AFrameVR</a> as 360 viewer)<br><br>Interactive gallery coming soon! <a href="https://t.co/JcvmsY3iVF">pic.twitter.com/JcvmsY3iVF</a></p>— Fabien Benetou (@utopiah) <a href="https://twitter.com/utopiah/status/1160122556051050496?ref_src=twsrc%5Etfw">August 10, 2019</a></blockquote>
<blockquote class="twitter-tweet"><p lang="en" dir="ltr">Is it Halloween yet? This one is coming for you ;-) <a href="https://twitter.com/hashtag/arjs?src=hash&ref_src=twsrc%5Etfw">#arjs</a> <a href="https://twitter.com/hashtag/webxr?src=hash&ref_src=twsrc%5Etfw">#webxr</a> <a href="https://twitter.com/aframevr?ref_src=twsrc%5Etfw">@aframevr</a> <a href="https://twitter.com/hashtag/aframe_nyc?src=hash&ref_src=twsrc%5Etfw">#aframe_nyc</a> <a href="https://twitter.com/ironandsilk?ref_src=twsrc%5Etfw">@ironandsilk</a> <a href="https://t.co/A45K81lXSY">pic.twitter.com/A45K81lXSY</a></p>— Roland Dubois (@rolanddubois) <a href="https://twitter.com/rolanddubois/status/1181376506414747648?ref_src=twsrc%5Etfw">October 8, 2019</a></blockquote>
<blockquote class="twitter-tweet"><p lang="en" dir="ltr">The best part about teaching is <a href="https://twitter.com/hashtag/summervacation?src=hash&ref_src=twsrc%5Etfw">#summervacation</a> <a href="https://twitter.com/hashtag/teacherlife?src=hash&ref_src=twsrc%5Etfw">#teacherlife</a> <a href="https://twitter.com/hashtag/virtualreality?src=hash&ref_src=twsrc%5Etfw">#virtualreality</a> <a href="https://twitter.com/hashtag/aframevr?src=hash&ref_src=twsrc%5Etfw">#aframevr</a> <a href="https://twitter.com/hashtag/oculusquest?src=hash&ref_src=twsrc%5Etfw">#oculusquest</a> <a href="https://twitter.com/hashtag/kinetictypography?src=hash&ref_src=twsrc%5Etfw">#kinetictypography</a> <a href="https://twitter.com/hashtag/creativecodeart?src=hash&ref_src=twsrc%5Etfw">#creativecodeart</a> <a href="https://twitter.com/hashtag/javascript?src=hash&ref_src=twsrc%5Etfw">#javascript</a> @ Portland, Oregon <a href="https://t.co/2S7rHjdizE">https://t.co/2S7rHjdizE</a></p>— J. Stephen Lee (@j_stephen_lee) <a href="https://twitter.com/j_stephen_lee/status/1151012496272064512?ref_src=twsrc%5Etfw">July 16, 2019</a></blockquote>
<blockquote class="twitter-tweet"><p lang="en" dir="ltr">Creating sound shooting game and trying with Oculus Quest. <a href="https://twitter.com/hashtag/aframevr?src=hash&ref_src=twsrc%5Etfw">#aframevr</a> <a href="https://t.co/Vekr6OsaqS">https://t.co/Vekr6OsaqS</a></p>— だら🍔技術系投稿サービス運営中 (@dala00) <a href="https://twitter.com/dala00/status/1149695067394674688?ref_src=twsrc%5Etfw">July 12, 2019</a></blockquote>