You’re invited! Come to our JSON Data webinar.

Do you want IN on the Number 1 way of transferring data? Join programming expert Nimish Narang for a 1-hour session on how to work with JSON. Register here for just 10 dollars. Why JSON? JSON (JavaScript Object Notation) is a data format commonly used to store and exchange data. Because it is so user-friendly, most […]

Learn Unreal with our new book series 📖

It’s that time of year… we at Mammoth Interactive have published new books! Available in both Paperback and eBook format, check out “Introduction to Unreal” and its sequel “Build 6 Games in Unreal.” The Unreal Engine is a powerful program for building games. Learn how to navigate the Unreal editor by building a Coin Collector […]

You’re invited! Come to our SpriteKit webinar.

Do you want to make 2D games for Apple products? Join master programmer Nimish Narang for a 1-hour webinar on how to navigate the SpriteKit framework. Register here for just 10 dollars. Why SpriteKit? SpriteKit is THE framework for making 2D games for Apple products. It’s free! You can make cool games, from super simple to […]

Being a coder isn’t just about coding.

We’re excited to announce our new Kickstarter: Complete Guide to Self-Promotion for Techies and Startups. We need your help to make a course that teaches coders soft skills. ‘Soft skills’ include teamwork, communication and management skills. If you want to start your own coding business, there’s much more to it than the technical aspects of […]

Creating a C++ Script | Unreal Tutorial

Scripts are so important when it comes to making a game in Unreal. For an in-depth lesson on Unreal, consider enrolling in Mammoth Interactive’s Unreal course.  If you want to add a player to your game, you need to write code to give the player its own behavior. Default modes contain logic from Unreal. To create a […]

Implementing a Button | Unity Tutorial

In virtual reality (VR) games, one of the few interactions a player can make is press a button by looking at it. In this tutorial, we will implement the button we made in our previous Unity tutorial. If you are a beginner and want to learn how to build virtual reality games, check out our Unity3D course! […]

Designing a Button | Unity Tutorial

In virtual reality (VR) games, one of the few interactions a player can make is press a button by looking at it. In this tutorial, we will design a button in Unity. If you are a beginner and want to learn how to build virtual reality games, check out our Unity3D course! VR has limited interactions with […]

Activating VR Split Mode | Unity Tutorial

If you want to make your game work in VR, you need to activate the VR Split Mode. If you are a beginner and want to learn how to build virtual reality games, check out our Unity3D course! Once you’ve integrated a VR software development kit (SDK), press Play to simulate the game. Notice that you will still […]

Activating Virtual Reality | Unity Tutorial

The first step to making a virtual reality (VR) game is activating VR Mode. In this tutorial, you will learn how to integrate a VR software development kit (SDK). If you are a beginner and want to learn how to build virtual reality games, check out our Unity3D course! What is VR Mode? Create a new Unity project named […]

If Blocks in C# | Unity Tutorial

Suppose we wanted to run code only when a certain condition is met. For instance, a player could only fly in a game if they had a jet pack. A player could only buy a bicycle if they had enough money. To implement this kind of functionality, we can use if blocks. If you are a […]