Rebooting the Hypergrid Adventurers Club and Thanking Latif Khalifa

singularityIf you’re a fan of the Hypergrid, you should definitely check out the new 1.8.3 release of the Singularity viewer for OpenSim and Second Life.

In particular, take a look at this section in the update notes.  The fact that it is a very brief sentence seriously belies the magnitude of its significance.

  • Fixed a problem with long teleports in OpenSim (“4096 bug” SVC-2941 FIRE-11593) (Latif)

Latif Khalifa has fixed the bug that, since the beginning of time, prevented Hypergrid explorers from jumping to places more than 4096 regions away.  No more mandatory intermediate hops!  No more “cannot reach destination – too far away” messages!

I encourage all explorers of the Hypergrid to please take a moment and thank Latif on Twitter.  His hard work has resulted in a major improvement to the use of the Hypergrid and the evolution of OpenSim as a constellation of easily accessible interconnected grids.

Which brings me to the topic of the Hypergrid Adventurers Club.  Since my presentation at the OpenSimulator Community Conference, I’ve received a great deal of interest in possibly restarting our tours of the Hypergrid.  Many people reached out to me, and the outpouring of interest was very inspiring.

So I’m rebooting the tours!  Our next tour will be Saturday Sept 28 at 10pm EDT.  For all the details, please join and read our Google Group.

Take care,
-John “Pathfinder” Lester

OpenSimulator Community Conference 2013 – My Presentation and My Thanks to Everyone Involved

Attending the Opening Keynote Presentation

Attending the Opening Keynote Presentation

This past weekend I attended and spoke at the very first OpenSimulator Community Conference (OSCC13).  It was an amazing event full of outstanding presentations, great networking opportunities, and spectacular venues with tons of attendees.  It was also truly remarkable to see how far OpenSim has evolved and matured as a virtual world platform.

I’ve seen my fair share of online conferences, and this was the most professionally managed and engaging online conference I have ever attended.  To everyone involved in making this event a reality, thank you! 

And thank you all who attended my presentation.  I apologize for not having time to answer all your questions, but if you leave a comment on this blog post I will be very happy to reply.

Lastly, for those of you interested in me possibly restarting the Hypergrid Adventurers Club tours (I got a lot of positive feedback at the conference), be sure to join the HGAC mailing list and post that you’d like to attend a future tour.  If I see enough interest, I’ll definitely start them up again.

Please read on for my own presentation summary, video and downloadable slides.  You can also watch recordings of all the other presentations in the Conference Archives.

“Exploring the Interconnected: How Past Dreams evolve into Future Reality”

Join us to hear more about how dreams from the past can dramatically change and evolve into something completely new. In this presentation you will hear all about John’s initial experiences in Opensim while still working at Linden Lab, the creation and mangement of “Pathlandia,” initial explorations of the Hypergrid, and how it all fits in with what he remembers as Linden Lab’s original vision of an expanding Metaverse of self-hosted and interconnected virtual worlds.

ADDENDUM 9/10/2013: Be sure to read this blog post: “The Future of Conferences.” It’s an outstanding summary of the conference by Crista Lopes, the inventor of the Hypergrid and one of the conference’s main organizers.

Take care,
-John “Pathfinder” Lester

How to embed and play a video on an object in Unity3d and Jibe

step 06 play movie

Watching “Hedgehog in the Fog” in my Jibe world.

Note: You’ll need the Unity Pro editor if you want to work with Movie Textures in Unity3d.

Unity3d allows you to embed and play videos on any surface in a 3d environment.

This means you can easily create a web-based Jibe world where avatars explore a multiuser 3d virtual space while watching videos or movies playing on screens/signs/any surface you wish.

The most common way to add video to a Unity3d project is by adding a video file to your project’s Asset Folder, which automatically creates a Movie Texture (details here).

However, adding a video file directly to your project means the size of the video file will be added to the final size of your completed Unity webplayer file.  In other words, if your video clip is 50 Megabytes large, then your Unity webplayer file will have an extra 50 Megabytes added on to it.

