Unity Collaborate Beta – What You Need To Know

kristielAll Topics, Tutorial, Unity Game Development

Unity-Collaborate-Blog

Almost a year ago, I wrote a blog post about setting up Unity to work with GitHub. After Unity got rid of their built-in Asset Server for version control, developers have had to turn to Git or SVN for their version control needs. However, Unity is adding another version control tool to your arsenal; Unity Collaborate. What is Unity Collaborate? … Read More

Share this Post

How to Create a UI in Unity 3D

kristielAll Topics, Tutorial, Unity Game Development

How to Create a UI in Unity 3D

User interfaces (UI’s) are core features in just about every modern software application. Games are no exception to this rule. The vast majority of games utilizes some form of UI to display information such as health, skills, maps, ammo for a weapon, and more. Unity 3D offers a variety of UI elements that you can use in your game. In … Read More

Share this Post

Unity Certified Developer Program for Student Success

kristielAll Topics, Unity Game Development

Unity Certified Developer Program

Ever since Studica started selling Unity, customers have asked us if there was a certification program available for it. Unfortunately, the answers used to always be a resounding “no”. However, as of today, Unity offers a Unity Certified Developer Program with special incentives for schools – both secondary and post-secondary. Referring back to our recent blog post, this certification program was … Read More

Share this Post

Unity Certification and Courseware Supports Education

kristielAll Topics, Unity Game Development

Unity Certification and Courseware Supports Education

Unity Technologies has revolutionized the game industry with Unity, a powerful development platform that is used to create games and interactive experiences. Unity now supports 25 platforms across 2D, 3D, VR and AR.  Of the top 1,000 grossing games, 30% have been built with Unity, reaching over 1.5 billion devices. The mission of Unity has always been to create a … Read More

Share this Post

How to Create a Singleton in Unity 3D

kristielTutorial, Unity Game Development

How to Create a Singleton in Unity

In game development, you will need to make use of global variables in many instances. Consider common gameplay elements such as player score, currency, health points, or game states such as pause or game over. Beyond these examples you will most likely need to create global variables that are specific to your game. I used Unity 3D for quite a … Read More

Share this Post

How to Create a Raycast in Unity 3D

kristielAll Topics, Tutorial, Unity Game Development

How to Create a Raycast in Unity 3D

What is Raycasting? Raycasting is commonly used in video game development for things such as determining line of sight of the player or the AI, where a projectile will go, creating lasers and more. A raycast is, essentially, a ray that gets sent out from a position in 3D or 2D space and moves in a specific direction. Unity 3D … Read More

Share this Post

How to Read an XML File in Unity

kristielAll Topics, Tutorial, Unity Game Development

I recently started working on a project in Unity 3D that makes use of an XML file to load data into the game. Being relatively new to game design, I had to do a lot of research to figure out how to load the XML file and assign that data in a usable way. I have gotten things working in … Read More

Share this Post