For folks creating Jibe worlds with Unity3d (or anyone creating Unity webplayer files for streaming on the Web) this is not good.  You always want your webplayer file to be as small as possible so your webplayer file will finish downloading and start running as quickly as possible.

Fortunately, there’s a way you can download/stream a movie from the Web so it doesn’t add to the size of your Unity webplayer file.  Unity will immediately start playing the movie as soon as it has buffered enough of it, similar to how YouTube works.

Here’s a simple example:

Step 1: Get your video ready as an OGG file on the Web

If you have a video on YouTube that you want to use, you’ll have to download it.  I suggest using Flash Video Downloader.

Unity needs videos to be in OGG format (file extension .ogg).  If you need to convert an existing video file into OGG format, I suggest using VLC (it’s free and cross platform).  Take your OGG video, put it on a webserver somewhere and remember the URL.

Important Note: If you’re managing your own webserver, be sure it has the MIME type for Ogg Vorbis enabled.  For Extension use .ogg, and for MIME type use application/ogg.

Here’s a sample 60 Megabyte OGG video I made and uploaded to WordPress.  Feel free to use this URL in your own tests.  You can also click on it to see how it plays in your browser.
https://becunningandfulloftricks.files.wordpress.com/2013/04/hedgehog_in_the_fog.ogg

Step 2: Create a Cube

In this example, we’re going to make a basic cube and have the video play on its surface.  Of course you could flatten the cube so it looks likes a screen and then place it on a model of a TV or something.  I’m just being lazy.

step 01 creating a cubestep 02 creating a cube

Step 3: Create a new Javascript

I like the name of a script to remind me what the script actually does, so I’m going to call this new script ClicktoPlayWebMovie.

step 03 create a new javascript script

Here’s the code.  Copy and paste this into your new script and save it.

var url = "https://becunningandfulloftricks.files.wordpress.com/2013/04/hedgehog_in_the_fog.ogg";
function OnMouseDown () {
 // Start download
 var www = new WWW(url);
// Make sure the movie is ready to start before we start playing
 var movieTexture = www.movie;
 while (!movieTexture.isReadyToPlay)
 yield;
// Initialize texture to be 1:1 resolution
 renderer.material.mainTexture = movieTexture;
// Assign clip to audio source
 // Sync playback with audio
 audio.clip = movieTexture.audioClip;
// Play both movie & sound
 movieTexture.Play();
 audio.Play();
}
// Make sure we have audio source
@script RequireComponent (AudioSource)
function Update () {
}

You can see at the top of the script that I’ve included my demo URL as the default movie URL.  You can always change it later.

Step 4: Add ClicktoPlayWebMovie script to your cube

Drag the ClicktoPlayWebMovie script from your Project folder onto the Cube in your Scene view.  This will add the script to the cube.

step 04 drag javascript to cube

Now select your Cube in the Scene view and look at the Inspector settings.  You can change the movie URL by simply editing the URL field in the Inspector.

Also notice that there is an Audio Source added to the Cube.  This was added automatically when you added the script to the Cube, since the script needs an Audio Source component to work.  Don’t delete or modify the Audio Source component.  Just leave it be.

step 05 script in cube - check audio component and movie url

Step 5: You’re done.  Test it out!

You can run your Jibe world locally in the Unity editor and test it out that way.  Walk up to the cube and click on it.  The movie will start playing on all surfaces of  the cube.

step 06 play movie

You can also view an online version of this demo in my own Jibe world.

Enjoy!

-John “Pathfinder” Lester
Chief Learning Officer, ReactionGrid Inc.

Video of panel on “Virtual Worlds Revisited” at the 2012 Chicago eLearning and Technology Showcase

I  just participated in a wonderful “Virtual Worlds Revisited” panel discussion as part of the Chicago eLearning and Technology Showcase.  The panel was organized and moderated by Mike Kemmler, and participants included virtual world innovators Anders Gronstedt , Mark Jankowski and Karl Kapp.

The panel was held in Second Life, but the focus of our discussion was firmly on the future of new virtual world platforms and new modalities for immersive learning.  We were projected into the physical world meeting room in Chicago where about 30 people attended in person.  Here’s a summary:

Still deeply entrenched in Gartner’s Trough of Disillusionment, is it time to revisit virtual worlds?  Mike Kemmler hosts a virtual panel discussion via Second Life with a distinguished group of virtual world innovators, presenters, consultants, and authors, including Anders Gronstedt, Mark Jankowski, Karl Kapp, and John “Pathfinder” Lester. Panelists address the current state of learning in virtual worlds, explain platforms they see organizations using for immersive learning, and discuss current challenges and future possibilities of using virtual worlds for learning.

Thanks again, Mike, for this great opportunity.  It was an honor to be on a panel with such a stellar group of pioneers in virtual worlds and immersive learning.


NOTE: The audio from Second Life is bit choppy for the first 30 seconds, but then clears up perfectly for the rest of the video.

-John “Pathfinder” Lester

Speaking at the Academic Librarians 2012 Conference – Syracuse University, June 12-13

I’ve been invited to attend and speak at the Academic Librarians 2012 Conference at Syracuse University from June 12-13.  This conference will be a great opportunity to connect with folks interested in building the future of immersive learning and information literacy.

Continue reading

“We were here” – Discovering Footsteps in the Wilderness and Flags across the Hypergrid

I started the Hypergrid Adventurers Club because I think the development of Hypergrid-enabled interconnectivity between Opensim grids is a beautiful and fascinating evolution.  And in my experience, if you want to help cultivate growth and innovative uses of a new technology, it’s a good idea to do whatever you can to build a supportive community around it.

Recently I noticed a very interesting phenomenon across the Hypergrid.  On regions in areas that allow visitors to build or rez objects, some people are planting flags.

Continue reading

My Presentation at the Norwegian University of Science and Technology

The Department of Computer and Information Science at the Norwegian University of Science and Technology (NTNU) in Trondheim, Norway is hosting a seminar this week on “Virtual Worlds & Educational Technologies.”

The seminar will be held on Wednesday April 25th from 11:00-14:00 CEST, and it’s free and open to both staff and students.  Here’s a summary of speakers and topics: Continue reading

Hypergrid Adventurers Club visits a Myst and Uru inspired world: Devokan Trust on OSGrid

Yesterday, the Hypergrid Adventurers Club visited OSGrid to explore Devokan Tao, the central hub of a collection of regions called Devokan Trust.

The entire area is inspired by Myst and Uru.

About 10 of us made the journey across four different grids, and you can follow in our footsteps by looking at our travel plan.

Our guide was Dot Macchi, who explained the history of the project to create a Myst/Uru inspired world built by many different people.  It’s an amazing collaborative effort.

What we found were places of such stunning artistry and subtle aesthetics that I’m at a loss for words to describe them any further.  So I’ll simply share pictures.

Thank you again, Dot, for spending so much time with us and explaining the beautiful storyline behind it all.

Continue reading

“The effects of virtual space on learning: A literature review”

If you’re interested in the use of virtual worlds in education and immersive learning, it’s always a challenge finding good research papers on the subject.

Which is why I was so excited today when I discovered Olle Sköld’s paper “The effects of virtual space on learning: A literature review.”

It’s a fantastic resource full of great references and summaries, and it’s also very timely (was published in Jan 2012).  Best of all, the full paper is freely accessible online.

Continue reading

An Educator’s Field Trip to a Jibe Virtual World

Marianne Riis works at the Multi-User Virtual Environments Research (MUVER) Lab at Aalborg University Copenhagen in Denmark.

She’s teaching a class focused on interpersonal Computer Mediated Communication (CMC) this spring, and recent topics have included avatar-based communication.

Marianne decided to bring her 89 student class on a field trip into my demo Jibe world.  Here’s her detailed report.

I think it’s fantastic when educators share experiences like this.  It helps educators and students learn from each other, and it also helps virtual world platform providers learn how to make their technology as useful to educators as possible.

Thank you, Marianne!

Marianne Riis and her students visit my Jibe world

-John “Pathfinder” Lester
Chief Learning Officer
ReactionGrid Inc.